diff --git a/site/content/how-to/traffic-management/tls-passthrough.md b/site/content/how-to/traffic-management/tls-passthrough.md new file mode 100644 index 000000000..53395fbc2 --- /dev/null +++ b/site/content/how-to/traffic-management/tls-passthrough.md @@ -0,0 +1,231 @@ +--- +title: "TLS Passthrough" +weight: 800 +toc: true +docs: "DOCS-000" +--- + +Learn how to use TLSRoutes to configure TLS Passthrough load-balancing with NGINX Gateway Fabric. + +## Overview + +In this guide, we will show how to configure TLS passthrough for your application, using a [TLSRoute](https://gateway-api.sigs.k8s.io/reference/spec/#gateway.networking.k8s.io/v1alpha2.TLSRoute). + +## Before you begin + +- [Install]({{< relref "installation/" >}}) NGINX Gateway Fabric. +- Save the public IP address and port of NGINX Gateway Fabric into shell variables: + + ```text + GW_IP=XXX.YYY.ZZZ.III + GW_TLS_PORT= + ``` + +{{< note >}}In a production environment, you should have a DNS record for the external IP address that is exposed, and it should refer to the hostname that the Gateway will forward for.{{< /note >}} + +## Set up + +Create the `secure-app` application by copying and pasting the following block into your terminal: + +```yaml +kubectl apply -f - < 8443/TCP 12s +``` + +Create a Gateway. This will create a TLS listener with the hostname `*.example.com` and passthrough TLS mode. Copy and paste this into your terminal. + +```yaml +kubectl apply -f - <}}It is possible to add an HTTPS listener on the same port that terminates TLS connections so long as the hostname does not overlap with the TLS listener hostname.{{< /note >}} + +Create a TLSRoute that attaches to the Gateway and routes requests to `app.example.com` to the `secure-app` Service: + +```yaml +kubectl apply -f - <}}To route to a Service in a Namespace different from the TLSRoute Namespace, create a [ReferenceGrant](https://gateway-api.sigs.k8s.io/reference/spec/#gateway.networking.k8s.io/v1beta1.ReferenceGrant) to permit the cross-namespace reference. {{< /note >}} + +## Send traffic + +Using the external IP address and port for NGINX Gateway Fabric, send traffic to the `secure-app` application. + +{{< note >}}If you have a DNS record allocated for `app.example.com`, you can send the request directly to that hostname, without needing to resolve.{{< /note >}} + +Send a request to the `secure-app` Service on the TLS port with the `--insecure` flag. The `--insecure` flag is required because the `secure-app` is using self-signed certificates. + +```shell +curl --resolve app.example.com:$GW_TLS_PORT:$GW_IP https://app.example.com:$GW_TLS_PORT --insecure -v +``` + +```text +Added app.example.com:8443:127.0.0.1 to DNS cache +* Hostname app.example.com was found in DNS cache +* Trying 127.0.0.1:8443... +* Connected to app.example.com (127.0.0.1) port 8443 +* ALPN: curl offers h2,http/1.1 +* (304) (OUT), TLS handshake, Client hello (1): +* (304) (IN), TLS handshake, Server hello (2): +* (304) (IN), TLS handshake, Unknown (8): +* (304) (IN), TLS handshake, Certificate (11): +* (304) (IN), TLS handshake, CERT verify (15): +* (304) (IN), TLS handshake, Finished (20): +* (304) (OUT), TLS handshake, Finished (20): +* SSL connection using TLSv1.3 / AEAD-AES256-GCM-SHA384 / [blank] / UNDEF +* ALPN: server accepted http/1.1 +* Server certificate: +* subject: C=US; ST=CA; L=San Francisco; CN=app.example.com +* start date: Mar 23 23:20:43 2020 GMT +* expire date: Mar 23 23:20:43 2023 GMT +* issuer: C=US; ST=CA; L=San Francisco; CN=app.example.com +* SSL certificate verify result: self signed certificate (18), continuing anyway. +* using HTTP/1.x +> GET / HTTP/1.1 +> Host: app.example.com:8443 +> User-Agent: curl/8.6.0 +> Accept: */* +> +< HTTP/1.1 200 OK +< Server: nginx/1.27.0 +< Date: Wed, 14 Aug 2024 20:41:21 GMT +< Content-Type: text/plain +< Content-Length: 43 +< Connection: keep-alive +< +hello from pod secure-app-575785644-kzqf6 +``` + +Note that the server certificate used to terminate the TLS connection has the subject common name of `app.example.com`. This is the server certificate that the `secure-app` is configured with and shows that the TLS connection was terminated by the `secure-app`, not NGINX Gateway Fabric. diff --git a/site/content/overview/gateway-api-compatibility.md b/site/content/overview/gateway-api-compatibility.md index c2094de2a..e7405e5a4 100644 --- a/site/content/overview/gateway-api-compatibility.md +++ b/site/content/overview/gateway-api-compatibility.md @@ -10,18 +10,18 @@ Learn which Gateway API resources NGINX Gateway Fabric supports and to which lev ## Summary {{< bootstrap-table "table table-striped table-bordered" >}} -| Resource | Core Support Level | Extended Support Level | Implementation-Specific Support Level | API Version | -| ------------------------------------- | ------------------- | ---------------------- | ------------------------------------- | ----------- | -| [GatewayClass](#gatewayclass) | Supported | Not supported | Supported | v1 | -| [Gateway](#gateway) | Supported | Partially supported | Not supported | v1 | -| [HTTPRoute](#httproute) | Supported | Partially supported | Not supported | v1 | -| [ReferenceGrant](#referencegrant) | Supported | N/A | Not supported | v1beta1 | -| [GRPCRoute](#grpcroute) | Supported | Partially supported | Not supported | v1 | -| [TLSRoute](#tlsroute) | Not supported | Not supported | Not supported | N/A | -| [TCPRoute](#tcproute) | Not supported | Not supported | Not supported | N/A | -| [UDPRoute](#udproute) | Not supported | Not supported | Not supported | N/A | -| [BackendTLSPolicy](#backendtlspolicy) | Supported | Supported | Not supported | v1alpha3 | -| [Custom policies](#custom-policies) | N/A | N/A | Supported | N/A | +| Resource | Core Support Level | Extended Support Level | Implementation-Specific Support Level | API Version | +|---------------------------------------|--------------------|------------------------|---------------------------------------|-------------| +| [GatewayClass](#gatewayclass) | Supported | Not supported | Supported | v1 | +| [Gateway](#gateway) | Supported | Partially supported | Not supported | v1 | +| [HTTPRoute](#httproute) | Supported | Partially supported | Not supported | v1 | +| [ReferenceGrant](#referencegrant) | Supported | N/A | Not supported | v1beta1 | +| [GRPCRoute](#grpcroute) | Supported | Partially supported | Not supported | v1 | +| [TLSRoute](#tlsroute) | Supported | Not supported | Not supported | v1alpha2 | +| [TCPRoute](#tcproute) | Not supported | Not supported | Not supported | N/A | +| [UDPRoute](#udproute) | Not supported | Not supported | Not supported | N/A | +| [BackendTLSPolicy](#backendtlspolicy) | Supported | Supported | Not supported | v1alpha3 | +| [Custom policies](#custom-policies) | N/A | N/A | Supported | N/A | {{< /bootstrap-table >}} --- @@ -123,6 +123,7 @@ See the [static-mode]({{< relref "/reference/cli-help.md#static-mode">}}) comman - `Accepted/False/UnsupportedProtocol` - `Accepted/False/InvalidCertificateRef` - `Accepted/False/ProtocolConflict` + - `Accpeted/False/HostnameConflict` - `Accepted/False/UnsupportedValue`: Custom reason for when a value of a field in a Listener is invalid or not supported. - `Accepted/False/GatewayConflict`: Custom reason for when the Gateway is ignored due to a conflicting Gateway. NGINX Gateway Fabric only supports a single Gateway. - `Programmed/True/Programmed` @@ -131,6 +132,7 @@ See the [static-mode]({{< relref "/reference/cli-help.md#static-mode">}}) comman - `ResolvedRefs/False/InvalidCertificateRef` - `ResolvedRefs/False/InvalidRouteKinds` - `Conflicted/True/ProtocolConflict` + - `Conflicted/True/HostnameConflict` - `Conflicted/False/NoConflicts` --- @@ -255,10 +257,38 @@ Fields: {{< bootstrap-table "table table-striped table-bordered" >}} | Resource | Core Support Level | Extended Support Level | Implementation-Specific Support Level | API Version | -| -------- | ------------------ | ---------------------- | ------------------------------------- | ----------- | -| TLSRoute | Not supported | Not supported | Not supported | N/A | +|----------|--------------------|------------------------|---------------------------------------|-------------| +| TLSRoute | Supported | Not supported | Not supported | v1alpha2 | {{< /bootstrap-table >}} +**Fields**: + +- `spec` + - `parentRefs`: Partially supported. Port not supported. + - `hostnames`: Supported. + - `rules` + - `backendRefs`: Partially supported. Only one backend ref allowed. + - `weight`: Not supported. +- `status` + - `parents` + - `parentRef`: Supported. + - `controllerName`: Supported. + - `conditions`: Supported (Condition/Status/Reason): + - `Accepted/True/Accepted` + - `Accepted/False/NoMatchingListenerHostname` + - `Accepted/False/NoMatchingParent` + - `Accepted/False/NotAllowedByListeners` + - `Accepted/False/UnsupportedValue`: Custom reason for when the TLSRoute includes an invalid or unsupported value. + - `Accepted/False/InvalidListener`: Custom reason for when the TLSRoute references an invalid listener. + - `Accepted/False/GatewayNotProgrammed`: Custom reason for when the Gateway is not Programmed. TLSRoute can be valid and configured, but will maintain this status as long as the Gateway is not Programmed. + - `Accepted/False/HostnameConflict`: Custom reason for when the TLSRoute has a hostname that conflicts with another TLSRoute on the same port. + - `ResolvedRefs/True/ResolvedRefs` + - `ResolvedRefs/False/InvalidKind` + - `ResolvedRefs/False/RefNotPermitted` + - `ResolvedRefs/False/BackendNotFound` + - `ResolvedRefs/False/UnsupportedValue`: Custom reason for when one of the TLSRoute rules has a backendRef with an unsupported value. + - `PartiallyInvalid/True/UnsupportedValue` + --- ### TCPRoute diff --git a/site/go.mod b/site/go.mod index 7dd1ab90e..b745ac77f 100644 --- a/site/go.mod +++ b/site/go.mod @@ -2,4 +2,4 @@ module github.com/nginxinc/nginx-gateway-fabric/site go 1.21 -require github.com/nginxinc/nginx-hugo-theme v0.41.0 // indirect +require github.com/nginxinc/nginx-hugo-theme v0.41.1 // indirect diff --git a/site/go.sum b/site/go.sum index ea6bf8574..9f3c8112b 100644 --- a/site/go.sum +++ b/site/go.sum @@ -1,2 +1,4 @@ github.com/nginxinc/nginx-hugo-theme v0.41.0 h1:uB9jC0Qk9i2CG63gScHxVHAEz1zyGoAdtY0Lcpkg1lI= github.com/nginxinc/nginx-hugo-theme v0.41.0/go.mod h1:DPNgSS5QYxkjH/BfH4uPDiTfODqWJ50NKZdorguom8M= +github.com/nginxinc/nginx-hugo-theme v0.41.1 h1:Wan0Mb8uz1X4Z2vd/1nR0GOPel5mWVPuFD3jd4SezsU= +github.com/nginxinc/nginx-hugo-theme v0.41.1/go.mod h1:DPNgSS5QYxkjH/BfH4uPDiTfODqWJ50NKZdorguom8M= diff --git a/tests/results/dp-perf/1.4.0/1.4.0-oss.md b/tests/results/dp-perf/1.4.0/1.4.0-oss.md new file mode 100644 index 000000000..58fe37ef5 --- /dev/null +++ b/tests/results/dp-perf/1.4.0/1.4.0-oss.md @@ -0,0 +1,90 @@ +# Results + +## Test environment + +NGINX Plus: false + +NGINX Gateway Fabric: + +- Commit: 16a95222a968aef46277a77070f79bea9b87da12 +- Date: 2024-08-16T15:29:44Z +- Dirty: false + +GKE Cluster: + +- Node count: 12 +- k8s version: v1.29.7-gke.1008000 +- vCPUs per node: 16 +- RAM per node: 65855012Ki +- Max pods per node: 110 +- Zone: us-west1-b +- Instance Type: n2d-standard-16 + +## Summary: + +- Performance seems to have improved. + +## Test1: Running latte path based routing + +```text +Requests [total, rate, throughput] 30000, 1000.04, 1000.01 +Duration [total, attack, wait] 30s, 29.999s, 791.901µs +Latencies [min, mean, 50, 90, 95, 99, max] 512.393µs, 734.831µs, 721.822µs, 819.183µs, 855.351µs, 951.452µs, 13.787ms +Bytes In [total, mean] 4830000, 161.00 +Bytes Out [total, mean] 0, 0.00 +Success [ratio] 100.00% +Status Codes [code:count] 200:30000 +Error Set: +``` + +## Test2: Running coffee header based routing + +```text +Requests [total, rate, throughput] 30000, 1000.03, 1000.01 +Duration [total, attack, wait] 30s, 29.999s, 701.809µs +Latencies [min, mean, 50, 90, 95, 99, max] 579.713µs, 757.73µs, 746.299µs, 837.969µs, 873.063µs, 990.77µs, 8.953ms +Bytes In [total, mean] 4860000, 162.00 +Bytes Out [total, mean] 0, 0.00 +Success [ratio] 100.00% +Status Codes [code:count] 200:30000 +Error Set: +``` + +## Test3: Running coffee query based routing + +```text +Requests [total, rate, throughput] 30000, 1000.04, 1000.01 +Duration [total, attack, wait] 30s, 29.999s, 794.296µs +Latencies [min, mean, 50, 90, 95, 99, max] 574.209µs, 766.349µs, 749.009µs, 851.856µs, 891.805µs, 1.011ms, 19.207ms +Bytes In [total, mean] 5100000, 170.00 +Bytes Out [total, mean] 0, 0.00 +Success [ratio] 100.00% +Status Codes [code:count] 200:30000 +Error Set: +``` + +## Test4: Running tea GET method based routing + +```text +Requests [total, rate, throughput] 30000, 1000.02, 1000.00 +Duration [total, attack, wait] 30s, 29.999s, 691.197µs +Latencies [min, mean, 50, 90, 95, 99, max] 528.655µs, 742.271µs, 732.036µs, 826.113µs, 861.108µs, 954.498µs, 10.955ms +Bytes In [total, mean] 4770000, 159.00 +Bytes Out [total, mean] 0, 0.00 +Success [ratio] 100.00% +Status Codes [code:count] 200:30000 +Error Set: +``` + +## Test5: Running tea POST method based routing + +```text +Requests [total, rate, throughput] 30000, 1000.00, 999.98 +Duration [total, attack, wait] 30.001s, 30s, 635.237µs +Latencies [min, mean, 50, 90, 95, 99, max] 570.721µs, 765.885µs, 751.85µs, 855.286µs, 896.876µs, 1.012ms, 12.648ms +Bytes In [total, mean] 4770000, 159.00 +Bytes Out [total, mean] 0, 0.00 +Success [ratio] 100.00% +Status Codes [code:count] 200:30000 +Error Set: +``` diff --git a/tests/results/dp-perf/1.4.0/1.4.0-plus.md b/tests/results/dp-perf/1.4.0/1.4.0-plus.md new file mode 100644 index 000000000..df4d00bf8 --- /dev/null +++ b/tests/results/dp-perf/1.4.0/1.4.0-plus.md @@ -0,0 +1,90 @@ +# Results + +## Test environment + +NGINX Plus: true + +NGINX Gateway Fabric: + +- Commit: 16a95222a968aef46277a77070f79bea9b87da12 +- Date: 2024-08-16T15:29:44Z +- Dirty: false + +GKE Cluster: + +- Node count: 12 +- k8s version: v1.29.7-gke.1008000 +- vCPUs per node: 16 +- RAM per node: 65855012Ki +- Max pods per node: 110 +- Zone: us-west1-b +- Instance Type: n2d-standard-16 + +## Summary: + +- Performance seems to have improved. + +## Test1: Running latte path based routing + +```text +Requests [total, rate, throughput] 30000, 1000.01, 999.99 +Duration [total, attack, wait] 30s, 30s, 563.254µs +Latencies [min, mean, 50, 90, 95, 99, max] 485.302µs, 666.323µs, 637.029µs, 721.283µs, 754.013µs, 863.087µs, 15.211ms +Bytes In [total, mean] 4800000, 160.00 +Bytes Out [total, mean] 0, 0.00 +Success [ratio] 100.00% +Status Codes [code:count] 200:30000 +Error Set: +``` + +## Test2: Running coffee header based routing + +```text +Requests [total, rate, throughput] 30000, 1000.01, 999.98 +Duration [total, attack, wait] 30s, 30s, 721.605µs +Latencies [min, mean, 50, 90, 95, 99, max] 515.404µs, 694.237µs, 678.089µs, 767.846µs, 801.31µs, 903.184µs, 12.586ms +Bytes In [total, mean] 4830000, 161.00 +Bytes Out [total, mean] 0, 0.00 +Success [ratio] 100.00% +Status Codes [code:count] 200:30000 +Error Set: +``` + +## Test3: Running coffee query based routing + +```text +Requests [total, rate, throughput] 30000, 1000.01, 999.99 +Duration [total, attack, wait] 30s, 30s, 631.83µs +Latencies [min, mean, 50, 90, 95, 99, max] 516.613µs, 672.121µs, 656.131µs, 745.518µs, 781.046µs, 879.265µs, 19.659ms +Bytes In [total, mean] 5070000, 169.00 +Bytes Out [total, mean] 0, 0.00 +Success [ratio] 100.00% +Status Codes [code:count] 200:30000 +Error Set: +``` + +## Test4: Running tea GET method based routing + +```text +Requests [total, rate, throughput] 30000, 1000.01, 999.99 +Duration [total, attack, wait] 30s, 30s, 681.029µs +Latencies [min, mean, 50, 90, 95, 99, max] 514.133µs, 659.359µs, 647.028µs, 734.385µs, 769.668µs, 860.748µs, 6.583ms +Bytes In [total, mean] 4740000, 158.00 +Bytes Out [total, mean] 0, 0.00 +Success [ratio] 100.00% +Status Codes [code:count] 200:30000 +Error Set: +``` + +## Test5: Running tea POST method based routing + +```text +Requests [total, rate, throughput] 30000, 1000.03, 1000.01 +Duration [total, attack, wait] 30s, 29.999s, 595.53µs +Latencies [min, mean, 50, 90, 95, 99, max] 516.825µs, 666.438µs, 651.132µs, 733.055µs, 763.861µs, 851.963µs, 14.266ms +Bytes In [total, mean] 4740000, 158.00 +Bytes Out [total, mean] 0, 0.00 +Success [ratio] 100.00% +Status Codes [code:count] 200:30000 +Error Set: +``` diff --git a/tests/results/ngf-upgrade/1.4.0/1.4.0-oss.md b/tests/results/ngf-upgrade/1.4.0/1.4.0-oss.md new file mode 100644 index 000000000..38e9200a4 --- /dev/null +++ b/tests/results/ngf-upgrade/1.4.0/1.4.0-oss.md @@ -0,0 +1,55 @@ +# Results + +## Test environment + +NGINX Plus: false + +NGINX Gateway Fabric: + +- Commit: 16a95222a968aef46277a77070f79bea9b87da12 +- Date: 2024-08-16T15:29:44Z +- Dirty: false + +GKE Cluster: + +- Node count: 12 +- k8s version: v1.29.7-gke.1008000 +- vCPUs per node: 16 +- RAM per node: 65855012Ki +- Max pods per node: 110 +- Zone: us-west1-b +- Instance Type: n2d-standard-16 + +## Summary: + +- Performance seems to have improved. + +## Test: Send https /tea traffic + +```text +Requests [total, rate, throughput] 6000, 100.02, 100.01 +Duration [total, attack, wait] 59.991s, 59.99s, 883.687µs +Latencies [min, mean, 50, 90, 95, 99, max] 717.401µs, 1.039ms, 1.012ms, 1.192ms, 1.256ms, 1.426ms, 12.471ms +Bytes In [total, mean] 924000, 154.00 +Bytes Out [total, mean] 0, 0.00 +Success [ratio] 100.00% +Status Codes [code:count] 200:6000 +Error Set: +``` + +![https-oss.png](https-oss.png) + +## Test: Send http /coffee traffic + +```text +Requests [total, rate, throughput] 6000, 100.02, 100.01 +Duration [total, attack, wait] 59.991s, 59.99s, 886.936µs +Latencies [min, mean, 50, 90, 95, 99, max] 686.413µs, 949.204µs, 930.943µs, 1.071ms, 1.125ms, 1.246ms, 14.436ms +Bytes In [total, mean] 967939, 161.32 +Bytes Out [total, mean] 0, 0.00 +Success [ratio] 100.00% +Status Codes [code:count] 200:6000 +Error Set: +``` + +![http-oss.png](http-oss.png) diff --git a/tests/results/ngf-upgrade/1.4.0/1.4.0-plus.md b/tests/results/ngf-upgrade/1.4.0/1.4.0-plus.md new file mode 100644 index 000000000..648326423 --- /dev/null +++ b/tests/results/ngf-upgrade/1.4.0/1.4.0-plus.md @@ -0,0 +1,55 @@ +# Results + +## Test environment + +NGINX Plus: true + +NGINX Gateway Fabric: + +- Commit: 16a95222a968aef46277a77070f79bea9b87da12 +- Date: 2024-08-16T15:29:44Z +- Dirty: false + +GKE Cluster: + +- Node count: 12 +- k8s version: v1.29.7-gke.1008000 +- vCPUs per node: 16 +- RAM per node: 65855012Ki +- Max pods per node: 110 +- Zone: us-west1-b +- Instance Type: n2d-standard-16 + +## Summary: + +- Performance seems to have improved. + +## Test: Send http /coffee traffic + +```text +Requests [total, rate, throughput] 6000, 100.02, 100.01 +Duration [total, attack, wait] 59.991s, 59.99s, 746.557µs +Latencies [min, mean, 50, 90, 95, 99, max] 492.426µs, 916.951µs, 894.929µs, 997.453µs, 1.04ms, 1.225ms, 12.566ms +Bytes In [total, mean] 960000, 160.00 +Bytes Out [total, mean] 0, 0.00 +Success [ratio] 100.00% +Status Codes [code:count] 200:6000 +Error Set: +``` + +![http-plus.png](http-plus.png) + +## Test: Send https /tea traffic + +```text +Requests [total, rate, throughput] 6000, 100.02, 100.01 +Duration [total, attack, wait] 59.991s, 59.99s, 844.339µs +Latencies [min, mean, 50, 90, 95, 99, max] 714.591µs, 948.908µs, 919.169µs, 1.03ms, 1.081ms, 1.24ms, 12.421ms +Bytes In [total, mean] 919974, 153.33 +Bytes Out [total, mean] 0, 0.00 +Success [ratio] 100.00% +Status Codes [code:count] 200:6000 +Error Set: +``` + +![https-plus.png](https-plus.png) diff --git a/tests/results/ngf-upgrade/1.4.0/http-oss.png b/tests/results/ngf-upgrade/1.4.0/http-oss.png new file mode 100644 index 000000000..391826e56 Binary files /dev/null and b/tests/results/ngf-upgrade/1.4.0/http-oss.png differ diff --git a/tests/results/ngf-upgrade/1.4.0/http-plus.png b/tests/results/ngf-upgrade/1.4.0/http-plus.png new file mode 100644 index 000000000..c78320b34 Binary files /dev/null and b/tests/results/ngf-upgrade/1.4.0/http-plus.png differ diff --git a/tests/results/ngf-upgrade/1.4.0/https-oss.png b/tests/results/ngf-upgrade/1.4.0/https-oss.png new file mode 100644 index 000000000..391826e56 Binary files /dev/null and b/tests/results/ngf-upgrade/1.4.0/https-oss.png differ diff --git a/tests/results/ngf-upgrade/1.4.0/https-plus.png b/tests/results/ngf-upgrade/1.4.0/https-plus.png new file mode 100644 index 000000000..c78320b34 Binary files /dev/null and b/tests/results/ngf-upgrade/1.4.0/https-plus.png differ diff --git a/tests/results/reconfig/1.4.0/1.4.0-oss.md b/tests/results/reconfig/1.4.0/1.4.0-oss.md new file mode 100644 index 000000000..9debb0d71 --- /dev/null +++ b/tests/results/reconfig/1.4.0/1.4.0-oss.md @@ -0,0 +1,199 @@ +# Results + +## Test environment + +NGINX Plus: false + +NGINX Gateway Fabric: + +- Commit: 16a95222a968aef46277a77070f79bea9b87da12 +- Date: 2024-08-16T15:29:44Z +- Dirty: false + +GKE Cluster: + +- Node count: 12 +- k8s version: v1.29.7-gke.1008000 +- vCPUs per node: 16 +- RAM per node: 65855012Ki +- Max pods per node: 110 +- Zone: us-west1-b +- Instance Type: n2d-standard-16 + +## Summary: + +- Performance seems to have improved. +- These results are going to look quite a bit different from last release because we are now automating them, meaning we aren't subject to manual deviations. + +## Test 1: Resources exist before startup - NumResources 30 + +### Reloads and Time to Ready + +- TimeToReadyTotal: 2s +- TimeToReadyAvgSingle: < 1s +- NGINX Reloads: 2 +- NGINX Reload Average Time: 75ms +- Reload distribution: + - 500ms: 2 + - 1000ms: 2 + - 5000ms: 2 + - 10000ms: 2 + - 30000ms: 2 + - +Infms: 2 + +### Event Batch Processing + +- Event Batch Total: 6 +- Event Batch Processing Average Time: 84ms +- Event Batch Processing distribution: + - 500ms: 6 + - 1000ms: 6 + - 5000ms: 6 + - 10000ms: 6 + - 30000ms: 6 + - +Infms: 6 + + +## Test 1: Resources exist before startup - NumResources 150 + +### Reloads and Time to Ready + +- TimeToReadyTotal: 3s +- TimeToReadyAvgSingle: < 1s +- NGINX Reloads: 2 +- NGINX Reload Average Time: 114ms +- Reload distribution: + - 500ms: 2 + - 1000ms: 2 + - 5000ms: 2 + - 10000ms: 2 + - 30000ms: 2 + - +Infms: 2 + +### Event Batch Processing + +- Event Batch Total: 6 +- Event Batch Processing Average Time: 78ms +- Event Batch Processing distribution: + - 500ms: 6 + - 1000ms: 6 + - 5000ms: 6 + - 10000ms: 6 + - 30000ms: 6 + - +Infms: 6 + + +## Test 2: Start NGF, deploy Gateway, create many resources attached to GW - NumResources 30 + +### Reloads and Time to Ready + +- TimeToReadyTotal: 8s +- TimeToReadyAvgSingle: < 1s +- NGINX Reloads: 62 +- NGINX Reload Average Time: 126ms +- Reload distribution: + - 500ms: 62 + - 1000ms: 62 + - 5000ms: 62 + - 10000ms: 62 + - 30000ms: 62 + - +Infms: 62 + +### Event Batch Processing + +- Event Batch Total: 338 +- Event Batch Processing Average Time: 23ms +- Event Batch Processing distribution: + - 500ms: 338 + - 1000ms: 338 + - 5000ms: 338 + - 10000ms: 338 + - 30000ms: 338 + - +Infms: 338 + + +## Test 2: Start NGF, deploy Gateway, create many resources attached to GW - NumResources 150 + +### Reloads and Time to Ready + +- TimeToReadyTotal: 44s +- TimeToReadyAvgSingle: < 1s +- NGINX Reloads: 343 +- NGINX Reload Average Time: 126ms +- Reload distribution: + - 500ms: 343 + - 1000ms: 343 + - 5000ms: 343 + - 10000ms: 343 + - 30000ms: 343 + - +Infms: 343 + +### Event Batch Processing + +- Event Batch Total: 1698 +- Event Batch Processing Average Time: 25ms +- Event Batch Processing distribution: + - 500ms: 1698 + - 1000ms: 1698 + - 5000ms: 1698 + - 10000ms: 1698 + - 30000ms: 1698 + - +Infms: 1698 + + +## Test 3: Start NGF, create many resources attached to a Gateway, deploy the Gateway - NumResources 30 + +### Reloads and Time to Ready + +- TimeToReadyTotal: < 1s +- TimeToReadyAvgSingle: < 1s +- NGINX Reloads: 62 +- NGINX Reload Average Time: 126ms +- Reload distribution: + - 500ms: 62 + - 1000ms: 62 + - 5000ms: 62 + - 10000ms: 62 + - 30000ms: 62 + - +Infms: 62 + +### Event Batch Processing + +- Event Batch Total: 305 +- Event Batch Processing Average Time: 25ms +- Event Batch Processing distribution: + - 500ms: 305 + - 1000ms: 305 + - 5000ms: 305 + - 10000ms: 305 + - 30000ms: 305 + - +Infms: 305 + + +## Test 3: Start NGF, create many resources attached to a Gateway, deploy the Gateway - NumResources 150 + +### Reloads and Time to Ready + +- TimeToReadyTotal: < 1s +- TimeToReadyAvgSingle: < 1s +- NGINX Reloads: 344 +- NGINX Reload Average Time: 125ms +- Reload distribution: + - 500ms: 344 + - 1000ms: 344 + - 5000ms: 344 + - 10000ms: 344 + - 30000ms: 344 + - +Infms: 344 + +### Event Batch Processing + +- Event Batch Total: 1539 +- Event Batch Processing Average Time: 28ms +- Event Batch Processing distribution: + - 500ms: 1539 + - 1000ms: 1539 + - 5000ms: 1539 + - 10000ms: 1539 + - 30000ms: 1539 + - +Infms: 1539 diff --git a/tests/results/reconfig/1.4.0/1.4.0-plus.md b/tests/results/reconfig/1.4.0/1.4.0-plus.md new file mode 100644 index 000000000..d0e3ea2b3 --- /dev/null +++ b/tests/results/reconfig/1.4.0/1.4.0-plus.md @@ -0,0 +1,199 @@ +# Results + +## Test environment + +NGINX Plus: true + +NGINX Gateway Fabric: + +- Commit: 16a95222a968aef46277a77070f79bea9b87da12 +- Date: 2024-08-16T15:29:44Z +- Dirty: false + +GKE Cluster: + +- Node count: 12 +- k8s version: v1.29.7-gke.1008000 +- vCPUs per node: 16 +- RAM per node: 65855012Ki +- Max pods per node: 110 +- Zone: us-west1-b +- Instance Type: n2d-standard-16 + +## Summary: + +- Performance seems to have improved. +- These results are going to look quite a bit different from last release because we are now automating them, meaning we aren't subject to manual deviations. + +## Test 1: Resources exist before startup - NumResources 30 + +### Reloads and Time to Ready + +- TimeToReadyTotal: 2s +- TimeToReadyAvgSingle: < 1s +- NGINX Reloads: 2 +- NGINX Reload Average Time: 113ms +- Reload distribution: + - 500ms: 2 + - 1000ms: 2 + - 5000ms: 2 + - 10000ms: 2 + - 30000ms: 2 + - +Infms: 2 + +### Event Batch Processing + +- Event Batch Total: 6 +- Event Batch Processing Average Time: 47ms +- Event Batch Processing distribution: + - 500ms: 6 + - 1000ms: 6 + - 5000ms: 6 + - 10000ms: 6 + - 30000ms: 6 + - +Infms: 6 + + +## Test 1: Resources exist before startup - NumResources 150 + +### Reloads and Time to Ready + +- TimeToReadyTotal: 11s +- TimeToReadyAvgSingle: < 1s +- NGINX Reloads: 2 +- NGINX Reload Average Time: 113ms +- Reload distribution: + - 500ms: 2 + - 1000ms: 2 + - 5000ms: 2 + - 10000ms: 2 + - 30000ms: 2 + - +Infms: 2 + +### Event Batch Processing + +- Event Batch Total: 6 +- Event Batch Processing Average Time: 48ms +- Event Batch Processing distribution: + - 500ms: 6 + - 1000ms: 6 + - 5000ms: 6 + - 10000ms: 6 + - 30000ms: 6 + - +Infms: 6 + + +## Test 2: Start NGF, deploy Gateway, create many resources attached to GW - NumResources 30 + +### Reloads and Time to Ready + +- TimeToReadyTotal: 7s +- TimeToReadyAvgSingle: < 1s +- NGINX Reloads: 62 +- NGINX Reload Average Time: 125ms +- Reload distribution: + - 500ms: 62 + - 1000ms: 62 + - 5000ms: 62 + - 10000ms: 62 + - 30000ms: 62 + - +Infms: 62 + +### Event Batch Processing + +- Event Batch Total: 337 +- Event Batch Processing Average Time: 23ms +- Event Batch Processing distribution: + - 500ms: 337 + - 1000ms: 337 + - 5000ms: 337 + - 10000ms: 337 + - 30000ms: 337 + - +Infms: 337 + + +## Test 2: Start NGF, deploy Gateway, create many resources attached to GW - NumResources 150 + +### Reloads and Time to Ready + +- TimeToReadyTotal: 44s +- TimeToReadyAvgSingle: < 1s +- NGINX Reloads: 343 +- NGINX Reload Average Time: 126ms +- Reload distribution: + - 500ms: 343 + - 1000ms: 343 + - 5000ms: 343 + - 10000ms: 343 + - 30000ms: 343 + - +Infms: 343 + +### Event Batch Processing + +- Event Batch Total: 1696 +- Event Batch Processing Average Time: 25ms +- Event Batch Processing distribution: + - 500ms: 1696 + - 1000ms: 1696 + - 5000ms: 1696 + - 10000ms: 1696 + - 30000ms: 1696 + - +Infms: 1696 + + +## Test 3: Start NGF, create many resources attached to a Gateway, deploy the Gateway - NumResources 30 + +### Reloads and Time to Ready + +- TimeToReadyTotal: < 1s +- TimeToReadyAvgSingle: < 1s +- NGINX Reloads: 60 +- NGINX Reload Average Time: 125ms +- Reload distribution: + - 500ms: 60 + - 1000ms: 60 + - 5000ms: 60 + - 10000ms: 60 + - 30000ms: 60 + - +Infms: 60 + +### Event Batch Processing + +- Event Batch Total: 305 +- Event Batch Processing Average Time: 24ms +- Event Batch Processing distribution: + - 500ms: 305 + - 1000ms: 305 + - 5000ms: 305 + - 10000ms: 305 + - 30000ms: 305 + - +Infms: 305 + + +## Test 3: Start NGF, create many resources attached to a Gateway, deploy the Gateway - NumResources 150 + +### Reloads and Time to Ready + +- TimeToReadyTotal: < 1s +- TimeToReadyAvgSingle: < 1s +- NGINX Reloads: 343 +- NGINX Reload Average Time: 125ms +- Reload distribution: + - 500ms: 343 + - 1000ms: 343 + - 5000ms: 343 + - 10000ms: 343 + - 30000ms: 343 + - +Infms: 343 + +### Event Batch Processing + +- Event Batch Total: 1555 +- Event Batch Processing Average Time: 27ms +- Event Batch Processing distribution: + - 500ms: 1555 + - 1000ms: 1555 + - 5000ms: 1555 + - 10000ms: 1555 + - 30000ms: 1555 + - +Infms: 1555 diff --git a/tests/results/scale/1.4.0/1.4.0-oss.md b/tests/results/scale/1.4.0/1.4.0-oss.md new file mode 100644 index 000000000..705d59960 --- /dev/null +++ b/tests/results/scale/1.4.0/1.4.0-oss.md @@ -0,0 +1,204 @@ +# Results + +## Test environment + +NGINX Plus: false + +NGINX Gateway Fabric: + +- Commit: 16a95222a968aef46277a77070f79bea9b87da12 +- Date: 2024-08-16T15:29:44Z +- Dirty: false + +GKE Cluster: + +- Node count: 12 +- k8s version: v1.29.7-gke.1008000 +- vCPUs per node: 16 +- RAM per node: 65855012Ki +- Max pods per node: 110 +- Zone: us-west1-b +- Instance Type: n2d-standard-16 + +## Summary: + +- Similar results to last time. + +## Test TestScale_Listeners + +### Reloads + +- Total: 127 +- Total Errors: 0 +- Average Time: 145ms +- Reload distribution: + - 500ms: 127 + - 1000ms: 127 + - 5000ms: 127 + - 10000ms: 127 + - 30000ms: 127 + - +Infms: 127 + +### Event Batch Processing + +- Total: 385 +- Average Time: 122ms +- Event Batch Processing distribution: + - 500ms: 351 + - 1000ms: 384 + - 5000ms: 385 + - 10000ms: 385 + - 30000ms: 385 + - +Infms: 385 + +### Errors + +- NGF errors: 0 +- NGF container restarts: 0 +- NGINX errors: 0 +- NGINX container restarts: 0 + +### Graphs and Logs + +See [output directory](./TestScale_Listeners) for more details. +The logs are attached only if there are errors. + +## Test TestScale_HTTPSListeners + +### Reloads + +- Total: 128 +- Total Errors: 0 +- Average Time: 166ms +- Reload distribution: + - 500ms: 128 + - 1000ms: 128 + - 5000ms: 128 + - 10000ms: 128 + - 30000ms: 128 + - +Infms: 128 + +### Event Batch Processing + +- Total: 449 +- Average Time: 115ms +- Event Batch Processing distribution: + - 500ms: 412 + - 1000ms: 449 + - 5000ms: 449 + - 10000ms: 449 + - 30000ms: 449 + - +Infms: 449 + +### Errors + +- NGF errors: 0 +- NGF container restarts: 0 +- NGINX errors: 0 +- NGINX container restarts: 0 + +### Graphs and Logs + +See [output directory](./TestScale_HTTPSListeners) for more details. +The logs are attached only if there are errors. + +## Test TestScale_HTTPRoutes + +### Reloads + +- Total: 1001 +- Total Errors: 0 +- Average Time: 354ms +- Reload distribution: + - 500ms: 809 + - 1000ms: 1001 + - 5000ms: 1001 + - 10000ms: 1001 + - 30000ms: 1001 + - +Infms: 1001 + +### Event Batch Processing + +- Total: 1008 +- Average Time: 409ms +- Event Batch Processing distribution: + - 500ms: 688 + - 1000ms: 1008 + - 5000ms: 1008 + - 10000ms: 1008 + - 30000ms: 1008 + - +Infms: 1008 + +### Errors + +- NGF errors: 0 +- NGF container restarts: 0 +- NGINX errors: 0 +- NGINX container restarts: 0 + +### Graphs and Logs + +See [output directory](./TestScale_HTTPRoutes) for more details. +The logs are attached only if there are errors. + +## Test TestScale_UpstreamServers + +### Reloads + +- Total: 111 +- Total Errors: 0 +- Average Time: 127ms +- Reload distribution: + - 500ms: 111 + - 1000ms: 111 + - 5000ms: 111 + - 10000ms: 111 + - 30000ms: 111 + - +Infms: 111 + +### Event Batch Processing + +- Total: 114 +- Average Time: 125ms +- Event Batch Processing distribution: + - 500ms: 114 + - 1000ms: 114 + - 5000ms: 114 + - 10000ms: 114 + - 30000ms: 114 + - +Infms: 114 + +### Errors + +- NGF errors: 0 +- NGF container restarts: 0 +- NGINX errors: 0 +- NGINX container restarts: 0 + +### Graphs and Logs + +See [output directory](./TestScale_UpstreamServers) for more details. +The logs are attached only if there are errors. + +## Test TestScale_HTTPMatches + +```text +Requests [total, rate, throughput] 29999, 1000.01, 999.98 +Duration [total, attack, wait] 30s, 29.999s, 774.839µs +Latencies [min, mean, 50, 90, 95, 99, max] 548.898µs, 777.226µs, 758.948µs, 864.707µs, 905.806µs, 1.031ms, 14.621ms +Bytes In [total, mean] 4829839, 161.00 +Bytes Out [total, mean] 0, 0.00 +Success [ratio] 100.00% +Status Codes [code:count] 200:29999 +Error Set: +``` +```text +Requests [total, rate, throughput] 30000, 1000.06, 1000.03 +Duration [total, attack, wait] 29.999s, 29.998s, 842.003µs +Latencies [min, mean, 50, 90, 95, 99, max] 632.072µs, 860.325µs, 843.01µs, 968.956µs, 1.021ms, 1.134ms, 11.96ms +Bytes In [total, mean] 4830000, 161.00 +Bytes Out [total, mean] 0, 0.00 +Success [ratio] 100.00% +Status Codes [code:count] 200:30000 +Error Set: +``` diff --git a/tests/results/scale/1.4.0/1.4.0-plus.md b/tests/results/scale/1.4.0/1.4.0-plus.md new file mode 100644 index 000000000..f1021d018 --- /dev/null +++ b/tests/results/scale/1.4.0/1.4.0-plus.md @@ -0,0 +1,205 @@ +# Results + +## Test environment + +NGINX Plus: true + +NGINX Gateway Fabric: + +- Commit: 16a95222a968aef46277a77070f79bea9b87da12 +- Date: 2024-08-16T15:29:44Z +- Dirty: false + +GKE Cluster: + +- Node count: 12 +- k8s version: v1.29.7-gke.1008000 +- vCPUs per node: 16 +- RAM per node: 65855012Ki +- Max pods per node: 110 +- Zone: us-west1-b +- Instance Type: n2d-standard-16 + +## Summary: + +- Similar results to last time. +- https://github.com/nginxinc/nginx-gateway-fabric/issues/2023 is still an issue. + +## Test TestScale_Listeners + +### Reloads + +- Total: 127 +- Total Errors: 0 +- Average Time: 147ms +- Reload distribution: + - 500ms: 127 + - 1000ms: 127 + - 5000ms: 127 + - 10000ms: 127 + - 30000ms: 127 + - +Infms: 127 + +### Event Batch Processing + +- Total: 386 +- Average Time: 122ms +- Event Batch Processing distribution: + - 500ms: 353 + - 1000ms: 386 + - 5000ms: 386 + - 10000ms: 386 + - 30000ms: 386 + - +Infms: 386 + +### Errors + +- NGF errors: 0 +- NGF container restarts: 0 +- NGINX errors: 0 +- NGINX container restarts: 0 + +### Graphs and Logs + +See [output directory](./TestScale_Listeners) for more details. +The logs are attached only if there are errors. + +## Test TestScale_HTTPSListeners + +### Reloads + +- Total: 128 +- Total Errors: 0 +- Average Time: 168ms +- Reload distribution: + - 500ms: 128 + - 1000ms: 128 + - 5000ms: 128 + - 10000ms: 128 + - 30000ms: 128 + - +Infms: 128 + +### Event Batch Processing + +- Total: 451 +- Average Time: 122ms +- Event Batch Processing distribution: + - 500ms: 408 + - 1000ms: 450 + - 5000ms: 451 + - 10000ms: 451 + - 30000ms: 451 + - +Infms: 451 + +### Errors + +- NGF errors: 0 +- NGF container restarts: 0 +- NGINX errors: 0 +- NGINX container restarts: 0 + +### Graphs and Logs + +See [output directory](./TestScale_HTTPSListeners) for more details. +The logs are attached only if there are errors. + +## Test TestScale_HTTPRoutes + +### Reloads + +- Total: 1001 +- Total Errors: 0 +- Average Time: 360ms +- Reload distribution: + - 500ms: 799 + - 1000ms: 1001 + - 5000ms: 1001 + - 10000ms: 1001 + - 30000ms: 1001 + - +Infms: 1001 + +### Event Batch Processing + +- Total: 1008 +- Average Time: 418ms +- Event Batch Processing distribution: + - 500ms: 675 + - 1000ms: 1008 + - 5000ms: 1008 + - 10000ms: 1008 + - 30000ms: 1008 + - +Infms: 1008 + +### Errors + +- NGF errors: 0 +- NGF container restarts: 0 +- NGINX errors: 0 +- NGINX container restarts: 0 + +### Graphs and Logs + +See [output directory](./TestScale_HTTPRoutes) for more details. +The logs are attached only if there are errors. + +## Test TestScale_UpstreamServers + +### Reloads + +- Total: 3 +- Total Errors: 0 +- Average Time: 125ms +- Reload distribution: + - 500ms: 3 + - 1000ms: 3 + - 5000ms: 3 + - 10000ms: 3 + - 30000ms: 3 + - +Infms: 3 + +### Event Batch Processing + +- Total: 256 +- Average Time: 11ms +- Event Batch Processing distribution: + - 500ms: 256 + - 1000ms: 256 + - 5000ms: 256 + - 10000ms: 256 + - 30000ms: 256 + - +Infms: 256 + +### Errors + +- NGF errors: 1 +- NGF container restarts: 1 +- NGINX errors: 2 +- NGINX container restarts: 0 + +### Graphs and Logs + +See [output directory](./TestScale_UpstreamServers) for more details. +The logs are attached only if there are errors. + +## Test TestScale_HTTPMatches + +```text +Requests [total, rate, throughput] 30000, 1000.03, 1000.00 +Duration [total, attack, wait] 30s, 29.999s, 731.564µs +Latencies [min, mean, 50, 90, 95, 99, max] 551.255µs, 758.324µs, 734.075µs, 833.975µs, 873.102µs, 990.173µs, 17.139ms +Bytes In [total, mean] 4830000, 161.00 +Bytes Out [total, mean] 0, 0.00 +Success [ratio] 100.00% +Status Codes [code:count] 200:30000 +Error Set: +``` +```text +Requests [total, rate, throughput] 30000, 1000.06, 1000.04 +Duration [total, attack, wait] 29.999s, 29.998s, 722.9µs +Latencies [min, mean, 50, 90, 95, 99, max] 611.557µs, 821.516µs, 800.476µs, 933.847µs, 984.856µs, 1.099ms, 9.256ms +Bytes In [total, mean] 4830000, 161.00 +Bytes Out [total, mean] 0, 0.00 +Success [ratio] 100.00% +Status Codes [code:count] 200:30000 +Error Set: +``` diff --git a/tests/results/scale/1.4.0/TestScale_HTTPRoutes/cpu-oss.png b/tests/results/scale/1.4.0/TestScale_HTTPRoutes/cpu-oss.png new file mode 100644 index 000000000..bffecce2d Binary files /dev/null and b/tests/results/scale/1.4.0/TestScale_HTTPRoutes/cpu-oss.png differ diff --git a/tests/results/scale/1.4.0/TestScale_HTTPRoutes/cpu-plus.png b/tests/results/scale/1.4.0/TestScale_HTTPRoutes/cpu-plus.png new file mode 100644 index 000000000..4101204fc Binary files /dev/null and b/tests/results/scale/1.4.0/TestScale_HTTPRoutes/cpu-plus.png differ diff --git a/tests/results/scale/1.4.0/TestScale_HTTPRoutes/memory-oss.png b/tests/results/scale/1.4.0/TestScale_HTTPRoutes/memory-oss.png new file mode 100644 index 000000000..d5b481658 Binary files /dev/null and b/tests/results/scale/1.4.0/TestScale_HTTPRoutes/memory-oss.png differ diff --git a/tests/results/scale/1.4.0/TestScale_HTTPRoutes/memory-plus.png b/tests/results/scale/1.4.0/TestScale_HTTPRoutes/memory-plus.png new file mode 100644 index 000000000..9833d7d77 Binary files /dev/null and b/tests/results/scale/1.4.0/TestScale_HTTPRoutes/memory-plus.png differ diff --git a/tests/results/scale/1.4.0/TestScale_HTTPRoutes/ttr-oss.png b/tests/results/scale/1.4.0/TestScale_HTTPRoutes/ttr-oss.png new file mode 100644 index 000000000..a094328c5 Binary files /dev/null and b/tests/results/scale/1.4.0/TestScale_HTTPRoutes/ttr-oss.png differ diff --git a/tests/results/scale/1.4.0/TestScale_HTTPRoutes/ttr-plus.png b/tests/results/scale/1.4.0/TestScale_HTTPRoutes/ttr-plus.png new file mode 100644 index 000000000..01662d689 Binary files /dev/null and b/tests/results/scale/1.4.0/TestScale_HTTPRoutes/ttr-plus.png differ diff --git a/tests/results/scale/1.4.0/TestScale_HTTPSListeners/cpu-oss.png b/tests/results/scale/1.4.0/TestScale_HTTPSListeners/cpu-oss.png new file mode 100644 index 000000000..048d5ca74 Binary files /dev/null and b/tests/results/scale/1.4.0/TestScale_HTTPSListeners/cpu-oss.png differ diff --git a/tests/results/scale/1.4.0/TestScale_HTTPSListeners/cpu-plus.png b/tests/results/scale/1.4.0/TestScale_HTTPSListeners/cpu-plus.png new file mode 100644 index 000000000..69e0d88aa Binary files /dev/null and b/tests/results/scale/1.4.0/TestScale_HTTPSListeners/cpu-plus.png differ diff --git a/tests/results/scale/1.4.0/TestScale_HTTPSListeners/memory-oss.png b/tests/results/scale/1.4.0/TestScale_HTTPSListeners/memory-oss.png new file mode 100644 index 000000000..2603c26d9 Binary files /dev/null and b/tests/results/scale/1.4.0/TestScale_HTTPSListeners/memory-oss.png differ diff --git a/tests/results/scale/1.4.0/TestScale_HTTPSListeners/memory-plus.png b/tests/results/scale/1.4.0/TestScale_HTTPSListeners/memory-plus.png new file mode 100644 index 000000000..ca4b1914a Binary files /dev/null and b/tests/results/scale/1.4.0/TestScale_HTTPSListeners/memory-plus.png differ diff --git a/tests/results/scale/1.4.0/TestScale_HTTPSListeners/ttr-oss.png b/tests/results/scale/1.4.0/TestScale_HTTPSListeners/ttr-oss.png new file mode 100644 index 000000000..93108ec11 Binary files /dev/null and b/tests/results/scale/1.4.0/TestScale_HTTPSListeners/ttr-oss.png differ diff --git a/tests/results/scale/1.4.0/TestScale_HTTPSListeners/ttr-plus.png b/tests/results/scale/1.4.0/TestScale_HTTPSListeners/ttr-plus.png new file mode 100644 index 000000000..b25c92f01 Binary files /dev/null and b/tests/results/scale/1.4.0/TestScale_HTTPSListeners/ttr-plus.png differ diff --git a/tests/results/scale/1.4.0/TestScale_Listeners/cpu-oss.png b/tests/results/scale/1.4.0/TestScale_Listeners/cpu-oss.png new file mode 100644 index 000000000..d7fd31801 Binary files /dev/null and b/tests/results/scale/1.4.0/TestScale_Listeners/cpu-oss.png differ diff --git a/tests/results/scale/1.4.0/TestScale_Listeners/cpu-plus.png b/tests/results/scale/1.4.0/TestScale_Listeners/cpu-plus.png new file mode 100644 index 000000000..5a232bf58 Binary files /dev/null and b/tests/results/scale/1.4.0/TestScale_Listeners/cpu-plus.png differ diff --git a/tests/results/scale/1.4.0/TestScale_Listeners/memory-oss.png b/tests/results/scale/1.4.0/TestScale_Listeners/memory-oss.png new file mode 100644 index 000000000..ddda28c0e Binary files /dev/null and b/tests/results/scale/1.4.0/TestScale_Listeners/memory-oss.png differ diff --git a/tests/results/scale/1.4.0/TestScale_Listeners/memory-plus.png b/tests/results/scale/1.4.0/TestScale_Listeners/memory-plus.png new file mode 100644 index 000000000..28f74ec34 Binary files /dev/null and b/tests/results/scale/1.4.0/TestScale_Listeners/memory-plus.png differ diff --git a/tests/results/scale/1.4.0/TestScale_Listeners/ttr-oss.png b/tests/results/scale/1.4.0/TestScale_Listeners/ttr-oss.png new file mode 100644 index 000000000..7a3ba633d Binary files /dev/null and b/tests/results/scale/1.4.0/TestScale_Listeners/ttr-oss.png differ diff --git a/tests/results/scale/1.4.0/TestScale_Listeners/ttr-plus.png b/tests/results/scale/1.4.0/TestScale_Listeners/ttr-plus.png new file mode 100644 index 000000000..43ea7fe85 Binary files /dev/null and b/tests/results/scale/1.4.0/TestScale_Listeners/ttr-plus.png differ diff --git a/tests/results/scale/1.4.0/TestScale_UpstreamServers/cpu-oss.png b/tests/results/scale/1.4.0/TestScale_UpstreamServers/cpu-oss.png new file mode 100644 index 000000000..e70daf6d3 Binary files /dev/null and b/tests/results/scale/1.4.0/TestScale_UpstreamServers/cpu-oss.png differ diff --git a/tests/results/scale/1.4.0/TestScale_UpstreamServers/cpu-plus.png b/tests/results/scale/1.4.0/TestScale_UpstreamServers/cpu-plus.png new file mode 100644 index 000000000..a0b0c8f81 Binary files /dev/null and b/tests/results/scale/1.4.0/TestScale_UpstreamServers/cpu-plus.png differ diff --git a/tests/results/scale/1.4.0/TestScale_UpstreamServers/memory-oss.png b/tests/results/scale/1.4.0/TestScale_UpstreamServers/memory-oss.png new file mode 100644 index 000000000..2ba19518e Binary files /dev/null and b/tests/results/scale/1.4.0/TestScale_UpstreamServers/memory-oss.png differ diff --git a/tests/results/scale/1.4.0/TestScale_UpstreamServers/memory-plus.png b/tests/results/scale/1.4.0/TestScale_UpstreamServers/memory-plus.png new file mode 100644 index 000000000..5aaf179b0 Binary files /dev/null and b/tests/results/scale/1.4.0/TestScale_UpstreamServers/memory-plus.png differ diff --git a/tests/results/scale/1.4.0/TestScale_UpstreamServers/ngf-plus.log b/tests/results/scale/1.4.0/TestScale_UpstreamServers/ngf-plus.log new file mode 100644 index 000000000..35dbe9449 --- /dev/null +++ b/tests/results/scale/1.4.0/TestScale_UpstreamServers/ngf-plus.log @@ -0,0 +1,4434 @@ +{"level":"info","ts":"2024-08-16T17:14:12Z","msg":"Starting NGINX Gateway Fabric in static mode","version":"edge","commit":"16a95222a968aef46277a77070f79bea9b87da12","date":"2024-08-16T15:29:44Z","dirty":"false"} +{"level":"info","ts":"2024-08-16T17:14:13Z","msg":"Starting manager"} +{"level":"info","ts":"2024-08-16T17:14:13Z","logger":"controller-runtime.metrics","msg":"Starting metrics server"} +{"level":"info","ts":"2024-08-16T17:14:13Z","logger":"controller-runtime.metrics","msg":"Serving metrics server","bindAddress":":9113","secure":false} +{"level":"info","ts":"2024-08-16T17:14:13Z","msg":"starting server","name":"health probe","addr":"[::]:8081"} +{"level":"info","ts":"2024-08-16T17:14:13Z","msg":"Starting EventSource","controller":"user-service","controllerGroup":"","controllerKind":"Service","source":"kind source: *v1.Service"} +{"level":"info","ts":"2024-08-16T17:14:13Z","msg":"Starting Controller","controller":"user-service","controllerGroup":"","controllerKind":"Service"} +{"level":"info","ts":"2024-08-16T17:14:13Z","msg":"Starting EventSource","controller":"nginxproxy","controllerGroup":"gateway.nginx.org","controllerKind":"NginxProxy","source":"kind source: *v1alpha1.NginxProxy"} +{"level":"info","ts":"2024-08-16T17:14:13Z","msg":"Starting Controller","controller":"nginxproxy","controllerGroup":"gateway.nginx.org","controllerKind":"NginxProxy"} +{"level":"info","ts":"2024-08-16T17:14:13Z","msg":"Starting EventSource","controller":"gatewayclass","controllerGroup":"gateway.networking.k8s.io","controllerKind":"GatewayClass","source":"kind source: *v1.GatewayClass"} +I0816 17:14:13.154912 48 leaderelection.go:254] attempting to acquire leader lease nginx-gateway/ngf-test-nginx-gateway-fabric-leader-election... +{"level":"info","ts":"2024-08-16T17:14:13Z","msg":"Starting EventSource","controller":"CustomResourceDefinition","controllerGroup":"apiextensions.k8s.io","controllerKind":"CustomResourceDefinition","source":"kind source: *v1.PartialObjectMetadata"} +{"level":"info","ts":"2024-08-16T17:14:13Z","msg":"Starting Controller","controller":"CustomResourceDefinition","controllerGroup":"apiextensions.k8s.io","controllerKind":"CustomResourceDefinition"} +{"level":"info","ts":"2024-08-16T17:14:13Z","msg":"Starting Controller","controller":"gatewayclass","controllerGroup":"gateway.networking.k8s.io","controllerKind":"GatewayClass"} +{"level":"info","ts":"2024-08-16T17:14:13Z","msg":"Starting EventSource","controller":"ngf-service","controllerGroup":"","controllerKind":"Service","source":"kind source: *v1.Service"} +{"level":"info","ts":"2024-08-16T17:14:13Z","msg":"Starting Controller","controller":"ngf-service","controllerGroup":"","controllerKind":"Service"} +{"level":"info","ts":"2024-08-16T17:14:13Z","msg":"Starting EventSource","controller":"httproute","controllerGroup":"gateway.networking.k8s.io","controllerKind":"HTTPRoute","source":"kind source: *v1.HTTPRoute"} +{"level":"info","ts":"2024-08-16T17:14:13Z","msg":"Starting Controller","controller":"httproute","controllerGroup":"gateway.networking.k8s.io","controllerKind":"HTTPRoute"} +{"level":"info","ts":"2024-08-16T17:14:13Z","msg":"Starting EventSource","controller":"gateway","controllerGroup":"gateway.networking.k8s.io","controllerKind":"Gateway","source":"kind source: *v1.Gateway"} +{"level":"info","ts":"2024-08-16T17:14:13Z","msg":"Starting Controller","controller":"gateway","controllerGroup":"gateway.networking.k8s.io","controllerKind":"Gateway"} +{"level":"info","ts":"2024-08-16T17:14:13Z","msg":"Starting EventSource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","source":"kind source: *v1.EndpointSlice"} +{"level":"info","ts":"2024-08-16T17:14:13Z","msg":"Starting Controller","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice"} +{"level":"info","ts":"2024-08-16T17:14:13Z","msg":"Starting EventSource","controller":"secret","controllerGroup":"","controllerKind":"Secret","source":"kind source: *v1.Secret"} +{"level":"info","ts":"2024-08-16T17:14:13Z","msg":"Starting Controller","controller":"secret","controllerGroup":"","controllerKind":"Secret"} +{"level":"info","ts":"2024-08-16T17:14:13Z","msg":"Starting EventSource","controller":"clientsettingspolicy","controllerGroup":"gateway.nginx.org","controllerKind":"ClientSettingsPolicy","source":"kind source: *v1alpha1.ClientSettingsPolicy"} +{"level":"info","ts":"2024-08-16T17:14:13Z","msg":"Starting Controller","controller":"clientsettingspolicy","controllerGroup":"gateway.nginx.org","controllerKind":"ClientSettingsPolicy"} +{"level":"info","ts":"2024-08-16T17:14:13Z","msg":"Starting EventSource","controller":"grpcroute","controllerGroup":"gateway.networking.k8s.io","controllerKind":"GRPCRoute","source":"kind source: *v1.GRPCRoute"} +{"level":"info","ts":"2024-08-16T17:14:13Z","msg":"Starting Controller","controller":"grpcroute","controllerGroup":"gateway.networking.k8s.io","controllerKind":"GRPCRoute"} +{"level":"info","ts":"2024-08-16T17:14:13Z","msg":"Starting EventSource","controller":"nginxgateway","controllerGroup":"gateway.nginx.org","controllerKind":"NginxGateway","source":"kind source: *v1alpha1.NginxGateway"} +{"level":"info","ts":"2024-08-16T17:14:13Z","msg":"Starting Controller","controller":"nginxgateway","controllerGroup":"gateway.nginx.org","controllerKind":"NginxGateway"} +{"level":"info","ts":"2024-08-16T17:14:13Z","msg":"Starting EventSource","controller":"observabilitypolicy","controllerGroup":"gateway.nginx.org","controllerKind":"ObservabilityPolicy","source":"kind source: *v1alpha1.ObservabilityPolicy"} +{"level":"info","ts":"2024-08-16T17:14:13Z","msg":"Starting Controller","controller":"observabilitypolicy","controllerGroup":"gateway.nginx.org","controllerKind":"ObservabilityPolicy"} +{"level":"info","ts":"2024-08-16T17:14:13Z","msg":"Starting EventSource","controller":"namespace","controllerGroup":"","controllerKind":"Namespace","source":"kind source: *v1.Namespace"} +{"level":"info","ts":"2024-08-16T17:14:13Z","msg":"Starting Controller","controller":"namespace","controllerGroup":"","controllerKind":"Namespace"} +{"level":"info","ts":"2024-08-16T17:14:13Z","msg":"Starting EventSource","controller":"referencegrant","controllerGroup":"gateway.networking.k8s.io","controllerKind":"ReferenceGrant","source":"kind source: *v1beta1.ReferenceGrant"} +{"level":"info","ts":"2024-08-16T17:14:13Z","msg":"Starting Controller","controller":"referencegrant","controllerGroup":"gateway.networking.k8s.io","controllerKind":"ReferenceGrant"} +I0816 17:14:13.208130 48 leaderelection.go:268] successfully acquired lease nginx-gateway/ngf-test-nginx-gateway-fabric-leader-election +{"level":"info","ts":"2024-08-16T17:14:13Z","msg":"Starting workers","controller":"nginxproxy","controllerGroup":"gateway.nginx.org","controllerKind":"NginxProxy","worker count":1} +{"level":"info","ts":"2024-08-16T17:14:13Z","msg":"Starting workers","controller":"ngf-service","controllerGroup":"","controllerKind":"Service","worker count":1} +{"level":"info","ts":"2024-08-16T17:14:13Z","msg":"Starting workers","controller":"secret","controllerGroup":"","controllerKind":"Secret","worker count":1} +{"level":"info","ts":"2024-08-16T17:14:13Z","msg":"Starting workers","controller":"user-service","controllerGroup":"","controllerKind":"Service","worker count":1} +{"level":"info","ts":"2024-08-16T17:14:13Z","msg":"Starting workers","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","worker count":1} +{"level":"info","ts":"2024-08-16T17:14:13Z","msg":"Reconciling the resource","controller":"ngf-service","controllerGroup":"","controllerKind":"Service","Service":{"name":"kube-dns","namespace":"kube-system"},"namespace":"kube-system","name":"kube-dns","reconcileID":"6abc214d-51f9-4851-b234-733201bf1f94"} +{"level":"info","ts":"2024-08-16T17:14:13Z","msg":"Reconciling the resource","controller":"secret","controllerGroup":"","controllerKind":"Secret","Secret":{"name":"sh.helm.release.v1.prom.v1","namespace":"prom"},"namespace":"prom","name":"sh.helm.release.v1.prom.v1","reconcileID":"a9b1c7dd-3009-489b-90f8-70f992e83aec"} +{"level":"info","ts":"2024-08-16T17:14:13Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"metrics-server-49w7n","namespace":"kube-system"},"namespace":"kube-system","name":"metrics-server-49w7n","reconcileID":"520034cc-7abf-4f10-99f0-b876225db7da"} +{"level":"info","ts":"2024-08-16T17:14:13Z","msg":"Reconciling the resource","controller":"user-service","controllerGroup":"","controllerKind":"Service","Service":{"name":"default-http-backend","namespace":"kube-system"},"namespace":"kube-system","name":"default-http-backend","reconcileID":"7ff37690-7723-434c-809f-c390c7d9e8f4"} +{"level":"info","ts":"2024-08-16T17:14:13Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:14:13Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":2} +{"level":"info","ts":"2024-08-16T17:14:13Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":3} +{"level":"info","ts":"2024-08-16T17:14:13Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":4} +{"level":"info","ts":"2024-08-16T17:14:13Z","msg":"Upserted the resource","controller":"secret","controllerGroup":"","controllerKind":"Secret","Secret":{"name":"sh.helm.release.v1.prom.v1","namespace":"prom"},"namespace":"prom","name":"sh.helm.release.v1.prom.v1","reconcileID":"a9b1c7dd-3009-489b-90f8-70f992e83aec"} +{"level":"info","ts":"2024-08-16T17:14:13Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":1,"total":76} +{"level":"info","ts":"2024-08-16T17:14:13Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"metrics-server-49w7n","namespace":"kube-system"},"namespace":"kube-system","name":"metrics-server-49w7n","reconcileID":"520034cc-7abf-4f10-99f0-b876225db7da"} +{"level":"info","ts":"2024-08-16T17:14:13Z","msg":"Reconciling the resource","controller":"secret","controllerGroup":"","controllerKind":"Secret","Secret":{"name":"alertmanager","namespace":"gmp-system"},"namespace":"gmp-system","name":"alertmanager","reconcileID":"54e47358-f1dd-4253-8caf-6121834f3944"} +{"level":"info","ts":"2024-08-16T17:14:13Z","msg":"Upserted the resource","controller":"ngf-service","controllerGroup":"","controllerKind":"Service","Service":{"name":"kube-dns","namespace":"kube-system"},"namespace":"kube-system","name":"kube-dns","reconcileID":"6abc214d-51f9-4851-b234-733201bf1f94"} +{"level":"info","ts":"2024-08-16T17:14:13Z","msg":"Upserted the resource","controller":"secret","controllerGroup":"","controllerKind":"Secret","Secret":{"name":"alertmanager","namespace":"gmp-system"},"namespace":"gmp-system","name":"alertmanager","reconcileID":"54e47358-f1dd-4253-8caf-6121834f3944"} +{"level":"info","ts":"2024-08-16T17:14:13Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":5} +{"level":"info","ts":"2024-08-16T17:14:13Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"ngf-test-nginx-gateway-fabric-l4h9k","namespace":"nginx-gateway"},"namespace":"nginx-gateway","name":"ngf-test-nginx-gateway-fabric-l4h9k","reconcileID":"83c4753c-63ea-4ef2-90a9-38b13d89e812"} +{"level":"info","ts":"2024-08-16T17:14:13Z","msg":"Reconciling the resource","controller":"ngf-service","controllerGroup":"","controllerKind":"Service","Service":{"name":"ngf-test-nginx-gateway-fabric","namespace":"nginx-gateway"},"namespace":"nginx-gateway","name":"ngf-test-nginx-gateway-fabric","reconcileID":"97862329-5baa-428e-9d20-91b84b362df3"} +{"level":"info","ts":"2024-08-16T17:14:13Z","msg":"Upserted the resource","controller":"user-service","controllerGroup":"","controllerKind":"Service","Service":{"name":"default-http-backend","namespace":"kube-system"},"namespace":"kube-system","name":"default-http-backend","reconcileID":"7ff37690-7723-434c-809f-c390c7d9e8f4"} +{"level":"info","ts":"2024-08-16T17:14:13Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":6} +{"level":"info","ts":"2024-08-16T17:14:13Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":7} +{"level":"info","ts":"2024-08-16T17:14:13Z","msg":"Upserted the resource","controller":"ngf-service","controllerGroup":"","controllerKind":"Service","Service":{"name":"ngf-test-nginx-gateway-fabric","namespace":"nginx-gateway"},"namespace":"nginx-gateway","name":"ngf-test-nginx-gateway-fabric","reconcileID":"97862329-5baa-428e-9d20-91b84b362df3"} +{"level":"info","ts":"2024-08-16T17:14:13Z","msg":"Reconciling the resource","controller":"secret","controllerGroup":"","controllerKind":"Secret","Secret":{"name":"collection","namespace":"gmp-system"},"namespace":"gmp-system","name":"collection","reconcileID":"b2725226-f800-4206-9beb-6140ff4f526c"} +{"level":"info","ts":"2024-08-16T17:14:13Z","msg":"Upserted the resource","controller":"secret","controllerGroup":"","controllerKind":"Secret","Secret":{"name":"collection","namespace":"gmp-system"},"namespace":"gmp-system","name":"collection","reconcileID":"b2725226-f800-4206-9beb-6140ff4f526c"} +{"level":"info","ts":"2024-08-16T17:14:13Z","msg":"Reconciling the resource","controller":"secret","controllerGroup":"","controllerKind":"Secret","Secret":{"name":"rules","namespace":"gmp-system"},"namespace":"gmp-system","name":"rules","reconcileID":"ec98810f-5b00-412e-ad6d-bedcde15892d"} +{"level":"info","ts":"2024-08-16T17:14:13Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":8} +{"level":"info","ts":"2024-08-16T17:14:13Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"ngf-test-nginx-gateway-fabric-l4h9k","namespace":"nginx-gateway"},"namespace":"nginx-gateway","name":"ngf-test-nginx-gateway-fabric-l4h9k","reconcileID":"83c4753c-63ea-4ef2-90a9-38b13d89e812"} +{"level":"info","ts":"2024-08-16T17:14:13Z","msg":"Upserted the resource","controller":"secret","controllerGroup":"","controllerKind":"Secret","Secret":{"name":"rules","namespace":"gmp-system"},"namespace":"gmp-system","name":"rules","reconcileID":"ec98810f-5b00-412e-ad6d-bedcde15892d"} +{"level":"info","ts":"2024-08-16T17:14:13Z","msg":"Reconciling the resource","controller":"ngf-service","controllerGroup":"","controllerKind":"Service","Service":{"name":"prom-alertmanager-headless","namespace":"prom"},"namespace":"prom","name":"prom-alertmanager-headless","reconcileID":"814f23e0-0e38-409d-aed3-7e9ada99cd13"} +{"level":"info","ts":"2024-08-16T17:14:13Z","msg":"Reconciling the resource","controller":"secret","controllerGroup":"","controllerKind":"Secret","Secret":{"name":"webhook-tls","namespace":"gmp-system"},"namespace":"gmp-system","name":"webhook-tls","reconcileID":"bbe33126-cacd-4878-97d2-f834d0e14665"} +{"level":"info","ts":"2024-08-16T17:14:13Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"prom-alertmanager-6wnl7","namespace":"prom"},"namespace":"prom","name":"prom-alertmanager-6wnl7","reconcileID":"508a1bed-29e3-4314-903b-6cc4b777e6f6"} +{"level":"info","ts":"2024-08-16T17:14:13Z","msg":"Reconciling the resource","controller":"user-service","controllerGroup":"","controllerKind":"Service","Service":{"name":"metrics-server","namespace":"kube-system"},"namespace":"kube-system","name":"metrics-server","reconcileID":"fc185867-53b6-4329-b3af-8b226dcb67be"} +{"level":"info","ts":"2024-08-16T17:14:13Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":9} +{"level":"info","ts":"2024-08-16T17:14:13Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":10} +{"level":"info","ts":"2024-08-16T17:14:13Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":11} +{"level":"info","ts":"2024-08-16T17:14:13Z","msg":"Upserted the resource","controller":"secret","controllerGroup":"","controllerKind":"Secret","Secret":{"name":"webhook-tls","namespace":"gmp-system"},"namespace":"gmp-system","name":"webhook-tls","reconcileID":"bbe33126-cacd-4878-97d2-f834d0e14665"} +{"level":"info","ts":"2024-08-16T17:14:13Z","msg":"Upserted the resource","controller":"ngf-service","controllerGroup":"","controllerKind":"Service","Service":{"name":"prom-alertmanager-headless","namespace":"prom"},"namespace":"prom","name":"prom-alertmanager-headless","reconcileID":"814f23e0-0e38-409d-aed3-7e9ada99cd13"} +{"level":"info","ts":"2024-08-16T17:14:13Z","msg":"Reconciling the resource","controller":"secret","controllerGroup":"","controllerKind":"Secret","Secret":{"name":"sh.helm.release.v1.ngf-test.v1","namespace":"nginx-gateway"},"namespace":"nginx-gateway","name":"sh.helm.release.v1.ngf-test.v1","reconcileID":"93441227-025a-4872-a605-40009789e52d"} +{"level":"info","ts":"2024-08-16T17:14:13Z","msg":"Reconciling the resource","controller":"ngf-service","controllerGroup":"","controllerKind":"Service","Service":{"name":"prom-kube-state-metrics","namespace":"prom"},"namespace":"prom","name":"prom-kube-state-metrics","reconcileID":"5a085581-0234-4756-b24f-afdbd80aee1e"} +{"level":"info","ts":"2024-08-16T17:14:13Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"prom-alertmanager-6wnl7","namespace":"prom"},"namespace":"prom","name":"prom-alertmanager-6wnl7","reconcileID":"508a1bed-29e3-4314-903b-6cc4b777e6f6"} +{"level":"info","ts":"2024-08-16T17:14:13Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"kubernetes","namespace":"default"},"namespace":"default","name":"kubernetes","reconcileID":"9fe80ccb-5057-4244-853b-ea3ad3b9479e"} +{"level":"info","ts":"2024-08-16T17:14:13Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":12} +{"level":"info","ts":"2024-08-16T17:14:13Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":13} +{"level":"info","ts":"2024-08-16T17:14:13Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":14} +{"level":"info","ts":"2024-08-16T17:14:13Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":15} +{"level":"info","ts":"2024-08-16T17:14:13Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":16} +{"level":"info","ts":"2024-08-16T17:14:13Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"kubernetes","namespace":"default"},"namespace":"default","name":"kubernetes","reconcileID":"9fe80ccb-5057-4244-853b-ea3ad3b9479e"} +{"level":"info","ts":"2024-08-16T17:14:13Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"alertmanager-cv5g9","namespace":"gmp-system"},"namespace":"gmp-system","name":"alertmanager-cv5g9","reconcileID":"24adb262-6f7e-4edf-85c9-10d3a9c42d5c"} +{"level":"info","ts":"2024-08-16T17:14:13Z","msg":"Upserted the resource","controller":"secret","controllerGroup":"","controllerKind":"Secret","Secret":{"name":"sh.helm.release.v1.ngf-test.v1","namespace":"nginx-gateway"},"namespace":"nginx-gateway","name":"sh.helm.release.v1.ngf-test.v1","reconcileID":"93441227-025a-4872-a605-40009789e52d"} +{"level":"info","ts":"2024-08-16T17:14:13Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"alertmanager-cv5g9","namespace":"gmp-system"},"namespace":"gmp-system","name":"alertmanager-cv5g9","reconcileID":"24adb262-6f7e-4edf-85c9-10d3a9c42d5c"} +{"level":"info","ts":"2024-08-16T17:14:13Z","msg":"Upserted the resource","controller":"user-service","controllerGroup":"","controllerKind":"Service","Service":{"name":"metrics-server","namespace":"kube-system"},"namespace":"kube-system","name":"metrics-server","reconcileID":"fc185867-53b6-4329-b3af-8b226dcb67be"} +{"level":"info","ts":"2024-08-16T17:14:13Z","msg":"Upserted the resource","controller":"ngf-service","controllerGroup":"","controllerKind":"Service","Service":{"name":"prom-kube-state-metrics","namespace":"prom"},"namespace":"prom","name":"prom-kube-state-metrics","reconcileID":"5a085581-0234-4756-b24f-afdbd80aee1e"} +{"level":"info","ts":"2024-08-16T17:14:13Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":17} +{"level":"info","ts":"2024-08-16T17:14:13Z","msg":"Reconciling the resource","controller":"user-service","controllerGroup":"","controllerKind":"Service","Service":{"name":"prom-alertmanager","namespace":"prom"},"namespace":"prom","name":"prom-alertmanager","reconcileID":"64112359-3b6a-4b3c-8f1c-7f5de7a5016b"} +{"level":"info","ts":"2024-08-16T17:14:13Z","msg":"Upserted the resource","controller":"user-service","controllerGroup":"","controllerKind":"Service","Service":{"name":"prom-alertmanager","namespace":"prom"},"namespace":"prom","name":"prom-alertmanager","reconcileID":"64112359-3b6a-4b3c-8f1c-7f5de7a5016b"} +{"level":"info","ts":"2024-08-16T17:14:13Z","msg":"Reconciling the resource","controller":"ngf-service","controllerGroup":"","controllerKind":"Service","Service":{"name":"prom-prometheus-node-exporter","namespace":"prom"},"namespace":"prom","name":"prom-prometheus-node-exporter","reconcileID":"9f12073f-781a-4a3e-8195-a6a617d6d478"} +{"level":"info","ts":"2024-08-16T17:14:13Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"gmp-operator-4psxp","namespace":"gmp-system"},"namespace":"gmp-system","name":"gmp-operator-4psxp","reconcileID":"0fd67363-ad48-4f1d-92d9-ff86e903fdc9"} +{"level":"info","ts":"2024-08-16T17:14:13Z","msg":"Reconciling the resource","controller":"user-service","controllerGroup":"","controllerKind":"Service","Service":{"name":"prom-prometheus-server","namespace":"prom"},"namespace":"prom","name":"prom-prometheus-server","reconcileID":"25de4c0e-c325-40d9-8a82-e4db91caa1a2"} +{"level":"info","ts":"2024-08-16T17:14:13Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":18} +{"level":"info","ts":"2024-08-16T17:14:13Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":19} +{"level":"info","ts":"2024-08-16T17:14:13Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":20} +{"level":"info","ts":"2024-08-16T17:14:13Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:13Z","msg":"Upserted the resource","controller":"user-service","controllerGroup":"","controllerKind":"Service","Service":{"name":"prom-prometheus-server","namespace":"prom"},"namespace":"prom","name":"prom-prometheus-server","reconcileID":"25de4c0e-c325-40d9-8a82-e4db91caa1a2"} +{"level":"info","ts":"2024-08-16T17:14:13Z","msg":"Reconciling the resource","controller":"user-service","controllerGroup":"","controllerKind":"Service","Service":{"name":"gmp-operator","namespace":"gmp-system"},"namespace":"gmp-system","name":"gmp-operator","reconcileID":"c3f8179f-181e-4398-b1e2-571e043ad066"} +{"level":"info","ts":"2024-08-16T17:14:13Z","msg":"Upserted the resource","controller":"ngf-service","controllerGroup":"","controllerKind":"Service","Service":{"name":"prom-prometheus-node-exporter","namespace":"prom"},"namespace":"prom","name":"prom-prometheus-node-exporter","reconcileID":"9f12073f-781a-4a3e-8195-a6a617d6d478"} +{"level":"info","ts":"2024-08-16T17:14:13Z","msg":"Reconciling the resource","controller":"ngf-service","controllerGroup":"","controllerKind":"Service","Service":{"name":"prom-prometheus-pushgateway","namespace":"prom"},"namespace":"prom","name":"prom-prometheus-pushgateway","reconcileID":"6580ca81-3a72-4014-8d87-4b346a00ff70"} +{"level":"info","ts":"2024-08-16T17:14:13Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"gmp-operator-4psxp","namespace":"gmp-system"},"namespace":"gmp-system","name":"gmp-operator-4psxp","reconcileID":"0fd67363-ad48-4f1d-92d9-ff86e903fdc9"} +{"level":"info","ts":"2024-08-16T17:14:13Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"default-http-backend-q2b66","namespace":"kube-system"},"namespace":"kube-system","name":"default-http-backend-q2b66","reconcileID":"466354fa-7296-47f5-9f6a-816677b1afb3"} +{"level":"info","ts":"2024-08-16T17:14:13Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:13Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":21} +{"level":"info","ts":"2024-08-16T17:14:13Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":22} +{"level":"info","ts":"2024-08-16T17:14:13Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":23} +{"level":"info","ts":"2024-08-16T17:14:13Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":24} +{"level":"info","ts":"2024-08-16T17:14:13Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"default-http-backend-q2b66","namespace":"kube-system"},"namespace":"kube-system","name":"default-http-backend-q2b66","reconcileID":"466354fa-7296-47f5-9f6a-816677b1afb3"} +{"level":"info","ts":"2024-08-16T17:14:13Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"kube-dns-67zmm","namespace":"kube-system"},"namespace":"kube-system","name":"kube-dns-67zmm","reconcileID":"fec2401c-242c-47ff-b16e-ac8098a81764"} +{"level":"info","ts":"2024-08-16T17:14:13Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:13Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"kube-dns-67zmm","namespace":"kube-system"},"namespace":"kube-system","name":"kube-dns-67zmm","reconcileID":"fec2401c-242c-47ff-b16e-ac8098a81764"} +{"level":"info","ts":"2024-08-16T17:14:13Z","msg":"Upserted the resource","controller":"user-service","controllerGroup":"","controllerKind":"Service","Service":{"name":"gmp-operator","namespace":"gmp-system"},"namespace":"gmp-system","name":"gmp-operator","reconcileID":"c3f8179f-181e-4398-b1e2-571e043ad066"} +{"level":"info","ts":"2024-08-16T17:14:13Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"prom-alertmanager-headless-kw2l8","namespace":"prom"},"namespace":"prom","name":"prom-alertmanager-headless-kw2l8","reconcileID":"17edc546-3622-41cd-94c3-135995241685"} +{"level":"info","ts":"2024-08-16T17:14:13Z","msg":"Upserted the resource","controller":"ngf-service","controllerGroup":"","controllerKind":"Service","Service":{"name":"prom-prometheus-pushgateway","namespace":"prom"},"namespace":"prom","name":"prom-prometheus-pushgateway","reconcileID":"6580ca81-3a72-4014-8d87-4b346a00ff70"} +{"level":"info","ts":"2024-08-16T17:14:13Z","msg":"Reconciling the resource","controller":"user-service","controllerGroup":"","controllerKind":"Service","Service":{"name":"alertmanager","namespace":"gmp-system"},"namespace":"gmp-system","name":"alertmanager","reconcileID":"acd55d8c-af5c-41bc-b8ac-8c1259b9941e"} +{"level":"info","ts":"2024-08-16T17:14:13Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":25} +{"level":"info","ts":"2024-08-16T17:14:13Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":26} +{"level":"info","ts":"2024-08-16T17:14:13Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"prom-alertmanager-headless-kw2l8","namespace":"prom"},"namespace":"prom","name":"prom-alertmanager-headless-kw2l8","reconcileID":"17edc546-3622-41cd-94c3-135995241685"} +{"level":"info","ts":"2024-08-16T17:14:13Z","msg":"Upserted the resource","controller":"user-service","controllerGroup":"","controllerKind":"Service","Service":{"name":"alertmanager","namespace":"gmp-system"},"namespace":"gmp-system","name":"alertmanager","reconcileID":"acd55d8c-af5c-41bc-b8ac-8c1259b9941e"} +{"level":"info","ts":"2024-08-16T17:14:13Z","msg":"Reconciling the resource","controller":"ngf-service","controllerGroup":"","controllerKind":"Service","Service":{"name":"kubernetes","namespace":"default"},"namespace":"default","name":"kubernetes","reconcileID":"efc91281-7214-4989-acef-b6f75bac71de"} +{"level":"info","ts":"2024-08-16T17:14:13Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"prom-kube-state-metrics-wzdbg","namespace":"prom"},"namespace":"prom","name":"prom-kube-state-metrics-wzdbg","reconcileID":"f4ad428b-a8bf-4c39-a08b-9986a08534f9"} +{"level":"info","ts":"2024-08-16T17:14:13Z","msg":"Reconciling the resource","controller":"user-service","controllerGroup":"","controllerKind":"Service","Service":{"name":"kube-dns","namespace":"kube-system"},"namespace":"kube-system","name":"kube-dns","reconcileID":"1e1ebf4f-9207-4432-838a-bb3b4b5aa1db"} +{"level":"info","ts":"2024-08-16T17:14:13Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:13Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":27} +{"level":"info","ts":"2024-08-16T17:14:13Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":28} +{"level":"info","ts":"2024-08-16T17:14:13Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":29} +{"level":"info","ts":"2024-08-16T17:14:13Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":30} +{"level":"info","ts":"2024-08-16T17:14:13Z","msg":"Upserted the resource","controller":"user-service","controllerGroup":"","controllerKind":"Service","Service":{"name":"kube-dns","namespace":"kube-system"},"namespace":"kube-system","name":"kube-dns","reconcileID":"1e1ebf4f-9207-4432-838a-bb3b4b5aa1db"} +{"level":"info","ts":"2024-08-16T17:14:13Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"prom-kube-state-metrics-wzdbg","namespace":"prom"},"namespace":"prom","name":"prom-kube-state-metrics-wzdbg","reconcileID":"f4ad428b-a8bf-4c39-a08b-9986a08534f9"} +{"level":"info","ts":"2024-08-16T17:14:13Z","msg":"Reconciling the resource","controller":"user-service","controllerGroup":"","controllerKind":"Service","Service":{"name":"ngf-test-nginx-gateway-fabric","namespace":"nginx-gateway"},"namespace":"nginx-gateway","name":"ngf-test-nginx-gateway-fabric","reconcileID":"ff713b4b-1eac-4560-b89b-12bdd0124501"} +{"level":"info","ts":"2024-08-16T17:14:13Z","msg":"Upserted the resource","controller":"user-service","controllerGroup":"","controllerKind":"Service","Service":{"name":"ngf-test-nginx-gateway-fabric","namespace":"nginx-gateway"},"namespace":"nginx-gateway","name":"ngf-test-nginx-gateway-fabric","reconcileID":"ff713b4b-1eac-4560-b89b-12bdd0124501"} +{"level":"info","ts":"2024-08-16T17:14:13Z","msg":"Upserted the resource","controller":"ngf-service","controllerGroup":"","controllerKind":"Service","Service":{"name":"kubernetes","namespace":"default"},"namespace":"default","name":"kubernetes","reconcileID":"efc91281-7214-4989-acef-b6f75bac71de"} +{"level":"info","ts":"2024-08-16T17:14:13Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"prom-prometheus-pushgateway-xhvr2","namespace":"prom"},"namespace":"prom","name":"prom-prometheus-pushgateway-xhvr2","reconcileID":"cd6bf305-1a6a-437b-929d-fe3e7e79bb38"} +{"level":"info","ts":"2024-08-16T17:14:13Z","msg":"Reconciling the resource","controller":"user-service","controllerGroup":"","controllerKind":"Service","Service":{"name":"prom-alertmanager-headless","namespace":"prom"},"namespace":"prom","name":"prom-alertmanager-headless","reconcileID":"7456c825-3972-4acf-a9b1-a3fe85f40d35"} +{"level":"info","ts":"2024-08-16T17:14:13Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:13Z","msg":"Reconciling the resource","controller":"ngf-service","controllerGroup":"","controllerKind":"Service","Service":{"name":"alertmanager","namespace":"gmp-system"},"namespace":"gmp-system","name":"alertmanager","reconcileID":"0c4d410c-6cdb-44eb-abef-8986ec391b1f"} +{"level":"info","ts":"2024-08-16T17:14:13Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":31} +{"level":"info","ts":"2024-08-16T17:14:13Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":32} +{"level":"info","ts":"2024-08-16T17:14:13Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":33} +{"level":"info","ts":"2024-08-16T17:14:13Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"prom-prometheus-pushgateway-xhvr2","namespace":"prom"},"namespace":"prom","name":"prom-prometheus-pushgateway-xhvr2","reconcileID":"cd6bf305-1a6a-437b-929d-fe3e7e79bb38"} +{"level":"info","ts":"2024-08-16T17:14:13Z","msg":"Upserted the resource","controller":"ngf-service","controllerGroup":"","controllerKind":"Service","Service":{"name":"alertmanager","namespace":"gmp-system"},"namespace":"gmp-system","name":"alertmanager","reconcileID":"0c4d410c-6cdb-44eb-abef-8986ec391b1f"} +{"level":"info","ts":"2024-08-16T17:14:13Z","msg":"Upserted the resource","controller":"user-service","controllerGroup":"","controllerKind":"Service","Service":{"name":"prom-alertmanager-headless","namespace":"prom"},"namespace":"prom","name":"prom-alertmanager-headless","reconcileID":"7456c825-3972-4acf-a9b1-a3fe85f40d35"} +{"level":"info","ts":"2024-08-16T17:14:13Z","msg":"Reconciling the resource","controller":"ngf-service","controllerGroup":"","controllerKind":"Service","Service":{"name":"metrics-server","namespace":"kube-system"},"namespace":"kube-system","name":"metrics-server","reconcileID":"2055d012-a49c-4507-a4de-a2d84f35fbe1"} +{"level":"info","ts":"2024-08-16T17:14:13Z","msg":"Reconciling the resource","controller":"user-service","controllerGroup":"","controllerKind":"Service","Service":{"name":"prom-kube-state-metrics","namespace":"prom"},"namespace":"prom","name":"prom-kube-state-metrics","reconcileID":"be0e426c-e3a0-4b8e-b537-5be79c9bc8e9"} +{"level":"info","ts":"2024-08-16T17:14:13Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"prom-prometheus-node-exporter-zjnmg","namespace":"prom"},"namespace":"prom","name":"prom-prometheus-node-exporter-zjnmg","reconcileID":"402716a0-bdf2-4271-98e1-6a0890306fdd"} +{"level":"info","ts":"2024-08-16T17:14:13Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":34} +{"level":"info","ts":"2024-08-16T17:14:13Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":35} +{"level":"info","ts":"2024-08-16T17:14:13Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":36} +{"level":"info","ts":"2024-08-16T17:14:13Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":37} +{"level":"info","ts":"2024-08-16T17:14:13Z","msg":"Upserted the resource","controller":"ngf-service","controllerGroup":"","controllerKind":"Service","Service":{"name":"metrics-server","namespace":"kube-system"},"namespace":"kube-system","name":"metrics-server","reconcileID":"2055d012-a49c-4507-a4de-a2d84f35fbe1"} +{"level":"info","ts":"2024-08-16T17:14:13Z","msg":"Upserted the resource","controller":"user-service","controllerGroup":"","controllerKind":"Service","Service":{"name":"prom-kube-state-metrics","namespace":"prom"},"namespace":"prom","name":"prom-kube-state-metrics","reconcileID":"be0e426c-e3a0-4b8e-b537-5be79c9bc8e9"} +{"level":"info","ts":"2024-08-16T17:14:13Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"prom-prometheus-node-exporter-zjnmg","namespace":"prom"},"namespace":"prom","name":"prom-prometheus-node-exporter-zjnmg","reconcileID":"402716a0-bdf2-4271-98e1-6a0890306fdd"} +{"level":"info","ts":"2024-08-16T17:14:13Z","msg":"Reconciling the resource","controller":"ngf-service","controllerGroup":"","controllerKind":"Service","Service":{"name":"prom-alertmanager","namespace":"prom"},"namespace":"prom","name":"prom-alertmanager","reconcileID":"e07a3775-cdb8-4f19-892c-461f0db5383b"} +{"level":"info","ts":"2024-08-16T17:14:13Z","msg":"Upserted the resource","controller":"ngf-service","controllerGroup":"","controllerKind":"Service","Service":{"name":"prom-alertmanager","namespace":"prom"},"namespace":"prom","name":"prom-alertmanager","reconcileID":"e07a3775-cdb8-4f19-892c-461f0db5383b"} +{"level":"info","ts":"2024-08-16T17:14:13Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"prom-prometheus-server-2ccxj","namespace":"prom"},"namespace":"prom","name":"prom-prometheus-server-2ccxj","reconcileID":"4cdd574f-b1b4-4182-9f4e-a9a1ea3181bf"} +{"level":"info","ts":"2024-08-16T17:14:13Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":38} +{"level":"info","ts":"2024-08-16T17:14:13Z","msg":"Reconciling the resource","controller":"user-service","controllerGroup":"","controllerKind":"Service","Service":{"name":"prom-prometheus-node-exporter","namespace":"prom"},"namespace":"prom","name":"prom-prometheus-node-exporter","reconcileID":"b883c3b6-4070-4f6b-9ffe-614204ab164b"} +{"level":"info","ts":"2024-08-16T17:14:13Z","msg":"Upserted the resource","controller":"user-service","controllerGroup":"","controllerKind":"Service","Service":{"name":"prom-prometheus-node-exporter","namespace":"prom"},"namespace":"prom","name":"prom-prometheus-node-exporter","reconcileID":"b883c3b6-4070-4f6b-9ffe-614204ab164b"} +{"level":"info","ts":"2024-08-16T17:14:13Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":39} +{"level":"info","ts":"2024-08-16T17:14:13Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":40} +{"level":"info","ts":"2024-08-16T17:14:13Z","msg":"Reconciling the resource","controller":"ngf-service","controllerGroup":"","controllerKind":"Service","Service":{"name":"prom-prometheus-server","namespace":"prom"},"namespace":"prom","name":"prom-prometheus-server","reconcileID":"f2d70235-6234-4224-9617-fbfa9b049ac3"} +{"level":"info","ts":"2024-08-16T17:14:13Z","msg":"Reconciling the resource","controller":"user-service","controllerGroup":"","controllerKind":"Service","Service":{"name":"prom-prometheus-pushgateway","namespace":"prom"},"namespace":"prom","name":"prom-prometheus-pushgateway","reconcileID":"1a75269d-8c6d-4c68-bfae-d6ad1d3597ff"} +{"level":"info","ts":"2024-08-16T17:14:13Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"prom-prometheus-server-2ccxj","namespace":"prom"},"namespace":"prom","name":"prom-prometheus-server-2ccxj","reconcileID":"4cdd574f-b1b4-4182-9f4e-a9a1ea3181bf"} +{"level":"info","ts":"2024-08-16T17:14:13Z","msg":"Upserted the resource","controller":"ngf-service","controllerGroup":"","controllerKind":"Service","Service":{"name":"prom-prometheus-server","namespace":"prom"},"namespace":"prom","name":"prom-prometheus-server","reconcileID":"f2d70235-6234-4224-9617-fbfa9b049ac3"} +{"level":"info","ts":"2024-08-16T17:14:13Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":41} +{"level":"info","ts":"2024-08-16T17:14:13Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":42} +{"level":"info","ts":"2024-08-16T17:14:13Z","msg":"Upserted the resource","controller":"user-service","controllerGroup":"","controllerKind":"Service","Service":{"name":"prom-prometheus-pushgateway","namespace":"prom"},"namespace":"prom","name":"prom-prometheus-pushgateway","reconcileID":"1a75269d-8c6d-4c68-bfae-d6ad1d3597ff"} +{"level":"info","ts":"2024-08-16T17:14:13Z","msg":"Reconciling the resource","controller":"user-service","controllerGroup":"","controllerKind":"Service","Service":{"name":"kubernetes","namespace":"default"},"namespace":"default","name":"kubernetes","reconcileID":"84589a1f-c582-462d-bc6c-237cfec07b46"} +{"level":"info","ts":"2024-08-16T17:14:13Z","msg":"Upserted the resource","controller":"user-service","controllerGroup":"","controllerKind":"Service","Service":{"name":"kubernetes","namespace":"default"},"namespace":"default","name":"kubernetes","reconcileID":"84589a1f-c582-462d-bc6c-237cfec07b46"} +{"level":"info","ts":"2024-08-16T17:14:13Z","msg":"Reconciling the resource","controller":"ngf-service","controllerGroup":"","controllerKind":"Service","Service":{"name":"gmp-operator","namespace":"gmp-system"},"namespace":"gmp-system","name":"gmp-operator","reconcileID":"1afec577-a702-46de-ac65-aaf1014f3159"} +{"level":"info","ts":"2024-08-16T17:14:13Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":43} +{"level":"info","ts":"2024-08-16T17:14:13Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":44} +{"level":"info","ts":"2024-08-16T17:14:13Z","msg":"Upserted the resource","controller":"ngf-service","controllerGroup":"","controllerKind":"Service","Service":{"name":"gmp-operator","namespace":"gmp-system"},"namespace":"gmp-system","name":"gmp-operator","reconcileID":"1afec577-a702-46de-ac65-aaf1014f3159"} +{"level":"info","ts":"2024-08-16T17:14:13Z","msg":"Reconciling the resource","controller":"ngf-service","controllerGroup":"","controllerKind":"Service","Service":{"name":"default-http-backend","namespace":"kube-system"},"namespace":"kube-system","name":"default-http-backend","reconcileID":"8161333a-9017-4e2d-a04d-c01e2cdbf83f"} +{"level":"info","ts":"2024-08-16T17:14:13Z","msg":"Upserted the resource","controller":"ngf-service","controllerGroup":"","controllerKind":"Service","Service":{"name":"default-http-backend","namespace":"kube-system"},"namespace":"kube-system","name":"default-http-backend","reconcileID":"8161333a-9017-4e2d-a04d-c01e2cdbf83f"} +{"level":"info","ts":"2024-08-16T17:14:13Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":45} +{"level":"info","ts":"2024-08-16T17:14:13Z","msg":"Starting workers","controller":"gatewayclass","controllerGroup":"gateway.networking.k8s.io","controllerKind":"GatewayClass","worker count":1} +{"level":"info","ts":"2024-08-16T17:14:13Z","msg":"Reconciling the resource","controller":"gatewayclass","controllerGroup":"gateway.networking.k8s.io","controllerKind":"GatewayClass","GatewayClass":{"name":"nginx"},"namespace":"","name":"nginx","reconcileID":"12182dfb-0056-4c7b-a161-71a5be8d32fb"} +{"level":"info","ts":"2024-08-16T17:14:13Z","msg":"Upserted the resource","controller":"gatewayclass","controllerGroup":"gateway.networking.k8s.io","controllerKind":"GatewayClass","GatewayClass":{"name":"nginx"},"namespace":"","name":"nginx","reconcileID":"12182dfb-0056-4c7b-a161-71a5be8d32fb"} +{"level":"info","ts":"2024-08-16T17:14:13Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":46} +{"level":"info","ts":"2024-08-16T17:14:13Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":1} +{"level":"info","ts":"2024-08-16T17:14:13Z","logger":"usageReporter","msg":"Starting cronjob"} +{"level":"error","ts":"2024-08-16T17:14:13Z","logger":"usageReporter","msg":"Usage reporting must be enabled when using NGINX Plus; redeploy with usage reporting enabled","error":"usage reporting not enabled","stacktrace":"github.com/nginxinc/nginx-gateway-fabric/internal/mode/static.createUsageWarningJob.func1\n\t/home/runner/work/nginx-gateway-fabric/nginx-gateway-fabric/internal/mode/static/manager.go:627\nk8s.io/apimachinery/pkg/util/wait.JitterUntilWithContext.func1\n\tpkg/mod/k8s.io/apimachinery@v0.31.0/pkg/util/wait/backoff.go:259\nk8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1\n\tpkg/mod/k8s.io/apimachinery@v0.31.0/pkg/util/wait/backoff.go:226\nk8s.io/apimachinery/pkg/util/wait.BackoffUntil\n\tpkg/mod/k8s.io/apimachinery@v0.31.0/pkg/util/wait/backoff.go:227\nk8s.io/apimachinery/pkg/util/wait.JitterUntil\n\tpkg/mod/k8s.io/apimachinery@v0.31.0/pkg/util/wait/backoff.go:204\nk8s.io/apimachinery/pkg/util/wait.JitterUntilWithContext\n\tpkg/mod/k8s.io/apimachinery@v0.31.0/pkg/util/wait/backoff.go:259\ngithub.com/nginxinc/nginx-gateway-fabric/internal/framework/runnables.(*CronJob).Start\n\t/home/runner/work/nginx-gateway-fabric/nginx-gateway-fabric/internal/framework/runnables/cronjob.go:53\nsigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1\n\tpkg/mod/sigs.k8s.io/controller-runtime@v0.19.0/pkg/manager/runnable_group.go:226"} +{"level":"info","ts":"2024-08-16T17:14:13Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":1} +{"level":"info","ts":"2024-08-16T17:14:13Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":2,"total":46} +{"level":"info","ts":"2024-08-16T17:14:13Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:13Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:13Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:13Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:13Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:13Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:13Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:13Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:13Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:13Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:13Z","msg":"Starting workers","controller":"httproute","controllerGroup":"gateway.networking.k8s.io","controllerKind":"HTTPRoute","worker count":1} +{"level":"info","ts":"2024-08-16T17:14:13Z","msg":"Starting workers","controller":"CustomResourceDefinition","controllerGroup":"apiextensions.k8s.io","controllerKind":"CustomResourceDefinition","worker count":1} +{"level":"info","ts":"2024-08-16T17:14:13Z","msg":"Starting workers","controller":"clientsettingspolicy","controllerGroup":"gateway.nginx.org","controllerKind":"ClientSettingsPolicy","worker count":1} +{"level":"info","ts":"2024-08-16T17:14:13Z","msg":"Reconciling the resource","controller":"CustomResourceDefinition","controllerGroup":"apiextensions.k8s.io","controllerKind":"CustomResourceDefinition","CustomResourceDefinition":{"name":"gatewayclasses.gateway.networking.k8s.io"},"namespace":"","name":"gatewayclasses.gateway.networking.k8s.io","reconcileID":"a100241d-588b-4312-936c-6b6eb815689c"} +{"level":"info","ts":"2024-08-16T17:14:13Z","msg":"Starting workers","controller":"gateway","controllerGroup":"gateway.networking.k8s.io","controllerKind":"Gateway","worker count":1} +{"level":"info","ts":"2024-08-16T17:14:13Z","msg":"Starting workers","controller":"namespace","controllerGroup":"","controllerKind":"Namespace","worker count":1} +{"level":"info","ts":"2024-08-16T17:14:13Z","msg":"Upserted the resource","controller":"CustomResourceDefinition","controllerGroup":"apiextensions.k8s.io","controllerKind":"CustomResourceDefinition","CustomResourceDefinition":{"name":"gatewayclasses.gateway.networking.k8s.io"},"namespace":"","name":"gatewayclasses.gateway.networking.k8s.io","reconcileID":"a100241d-588b-4312-936c-6b6eb815689c"} +{"level":"info","ts":"2024-08-16T17:14:13Z","msg":"Reconciling the resource","controller":"namespace","controllerGroup":"","controllerKind":"Namespace","Namespace":{"name":"gke-managed-cim"},"namespace":"","name":"gke-managed-cim","reconcileID":"7a3ca731-9c80-437b-883c-616c237a15fa"} +{"level":"info","ts":"2024-08-16T17:14:13Z","msg":"Reconciling the resource","controller":"CustomResourceDefinition","controllerGroup":"apiextensions.k8s.io","controllerKind":"CustomResourceDefinition","CustomResourceDefinition":{"name":"grpcroutes.gateway.networking.k8s.io"},"namespace":"","name":"grpcroutes.gateway.networking.k8s.io","reconcileID":"a31f44d6-64eb-46a2-aa84-cfcf25b4a63a"} +{"level":"info","ts":"2024-08-16T17:14:13Z","msg":"Starting workers","controller":"observabilitypolicy","controllerGroup":"gateway.nginx.org","controllerKind":"ObservabilityPolicy","worker count":1} +{"level":"info","ts":"2024-08-16T17:14:13Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:14:13Z","msg":"Starting workers","controller":"grpcroute","controllerGroup":"gateway.networking.k8s.io","controllerKind":"GRPCRoute","worker count":1} +{"level":"info","ts":"2024-08-16T17:14:13Z","msg":"Upserted the resource","controller":"namespace","controllerGroup":"","controllerKind":"Namespace","Namespace":{"name":"gke-managed-cim"},"namespace":"","name":"gke-managed-cim","reconcileID":"7a3ca731-9c80-437b-883c-616c237a15fa"} +{"level":"info","ts":"2024-08-16T17:14:13Z","msg":"Starting workers","controller":"nginxgateway","controllerGroup":"gateway.nginx.org","controllerKind":"NginxGateway","worker count":1} +{"level":"info","ts":"2024-08-16T17:14:13Z","msg":"Reconciling the resource","controller":"namespace","controllerGroup":"","controllerKind":"Namespace","Namespace":{"name":"gmp-public"},"namespace":"","name":"gmp-public","reconcileID":"259a3d98-0994-4994-8a71-6850db88228f"} +{"level":"info","ts":"2024-08-16T17:14:13Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":2} +{"level":"info","ts":"2024-08-16T17:14:13Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":3} +{"level":"info","ts":"2024-08-16T17:14:13Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":4} +{"level":"info","ts":"2024-08-16T17:14:13Z","msg":"Upserted the resource","controller":"namespace","controllerGroup":"","controllerKind":"Namespace","Namespace":{"name":"gmp-public"},"namespace":"","name":"gmp-public","reconcileID":"259a3d98-0994-4994-8a71-6850db88228f"} +{"level":"info","ts":"2024-08-16T17:14:13Z","msg":"Reconciling the resource","controller":"namespace","controllerGroup":"","controllerKind":"Namespace","Namespace":{"name":"gmp-system"},"namespace":"","name":"gmp-system","reconcileID":"9ec82695-debb-4728-abe4-fa723505ffb5"} +{"level":"info","ts":"2024-08-16T17:14:13Z","msg":"Upserted the resource","controller":"CustomResourceDefinition","controllerGroup":"apiextensions.k8s.io","controllerKind":"CustomResourceDefinition","CustomResourceDefinition":{"name":"grpcroutes.gateway.networking.k8s.io"},"namespace":"","name":"grpcroutes.gateway.networking.k8s.io","reconcileID":"a31f44d6-64eb-46a2-aa84-cfcf25b4a63a"} +{"level":"info","ts":"2024-08-16T17:14:13Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":5} +{"level":"info","ts":"2024-08-16T17:14:13Z","msg":"Upserted the resource","controller":"namespace","controllerGroup":"","controllerKind":"Namespace","Namespace":{"name":"gmp-system"},"namespace":"","name":"gmp-system","reconcileID":"9ec82695-debb-4728-abe4-fa723505ffb5"} +{"level":"info","ts":"2024-08-16T17:14:13Z","msg":"Reconciling the resource","controller":"nginxgateway","controllerGroup":"gateway.nginx.org","controllerKind":"NginxGateway","NginxGateway":{"name":"ngf-test-config","namespace":"nginx-gateway"},"namespace":"nginx-gateway","name":"ngf-test-config","reconcileID":"e33a4145-ab51-41cb-80da-3c0cd4a7a914"} +{"level":"info","ts":"2024-08-16T17:14:13Z","msg":"Reconciling the resource","controller":"namespace","controllerGroup":"","controllerKind":"Namespace","Namespace":{"name":"kube-node-lease"},"namespace":"","name":"kube-node-lease","reconcileID":"d04e8999-d5b8-4d66-bca2-91ccc821d428"} +{"level":"info","ts":"2024-08-16T17:14:13Z","msg":"Reconciling the resource","controller":"CustomResourceDefinition","controllerGroup":"apiextensions.k8s.io","controllerKind":"CustomResourceDefinition","CustomResourceDefinition":{"name":"referencegrants.gateway.networking.k8s.io"},"namespace":"","name":"referencegrants.gateway.networking.k8s.io","reconcileID":"c8a0d6d7-26a0-4922-9152-7cab92dc8243"} +{"level":"info","ts":"2024-08-16T17:14:13Z","msg":"Upserted the resource","controller":"namespace","controllerGroup":"","controllerKind":"Namespace","Namespace":{"name":"kube-node-lease"},"namespace":"","name":"kube-node-lease","reconcileID":"d04e8999-d5b8-4d66-bca2-91ccc821d428"} +{"level":"info","ts":"2024-08-16T17:14:13Z","msg":"Reconciling the resource","controller":"namespace","controllerGroup":"","controllerKind":"Namespace","Namespace":{"name":"kube-public"},"namespace":"","name":"kube-public","reconcileID":"82202259-d770-4b08-abae-ae057b6f209b"} +{"level":"info","ts":"2024-08-16T17:14:13Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":6} +{"level":"info","ts":"2024-08-16T17:14:13Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":7} +{"level":"info","ts":"2024-08-16T17:14:13Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":8} +{"level":"info","ts":"2024-08-16T17:14:13Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":9} +{"level":"info","ts":"2024-08-16T17:14:13Z","msg":"Upserted the resource","controller":"namespace","controllerGroup":"","controllerKind":"Namespace","Namespace":{"name":"kube-public"},"namespace":"","name":"kube-public","reconcileID":"82202259-d770-4b08-abae-ae057b6f209b"} +{"level":"info","ts":"2024-08-16T17:14:13Z","msg":"Upserted the resource","controller":"nginxgateway","controllerGroup":"gateway.nginx.org","controllerKind":"NginxGateway","NginxGateway":{"name":"ngf-test-config","namespace":"nginx-gateway"},"namespace":"nginx-gateway","name":"ngf-test-config","reconcileID":"e33a4145-ab51-41cb-80da-3c0cd4a7a914"} +{"level":"info","ts":"2024-08-16T17:14:13Z","msg":"Reconciling the resource","controller":"namespace","controllerGroup":"","controllerKind":"Namespace","Namespace":{"name":"nginx-gateway"},"namespace":"","name":"nginx-gateway","reconcileID":"1e2a0833-6f7e-46ba-bcc6-74d05fdd1986"} +{"level":"info","ts":"2024-08-16T17:14:13Z","msg":"Upserted the resource","controller":"namespace","controllerGroup":"","controllerKind":"Namespace","Namespace":{"name":"nginx-gateway"},"namespace":"","name":"nginx-gateway","reconcileID":"1e2a0833-6f7e-46ba-bcc6-74d05fdd1986"} +{"level":"info","ts":"2024-08-16T17:14:13Z","msg":"Upserted the resource","controller":"CustomResourceDefinition","controllerGroup":"apiextensions.k8s.io","controllerKind":"CustomResourceDefinition","CustomResourceDefinition":{"name":"referencegrants.gateway.networking.k8s.io"},"namespace":"","name":"referencegrants.gateway.networking.k8s.io","reconcileID":"c8a0d6d7-26a0-4922-9152-7cab92dc8243"} +{"level":"info","ts":"2024-08-16T17:14:13Z","msg":"Reconciling the resource","controller":"namespace","controllerGroup":"","controllerKind":"Namespace","Namespace":{"name":"default"},"namespace":"","name":"default","reconcileID":"7314e436-47f5-4097-9846-b93c1ff07e69"} +{"level":"info","ts":"2024-08-16T17:14:13Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":10} +{"level":"info","ts":"2024-08-16T17:14:13Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":11} +{"level":"info","ts":"2024-08-16T17:14:13Z","msg":"Upserted the resource","controller":"namespace","controllerGroup":"","controllerKind":"Namespace","Namespace":{"name":"default"},"namespace":"","name":"default","reconcileID":"7314e436-47f5-4097-9846-b93c1ff07e69"} +{"level":"info","ts":"2024-08-16T17:14:13Z","msg":"Reconciling the resource","controller":"namespace","controllerGroup":"","controllerKind":"Namespace","Namespace":{"name":"gke-managed-system"},"namespace":"","name":"gke-managed-system","reconcileID":"d16d06d0-bf40-4fc9-8294-0e0f07a5369c"} +{"level":"info","ts":"2024-08-16T17:14:13Z","msg":"Reconciling the resource","controller":"CustomResourceDefinition","controllerGroup":"apiextensions.k8s.io","controllerKind":"CustomResourceDefinition","CustomResourceDefinition":{"name":"gateways.gateway.networking.k8s.io"},"namespace":"","name":"gateways.gateway.networking.k8s.io","reconcileID":"d933d54c-5b17-4c22-988b-c25058f7d1f1"} +{"level":"info","ts":"2024-08-16T17:14:13Z","msg":"Upserted the resource","controller":"namespace","controllerGroup":"","controllerKind":"Namespace","Namespace":{"name":"gke-managed-system"},"namespace":"","name":"gke-managed-system","reconcileID":"d16d06d0-bf40-4fc9-8294-0e0f07a5369c"} +{"level":"info","ts":"2024-08-16T17:14:13Z","msg":"Reconciling the resource","controller":"namespace","controllerGroup":"","controllerKind":"Namespace","Namespace":{"name":"kube-system"},"namespace":"","name":"kube-system","reconcileID":"df7931df-9427-40b6-910f-354e57049c88"} +{"level":"info","ts":"2024-08-16T17:14:13Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":12} +{"level":"info","ts":"2024-08-16T17:14:13Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":13} +{"level":"info","ts":"2024-08-16T17:14:13Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":14} +{"level":"info","ts":"2024-08-16T17:14:13Z","msg":"Upserted the resource","controller":"namespace","controllerGroup":"","controllerKind":"Namespace","Namespace":{"name":"kube-system"},"namespace":"","name":"kube-system","reconcileID":"df7931df-9427-40b6-910f-354e57049c88"} +{"level":"info","ts":"2024-08-16T17:14:13Z","msg":"Upserted the resource","controller":"CustomResourceDefinition","controllerGroup":"apiextensions.k8s.io","controllerKind":"CustomResourceDefinition","CustomResourceDefinition":{"name":"gateways.gateway.networking.k8s.io"},"namespace":"","name":"gateways.gateway.networking.k8s.io","reconcileID":"d933d54c-5b17-4c22-988b-c25058f7d1f1"} +{"level":"info","ts":"2024-08-16T17:14:13Z","msg":"Reconciling the resource","controller":"CustomResourceDefinition","controllerGroup":"apiextensions.k8s.io","controllerKind":"CustomResourceDefinition","CustomResourceDefinition":{"name":"httproutes.gateway.networking.k8s.io"},"namespace":"","name":"httproutes.gateway.networking.k8s.io","reconcileID":"2c04fb70-d289-417b-8a0d-eb67c6652945"} +{"level":"info","ts":"2024-08-16T17:14:13Z","msg":"Upserted the resource","controller":"CustomResourceDefinition","controllerGroup":"apiextensions.k8s.io","controllerKind":"CustomResourceDefinition","CustomResourceDefinition":{"name":"httproutes.gateway.networking.k8s.io"},"namespace":"","name":"httproutes.gateway.networking.k8s.io","reconcileID":"2c04fb70-d289-417b-8a0d-eb67c6652945"} +{"level":"info","ts":"2024-08-16T17:14:13Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":15} +{"level":"info","ts":"2024-08-16T17:14:13Z","msg":"Reconciling the resource","controller":"namespace","controllerGroup":"","controllerKind":"Namespace","Namespace":{"name":"prom"},"namespace":"","name":"prom","reconcileID":"72755646-926d-4c98-8b3a-40aaa202e554"} +{"level":"info","ts":"2024-08-16T17:14:13Z","msg":"Upserted the resource","controller":"namespace","controllerGroup":"","controllerKind":"Namespace","Namespace":{"name":"prom"},"namespace":"","name":"prom","reconcileID":"72755646-926d-4c98-8b3a-40aaa202e554"} +{"level":"info","ts":"2024-08-16T17:14:13Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":16} +{"level":"info","ts":"2024-08-16T17:14:13Z","msg":"Starting workers","controller":"referencegrant","controllerGroup":"gateway.networking.k8s.io","controllerKind":"ReferenceGrant","worker count":1} +{"level":"info","ts":"2024-08-16T17:14:13Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":2} +{"level":"info","ts":"2024-08-16T17:14:13Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":2} +{"level":"info","ts":"2024-08-16T17:14:13Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":3,"total":16} +{"level":"info","ts":"2024-08-16T17:14:13Z","msg":"Reconciling the resource","controller":"nginxgateway","controllerGroup":"gateway.nginx.org","controllerKind":"NginxGateway","NginxGateway":{"name":"ngf-test-config","namespace":"nginx-gateway"},"namespace":"nginx-gateway","name":"ngf-test-config","reconcileID":"991dd067-4424-4269-bb70-1169902ca19a"} +{"level":"info","ts":"2024-08-16T17:14:13Z","msg":"Upserted the resource","controller":"nginxgateway","controllerGroup":"gateway.nginx.org","controllerKind":"NginxGateway","NginxGateway":{"name":"ngf-test-config","namespace":"nginx-gateway"},"namespace":"nginx-gateway","name":"ngf-test-config","reconcileID":"991dd067-4424-4269-bb70-1169902ca19a"} +{"level":"info","ts":"2024-08-16T17:14:13Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:14:13Z","logger":"eventLoop.eventHandler","msg":"Reconfigured control plane.","batchID":3} +{"level":"info","ts":"2024-08-16T17:14:13Z","logger":"eventLoop.eventHandler","msg":"Handling events didn't result into NGINX configuration changes","batchID":3} +{"level":"info","ts":"2024-08-16T17:14:13Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":3} +{"level":"info","ts":"2024-08-16T17:14:13Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":4,"total":1} +{"level":"info","ts":"2024-08-16T17:14:13Z","logger":"eventLoop.eventHandler","msg":"Reconfigured control plane.","batchID":4} +{"level":"info","ts":"2024-08-16T17:14:13Z","logger":"eventLoop.eventHandler","msg":"Handling events didn't result into NGINX configuration changes","batchID":4} +{"level":"info","ts":"2024-08-16T17:14:13Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":4} +{"level":"info","ts":"2024-08-16T17:14:15Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"ngf-test-nginx-gateway-fabric-l4h9k","namespace":"nginx-gateway"},"namespace":"nginx-gateway","name":"ngf-test-nginx-gateway-fabric-l4h9k","reconcileID":"60d433d7-e3dc-4f5a-95ff-6b8b5329b534"} +{"level":"info","ts":"2024-08-16T17:14:15Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"ngf-test-nginx-gateway-fabric-l4h9k","namespace":"nginx-gateway"},"namespace":"nginx-gateway","name":"ngf-test-nginx-gateway-fabric-l4h9k","reconcileID":"60d433d7-e3dc-4f5a-95ff-6b8b5329b534"} +{"level":"info","ts":"2024-08-16T17:14:15Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:14:15Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":5,"total":1} +{"level":"info","ts":"2024-08-16T17:14:15Z","logger":"eventLoop.eventHandler","msg":"Handling events didn't result into NGINX configuration changes","batchID":5} +{"level":"info","ts":"2024-08-16T17:14:15Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":5} +{"level":"info","ts":"2024-08-16T17:14:45Z","msg":"Reconciling the resource","controller":"ngf-service","controllerGroup":"","controllerKind":"Service","Service":{"name":"ngf-test-nginx-gateway-fabric","namespace":"nginx-gateway"},"namespace":"nginx-gateway","name":"ngf-test-nginx-gateway-fabric","reconcileID":"c1fd0a3c-6efc-41a7-b4fe-8ca4930abadc"} +{"level":"info","ts":"2024-08-16T17:14:45Z","msg":"Upserted the resource","controller":"ngf-service","controllerGroup":"","controllerKind":"Service","Service":{"name":"ngf-test-nginx-gateway-fabric","namespace":"nginx-gateway"},"namespace":"nginx-gateway","name":"ngf-test-nginx-gateway-fabric","reconcileID":"c1fd0a3c-6efc-41a7-b4fe-8ca4930abadc"} +{"level":"info","ts":"2024-08-16T17:14:45Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:14:45Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":6,"total":1} +{"level":"info","ts":"2024-08-16T17:14:45Z","logger":"eventLoop.eventHandler","msg":"Handling events didn't result into NGINX configuration changes","batchID":6} +{"level":"info","ts":"2024-08-16T17:14:45Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":6} +{"level":"info","ts":"2024-08-16T17:14:47Z","msg":"Reconciling the resource","controller":"secret","controllerGroup":"","controllerKind":"Secret","Secret":{"name":"sh.helm.release.v1.ngf-test.v1","namespace":"nginx-gateway"},"namespace":"nginx-gateway","name":"sh.helm.release.v1.ngf-test.v1","reconcileID":"8f13c148-ac1c-4492-9f58-d7745e0290b8"} +{"level":"info","ts":"2024-08-16T17:14:47Z","msg":"Upserted the resource","controller":"secret","controllerGroup":"","controllerKind":"Secret","Secret":{"name":"sh.helm.release.v1.ngf-test.v1","namespace":"nginx-gateway"},"namespace":"nginx-gateway","name":"sh.helm.release.v1.ngf-test.v1","reconcileID":"8f13c148-ac1c-4492-9f58-d7745e0290b8"} +{"level":"info","ts":"2024-08-16T17:14:47Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:14:47Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":7,"total":1} +{"level":"info","ts":"2024-08-16T17:14:47Z","logger":"eventLoop.eventHandler","msg":"Handling events didn't result into NGINX configuration changes","batchID":7} +{"level":"info","ts":"2024-08-16T17:14:47Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":7} +{"level":"info","ts":"2024-08-16T17:14:47Z","msg":"Reconciling the resource","controller":"namespace","controllerGroup":"","controllerKind":"Namespace","Namespace":{"name":"scale"},"namespace":"","name":"scale","reconcileID":"7cfa4ead-62d2-4632-b226-5e7ecfa984b1"} +{"level":"info","ts":"2024-08-16T17:14:47Z","msg":"Upserted the resource","controller":"namespace","controllerGroup":"","controllerKind":"Namespace","Namespace":{"name":"scale"},"namespace":"","name":"scale","reconcileID":"7cfa4ead-62d2-4632-b226-5e7ecfa984b1"} +{"level":"info","ts":"2024-08-16T17:14:47Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:14:47Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":8,"total":1} +{"level":"info","ts":"2024-08-16T17:14:47Z","logger":"eventLoop.eventHandler","msg":"Handling events didn't result into NGINX configuration changes","batchID":8} +{"level":"info","ts":"2024-08-16T17:14:47Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":8} +{"level":"info","ts":"2024-08-16T17:14:47Z","msg":"Reconciling the resource","controller":"gateway","controllerGroup":"gateway.networking.k8s.io","controllerKind":"Gateway","Gateway":{"name":"gateway","namespace":"scale"},"namespace":"scale","name":"gateway","reconcileID":"d73d6a45-97c2-4b30-b596-00c2f764c034"} +{"level":"info","ts":"2024-08-16T17:14:47Z","msg":"Upserted the resource","controller":"gateway","controllerGroup":"gateway.networking.k8s.io","controllerKind":"Gateway","Gateway":{"name":"gateway","namespace":"scale"},"namespace":"scale","name":"gateway","reconcileID":"d73d6a45-97c2-4b30-b596-00c2f764c034"} +{"level":"info","ts":"2024-08-16T17:14:47Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:14:47Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":9,"total":1} +{"level":"info","ts":"2024-08-16T17:14:47Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:47Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:47Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:47Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:47Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:47Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:47Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:47Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:47Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:47Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:47Z","msg":"Reconciling the resource","controller":"httproute","controllerGroup":"gateway.networking.k8s.io","controllerKind":"HTTPRoute","HTTPRoute":{"name":"route","namespace":"scale"},"namespace":"scale","name":"route","reconcileID":"2d00d34d-3aab-4d34-b2a3-fd91063949d3"} +{"level":"info","ts":"2024-08-16T17:14:47Z","msg":"Upserted the resource","controller":"httproute","controllerGroup":"gateway.networking.k8s.io","controllerKind":"HTTPRoute","HTTPRoute":{"name":"route","namespace":"scale"},"namespace":"scale","name":"route","reconcileID":"2d00d34d-3aab-4d34-b2a3-fd91063949d3"} +{"level":"info","ts":"2024-08-16T17:14:47Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:14:47Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":9} +{"level":"info","ts":"2024-08-16T17:14:47Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":9} +{"level":"info","ts":"2024-08-16T17:14:47Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":10,"total":1} +{"level":"info","ts":"2024-08-16T17:14:47Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:47Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:47Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:47Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:47Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:47Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:47Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:47Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:47Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:47Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:47Z","msg":"Reconciling the resource","controller":"ngf-service","controllerGroup":"","controllerKind":"Service","Service":{"name":"backend","namespace":"scale"},"namespace":"scale","name":"backend","reconcileID":"fc645e64-6e3f-4136-8b4b-f6c7976be447"} +{"level":"info","ts":"2024-08-16T17:14:47Z","msg":"Reconciling the resource","controller":"user-service","controllerGroup":"","controllerKind":"Service","Service":{"name":"backend","namespace":"scale"},"namespace":"scale","name":"backend","reconcileID":"3f617b0a-62a0-4290-8929-373fea079209"} +{"level":"info","ts":"2024-08-16T17:14:47Z","msg":"Upserted the resource","controller":"ngf-service","controllerGroup":"","controllerKind":"Service","Service":{"name":"backend","namespace":"scale"},"namespace":"scale","name":"backend","reconcileID":"fc645e64-6e3f-4136-8b4b-f6c7976be447"} +{"level":"info","ts":"2024-08-16T17:14:47Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:14:47Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":2} +{"level":"info","ts":"2024-08-16T17:14:47Z","msg":"Upserted the resource","controller":"user-service","controllerGroup":"","controllerKind":"Service","Service":{"name":"backend","namespace":"scale"},"namespace":"scale","name":"backend","reconcileID":"3f617b0a-62a0-4290-8929-373fea079209"} +{"level":"info","ts":"2024-08-16T17:14:47Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-rqx4s","namespace":"scale"},"namespace":"scale","name":"backend-rqx4s","reconcileID":"3c642b00-406b-473f-b126-593d6228a0bb"} +{"level":"info","ts":"2024-08-16T17:14:47Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-rqx4s","namespace":"scale"},"namespace":"scale","name":"backend-rqx4s","reconcileID":"3c642b00-406b-473f-b126-593d6228a0bb"} +{"level":"info","ts":"2024-08-16T17:14:47Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":3} +{"level":"info","ts":"2024-08-16T17:14:47Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":10} +{"level":"info","ts":"2024-08-16T17:14:47Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":10} +{"level":"info","ts":"2024-08-16T17:14:47Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":11,"total":3} +{"level":"info","ts":"2024-08-16T17:14:47Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:47Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:47Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:47Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:47Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:47Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:47Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:47Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:47Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:47Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:47Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":11} +{"level":"info","ts":"2024-08-16T17:14:47Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":11} +{"level":"info","ts":"2024-08-16T17:14:48Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-rqx4s","namespace":"scale"},"namespace":"scale","name":"backend-rqx4s","reconcileID":"2ced5d98-bc99-43f0-8f2e-95261e2c939b"} +{"level":"info","ts":"2024-08-16T17:14:48Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-rqx4s","namespace":"scale"},"namespace":"scale","name":"backend-rqx4s","reconcileID":"2ced5d98-bc99-43f0-8f2e-95261e2c939b"} +{"level":"info","ts":"2024-08-16T17:14:48Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:14:48Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":12,"total":1} +{"level":"info","ts":"2024-08-16T17:14:48Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:48Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:48Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:48Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:48Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:48Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:48Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:48Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:48Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:48Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:48Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":12} +{"level":"info","ts":"2024-08-16T17:14:48Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":12} +{"level":"info","ts":"2024-08-16T17:14:49Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-rqx4s","namespace":"scale"},"namespace":"scale","name":"backend-rqx4s","reconcileID":"721d6eac-60da-4c07-b1a4-1a93534226a0"} +{"level":"info","ts":"2024-08-16T17:14:49Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-rqx4s","namespace":"scale"},"namespace":"scale","name":"backend-rqx4s","reconcileID":"721d6eac-60da-4c07-b1a4-1a93534226a0"} +{"level":"info","ts":"2024-08-16T17:14:49Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:14:49Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":13,"total":1} +{"level":"info","ts":"2024-08-16T17:14:49Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:49Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:49Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:49Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:49Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:49Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:49Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:49Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:49Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:49Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:49Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":13} +{"level":"info","ts":"2024-08-16T17:14:49Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":13} +{"level":"info","ts":"2024-08-16T17:14:49Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-rqx4s","namespace":"scale"},"namespace":"scale","name":"backend-rqx4s","reconcileID":"224e7af1-63b7-4471-a870-33e513109ab7"} +{"level":"info","ts":"2024-08-16T17:14:49Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-rqx4s","namespace":"scale"},"namespace":"scale","name":"backend-rqx4s","reconcileID":"224e7af1-63b7-4471-a870-33e513109ab7"} +{"level":"info","ts":"2024-08-16T17:14:49Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:14:49Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":14,"total":1} +{"level":"info","ts":"2024-08-16T17:14:49Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:49Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:49Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:49Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:49Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:49Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:49Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:49Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:49Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:49Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:49Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":14} +{"level":"info","ts":"2024-08-16T17:14:49Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":14} +{"level":"info","ts":"2024-08-16T17:14:49Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-rqx4s","namespace":"scale"},"namespace":"scale","name":"backend-rqx4s","reconcileID":"880f09ab-6b8c-4aed-aec4-b404d4f2b036"} +{"level":"info","ts":"2024-08-16T17:14:49Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-rqx4s","namespace":"scale"},"namespace":"scale","name":"backend-rqx4s","reconcileID":"880f09ab-6b8c-4aed-aec4-b404d4f2b036"} +{"level":"info","ts":"2024-08-16T17:14:49Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:14:49Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":15,"total":1} +{"level":"info","ts":"2024-08-16T17:14:49Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:49Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:49Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:49Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:49Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:49Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:49Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:49Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:49Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:49Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:49Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":15} +{"level":"info","ts":"2024-08-16T17:14:49Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":15} +{"level":"info","ts":"2024-08-16T17:14:49Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-rqx4s","namespace":"scale"},"namespace":"scale","name":"backend-rqx4s","reconcileID":"dbfaab0e-696f-4763-9738-a952cbde0050"} +{"level":"info","ts":"2024-08-16T17:14:49Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-rqx4s","namespace":"scale"},"namespace":"scale","name":"backend-rqx4s","reconcileID":"dbfaab0e-696f-4763-9738-a952cbde0050"} +{"level":"info","ts":"2024-08-16T17:14:49Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:14:49Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":16,"total":1} +{"level":"info","ts":"2024-08-16T17:14:49Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:49Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:49Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:49Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:49Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:49Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:49Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:49Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:49Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:49Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:49Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":16} +{"level":"info","ts":"2024-08-16T17:14:49Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":16} +{"level":"info","ts":"2024-08-16T17:14:49Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-rqx4s","namespace":"scale"},"namespace":"scale","name":"backend-rqx4s","reconcileID":"2571a1ca-6101-4dc4-b793-1faccafed876"} +{"level":"info","ts":"2024-08-16T17:14:49Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-rqx4s","namespace":"scale"},"namespace":"scale","name":"backend-rqx4s","reconcileID":"2571a1ca-6101-4dc4-b793-1faccafed876"} +{"level":"info","ts":"2024-08-16T17:14:49Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:14:49Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":17,"total":1} +{"level":"info","ts":"2024-08-16T17:14:49Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:49Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:49Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:49Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:49Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:49Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:49Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:49Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:49Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:49Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:49Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":17} +{"level":"info","ts":"2024-08-16T17:14:49Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":17} +{"level":"info","ts":"2024-08-16T17:14:49Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-rqx4s","namespace":"scale"},"namespace":"scale","name":"backend-rqx4s","reconcileID":"7f0acb4a-585a-4409-9e4b-f27daed5b6ed"} +{"level":"info","ts":"2024-08-16T17:14:49Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-rqx4s","namespace":"scale"},"namespace":"scale","name":"backend-rqx4s","reconcileID":"7f0acb4a-585a-4409-9e4b-f27daed5b6ed"} +{"level":"info","ts":"2024-08-16T17:14:49Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:14:49Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":18,"total":1} +{"level":"info","ts":"2024-08-16T17:14:49Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:49Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:49Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:49Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:49Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:49Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:49Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:49Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:49Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:49Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:49Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":18} +{"level":"info","ts":"2024-08-16T17:14:49Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":18} +{"level":"info","ts":"2024-08-16T17:14:49Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-rqx4s","namespace":"scale"},"namespace":"scale","name":"backend-rqx4s","reconcileID":"bc72d771-41aa-48d0-b15e-a18e7d797313"} +{"level":"info","ts":"2024-08-16T17:14:49Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-rqx4s","namespace":"scale"},"namespace":"scale","name":"backend-rqx4s","reconcileID":"bc72d771-41aa-48d0-b15e-a18e7d797313"} +{"level":"info","ts":"2024-08-16T17:14:49Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:14:49Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":19,"total":1} +{"level":"info","ts":"2024-08-16T17:14:49Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:49Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:49Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:49Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:49Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:49Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:49Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:49Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:49Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:49Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:49Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":19} +{"level":"info","ts":"2024-08-16T17:14:49Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":19} +{"level":"info","ts":"2024-08-16T17:14:49Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-rqx4s","namespace":"scale"},"namespace":"scale","name":"backend-rqx4s","reconcileID":"8d041356-a333-42b0-910c-bf767e352c10"} +{"level":"info","ts":"2024-08-16T17:14:49Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-rqx4s","namespace":"scale"},"namespace":"scale","name":"backend-rqx4s","reconcileID":"8d041356-a333-42b0-910c-bf767e352c10"} +{"level":"info","ts":"2024-08-16T17:14:49Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:14:49Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":20,"total":1} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":20} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":20} +{"level":"info","ts":"2024-08-16T17:14:50Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-rqx4s","namespace":"scale"},"namespace":"scale","name":"backend-rqx4s","reconcileID":"ed15b5e4-d445-4519-945e-0902ba0113bc"} +{"level":"info","ts":"2024-08-16T17:14:50Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-rqx4s","namespace":"scale"},"namespace":"scale","name":"backend-rqx4s","reconcileID":"ed15b5e4-d445-4519-945e-0902ba0113bc"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":21,"total":1} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":21} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":21} +{"level":"info","ts":"2024-08-16T17:14:50Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-rqx4s","namespace":"scale"},"namespace":"scale","name":"backend-rqx4s","reconcileID":"b179666a-9ddd-438e-a912-01257cbccefb"} +{"level":"info","ts":"2024-08-16T17:14:50Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-rqx4s","namespace":"scale"},"namespace":"scale","name":"backend-rqx4s","reconcileID":"b179666a-9ddd-438e-a912-01257cbccefb"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":22,"total":1} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":22} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":22} +{"level":"info","ts":"2024-08-16T17:14:50Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-rqx4s","namespace":"scale"},"namespace":"scale","name":"backend-rqx4s","reconcileID":"c7b6ed38-0934-47c3-af45-880cd3b42397"} +{"level":"info","ts":"2024-08-16T17:14:50Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-rqx4s","namespace":"scale"},"namespace":"scale","name":"backend-rqx4s","reconcileID":"c7b6ed38-0934-47c3-af45-880cd3b42397"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":23,"total":1} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":23} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":23} +{"level":"info","ts":"2024-08-16T17:14:50Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-rqx4s","namespace":"scale"},"namespace":"scale","name":"backend-rqx4s","reconcileID":"49c7b362-128a-4d8b-a222-39684054defc"} +{"level":"info","ts":"2024-08-16T17:14:50Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-rqx4s","namespace":"scale"},"namespace":"scale","name":"backend-rqx4s","reconcileID":"49c7b362-128a-4d8b-a222-39684054defc"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":24,"total":1} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":24} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":24} +{"level":"info","ts":"2024-08-16T17:14:50Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-rqx4s","namespace":"scale"},"namespace":"scale","name":"backend-rqx4s","reconcileID":"593889ed-6030-45c0-9fd6-656c547612ab"} +{"level":"info","ts":"2024-08-16T17:14:50Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-rqx4s","namespace":"scale"},"namespace":"scale","name":"backend-rqx4s","reconcileID":"593889ed-6030-45c0-9fd6-656c547612ab"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":25,"total":1} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":25} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":25} +{"level":"info","ts":"2024-08-16T17:14:50Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-rqx4s","namespace":"scale"},"namespace":"scale","name":"backend-rqx4s","reconcileID":"f434a150-8a3b-40ed-8427-3166448e9bf8"} +{"level":"info","ts":"2024-08-16T17:14:50Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-rqx4s","namespace":"scale"},"namespace":"scale","name":"backend-rqx4s","reconcileID":"f434a150-8a3b-40ed-8427-3166448e9bf8"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":26,"total":1} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":26} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":26} +{"level":"info","ts":"2024-08-16T17:14:50Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-rqx4s","namespace":"scale"},"namespace":"scale","name":"backend-rqx4s","reconcileID":"8f147073-4e9c-4b9f-b71b-cb2eaada9fcc"} +{"level":"info","ts":"2024-08-16T17:14:50Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-rqx4s","namespace":"scale"},"namespace":"scale","name":"backend-rqx4s","reconcileID":"8f147073-4e9c-4b9f-b71b-cb2eaada9fcc"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":27,"total":1} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":27} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":27} +{"level":"info","ts":"2024-08-16T17:14:50Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-rqx4s","namespace":"scale"},"namespace":"scale","name":"backend-rqx4s","reconcileID":"02addaf1-3e9a-4897-967c-a976bdd06bcc"} +{"level":"info","ts":"2024-08-16T17:14:50Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-rqx4s","namespace":"scale"},"namespace":"scale","name":"backend-rqx4s","reconcileID":"02addaf1-3e9a-4897-967c-a976bdd06bcc"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":28,"total":1} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":28} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":28} +{"level":"info","ts":"2024-08-16T17:14:50Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-rqx4s","namespace":"scale"},"namespace":"scale","name":"backend-rqx4s","reconcileID":"4c73ce09-963f-49fb-b7ad-e53fd1fc43e7"} +{"level":"info","ts":"2024-08-16T17:14:50Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-rqx4s","namespace":"scale"},"namespace":"scale","name":"backend-rqx4s","reconcileID":"4c73ce09-963f-49fb-b7ad-e53fd1fc43e7"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":29,"total":1} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":29} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":29} +{"level":"info","ts":"2024-08-16T17:14:50Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-rqx4s","namespace":"scale"},"namespace":"scale","name":"backend-rqx4s","reconcileID":"25c70a9f-0043-4d3d-a96b-61492df407b3"} +{"level":"info","ts":"2024-08-16T17:14:50Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-rqx4s","namespace":"scale"},"namespace":"scale","name":"backend-rqx4s","reconcileID":"25c70a9f-0043-4d3d-a96b-61492df407b3"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":30,"total":1} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":30} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":30} +{"level":"info","ts":"2024-08-16T17:14:50Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-rqx4s","namespace":"scale"},"namespace":"scale","name":"backend-rqx4s","reconcileID":"17fcf043-48b5-4586-92e6-6c59c4b007a3"} +{"level":"info","ts":"2024-08-16T17:14:50Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-rqx4s","namespace":"scale"},"namespace":"scale","name":"backend-rqx4s","reconcileID":"17fcf043-48b5-4586-92e6-6c59c4b007a3"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":31,"total":1} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":31} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":31} +{"level":"info","ts":"2024-08-16T17:14:50Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-rqx4s","namespace":"scale"},"namespace":"scale","name":"backend-rqx4s","reconcileID":"d7c6876f-6a39-43df-a96b-f20a8e93409d"} +{"level":"info","ts":"2024-08-16T17:14:50Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-rqx4s","namespace":"scale"},"namespace":"scale","name":"backend-rqx4s","reconcileID":"d7c6876f-6a39-43df-a96b-f20a8e93409d"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":32,"total":1} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":32} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":32} +{"level":"info","ts":"2024-08-16T17:14:50Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-rqx4s","namespace":"scale"},"namespace":"scale","name":"backend-rqx4s","reconcileID":"bb7dbbbb-86af-4c2b-a7ed-636ce9354b53"} +{"level":"info","ts":"2024-08-16T17:14:50Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-rqx4s","namespace":"scale"},"namespace":"scale","name":"backend-rqx4s","reconcileID":"bb7dbbbb-86af-4c2b-a7ed-636ce9354b53"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":33,"total":1} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":33} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":33} +{"level":"info","ts":"2024-08-16T17:14:50Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-rqx4s","namespace":"scale"},"namespace":"scale","name":"backend-rqx4s","reconcileID":"81bb87a6-f1d8-4be6-ae50-fbd2135f9dfb"} +{"level":"info","ts":"2024-08-16T17:14:50Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-rqx4s","namespace":"scale"},"namespace":"scale","name":"backend-rqx4s","reconcileID":"81bb87a6-f1d8-4be6-ae50-fbd2135f9dfb"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":34,"total":1} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":34} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":34} +{"level":"info","ts":"2024-08-16T17:14:50Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-rqx4s","namespace":"scale"},"namespace":"scale","name":"backend-rqx4s","reconcileID":"d23d28b1-5648-444b-92d0-5e7bcd123f3b"} +{"level":"info","ts":"2024-08-16T17:14:50Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-rqx4s","namespace":"scale"},"namespace":"scale","name":"backend-rqx4s","reconcileID":"d23d28b1-5648-444b-92d0-5e7bcd123f3b"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":35,"total":1} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":35} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":35} +{"level":"info","ts":"2024-08-16T17:14:50Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-rqx4s","namespace":"scale"},"namespace":"scale","name":"backend-rqx4s","reconcileID":"057a0c90-d5c5-4f6a-84c4-f781bf49bee2"} +{"level":"info","ts":"2024-08-16T17:14:50Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-rqx4s","namespace":"scale"},"namespace":"scale","name":"backend-rqx4s","reconcileID":"057a0c90-d5c5-4f6a-84c4-f781bf49bee2"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":36,"total":1} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":36} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":36} +{"level":"info","ts":"2024-08-16T17:14:50Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-rqx4s","namespace":"scale"},"namespace":"scale","name":"backend-rqx4s","reconcileID":"5e224848-dc3e-4f96-bcbc-683da6a9df4c"} +{"level":"info","ts":"2024-08-16T17:14:50Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-rqx4s","namespace":"scale"},"namespace":"scale","name":"backend-rqx4s","reconcileID":"5e224848-dc3e-4f96-bcbc-683da6a9df4c"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":37,"total":1} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":37} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":37} +{"level":"info","ts":"2024-08-16T17:14:50Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-rqx4s","namespace":"scale"},"namespace":"scale","name":"backend-rqx4s","reconcileID":"2baa57ef-f44b-49aa-a784-00f6dc4b8809"} +{"level":"info","ts":"2024-08-16T17:14:50Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-rqx4s","namespace":"scale"},"namespace":"scale","name":"backend-rqx4s","reconcileID":"2baa57ef-f44b-49aa-a784-00f6dc4b8809"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":38,"total":1} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":38} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":38} +{"level":"info","ts":"2024-08-16T17:14:50Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-rqx4s","namespace":"scale"},"namespace":"scale","name":"backend-rqx4s","reconcileID":"2dc7ee4a-5083-49a5-aebc-651a9e30fec4"} +{"level":"info","ts":"2024-08-16T17:14:50Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-rqx4s","namespace":"scale"},"namespace":"scale","name":"backend-rqx4s","reconcileID":"2dc7ee4a-5083-49a5-aebc-651a9e30fec4"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":39,"total":1} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":39} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":39} +{"level":"info","ts":"2024-08-16T17:14:50Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-rqx4s","namespace":"scale"},"namespace":"scale","name":"backend-rqx4s","reconcileID":"108d9b93-bd90-4f60-8dc6-3cc504ed1514"} +{"level":"info","ts":"2024-08-16T17:14:50Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-rqx4s","namespace":"scale"},"namespace":"scale","name":"backend-rqx4s","reconcileID":"108d9b93-bd90-4f60-8dc6-3cc504ed1514"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":40,"total":1} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":40} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":40} +{"level":"info","ts":"2024-08-16T17:14:50Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-rqx4s","namespace":"scale"},"namespace":"scale","name":"backend-rqx4s","reconcileID":"5998ae88-11dc-43dd-913a-cf8d4d1f7db4"} +{"level":"info","ts":"2024-08-16T17:14:50Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-rqx4s","namespace":"scale"},"namespace":"scale","name":"backend-rqx4s","reconcileID":"5998ae88-11dc-43dd-913a-cf8d4d1f7db4"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":41,"total":1} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":41} +{"level":"info","ts":"2024-08-16T17:14:50Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":41} +{"level":"info","ts":"2024-08-16T17:14:51Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-rqx4s","namespace":"scale"},"namespace":"scale","name":"backend-rqx4s","reconcileID":"03348d0a-f383-4027-8e5c-cb63ff1b9e9a"} +{"level":"info","ts":"2024-08-16T17:14:51Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-rqx4s","namespace":"scale"},"namespace":"scale","name":"backend-rqx4s","reconcileID":"03348d0a-f383-4027-8e5c-cb63ff1b9e9a"} +{"level":"info","ts":"2024-08-16T17:14:51Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:14:51Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":42,"total":1} +{"level":"info","ts":"2024-08-16T17:14:51Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:51Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:51Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:51Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:51Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:51Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:51Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:51Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:51Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:51Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:51Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":42} +{"level":"info","ts":"2024-08-16T17:14:51Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":42} +{"level":"info","ts":"2024-08-16T17:14:51Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-rqx4s","namespace":"scale"},"namespace":"scale","name":"backend-rqx4s","reconcileID":"067d62dd-06d4-4bf5-8803-f388a6978e93"} +{"level":"info","ts":"2024-08-16T17:14:51Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-rqx4s","namespace":"scale"},"namespace":"scale","name":"backend-rqx4s","reconcileID":"067d62dd-06d4-4bf5-8803-f388a6978e93"} +{"level":"info","ts":"2024-08-16T17:14:51Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:14:51Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":43,"total":1} +{"level":"info","ts":"2024-08-16T17:14:51Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:51Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:51Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:51Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:51Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:51Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:51Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:51Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:51Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:51Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:51Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":43} +{"level":"info","ts":"2024-08-16T17:14:51Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":43} +{"level":"info","ts":"2024-08-16T17:14:51Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-rqx4s","namespace":"scale"},"namespace":"scale","name":"backend-rqx4s","reconcileID":"1d8b1439-ab2d-479f-bc03-fb828a93029d"} +{"level":"info","ts":"2024-08-16T17:14:51Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-rqx4s","namespace":"scale"},"namespace":"scale","name":"backend-rqx4s","reconcileID":"1d8b1439-ab2d-479f-bc03-fb828a93029d"} +{"level":"info","ts":"2024-08-16T17:14:51Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:14:51Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":44,"total":1} +{"level":"info","ts":"2024-08-16T17:14:51Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:51Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:51Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:51Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:51Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:51Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:51Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:51Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:51Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:51Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:51Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":44} +{"level":"info","ts":"2024-08-16T17:14:51Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":44} +{"level":"info","ts":"2024-08-16T17:14:51Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-rqx4s","namespace":"scale"},"namespace":"scale","name":"backend-rqx4s","reconcileID":"f5ea85de-082e-4227-9879-580a2bd3f249"} +{"level":"info","ts":"2024-08-16T17:14:51Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-rqx4s","namespace":"scale"},"namespace":"scale","name":"backend-rqx4s","reconcileID":"f5ea85de-082e-4227-9879-580a2bd3f249"} +{"level":"info","ts":"2024-08-16T17:14:51Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:14:51Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":45,"total":1} +{"level":"info","ts":"2024-08-16T17:14:51Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:51Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:51Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:51Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:51Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:51Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:51Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:51Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:51Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:51Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:51Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":45} +{"level":"info","ts":"2024-08-16T17:14:51Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":45} +{"level":"info","ts":"2024-08-16T17:14:51Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-rqx4s","namespace":"scale"},"namespace":"scale","name":"backend-rqx4s","reconcileID":"17632ddc-9954-402e-aeec-9c82c77a8b90"} +{"level":"info","ts":"2024-08-16T17:14:51Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-rqx4s","namespace":"scale"},"namespace":"scale","name":"backend-rqx4s","reconcileID":"17632ddc-9954-402e-aeec-9c82c77a8b90"} +{"level":"info","ts":"2024-08-16T17:14:51Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:14:51Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":46,"total":1} +{"level":"info","ts":"2024-08-16T17:14:51Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:51Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:51Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:51Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:51Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:51Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:51Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:51Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:51Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:51Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:51Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":46} +{"level":"info","ts":"2024-08-16T17:14:51Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":46} +{"level":"info","ts":"2024-08-16T17:14:51Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-rqx4s","namespace":"scale"},"namespace":"scale","name":"backend-rqx4s","reconcileID":"9d5b4994-7142-489a-9e37-4130ebdf9ddb"} +{"level":"info","ts":"2024-08-16T17:14:51Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-rqx4s","namespace":"scale"},"namespace":"scale","name":"backend-rqx4s","reconcileID":"9d5b4994-7142-489a-9e37-4130ebdf9ddb"} +{"level":"info","ts":"2024-08-16T17:14:51Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:14:51Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":47,"total":1} +{"level":"info","ts":"2024-08-16T17:14:51Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:51Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:51Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:51Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:51Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:51Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:51Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:51Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:51Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:51Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:51Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":47} +{"level":"info","ts":"2024-08-16T17:14:51Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":47} +{"level":"info","ts":"2024-08-16T17:14:51Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-rqx4s","namespace":"scale"},"namespace":"scale","name":"backend-rqx4s","reconcileID":"94c27f5c-7eaa-47d1-a563-9fa454964642"} +{"level":"info","ts":"2024-08-16T17:14:51Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-rqx4s","namespace":"scale"},"namespace":"scale","name":"backend-rqx4s","reconcileID":"94c27f5c-7eaa-47d1-a563-9fa454964642"} +{"level":"info","ts":"2024-08-16T17:14:51Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:14:51Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":48,"total":1} +{"level":"info","ts":"2024-08-16T17:14:51Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:51Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:51Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:51Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:51Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:51Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:51Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:51Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:51Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:51Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:51Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":48} +{"level":"info","ts":"2024-08-16T17:14:51Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":48} +{"level":"info","ts":"2024-08-16T17:14:51Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-rqx4s","namespace":"scale"},"namespace":"scale","name":"backend-rqx4s","reconcileID":"95862f8e-270d-4018-885c-7ffb9229c14f"} +{"level":"info","ts":"2024-08-16T17:14:51Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-rqx4s","namespace":"scale"},"namespace":"scale","name":"backend-rqx4s","reconcileID":"95862f8e-270d-4018-885c-7ffb9229c14f"} +{"level":"info","ts":"2024-08-16T17:14:51Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:14:51Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":49,"total":1} +{"level":"info","ts":"2024-08-16T17:14:51Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:51Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:51Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:51Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:51Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:51Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:51Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:51Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:51Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:51Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:51Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":49} +{"level":"info","ts":"2024-08-16T17:14:51Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":49} +{"level":"info","ts":"2024-08-16T17:14:51Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-rqx4s","namespace":"scale"},"namespace":"scale","name":"backend-rqx4s","reconcileID":"ccd2db5f-4df9-4b97-896f-b8befcd46873"} +{"level":"info","ts":"2024-08-16T17:14:51Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-rqx4s","namespace":"scale"},"namespace":"scale","name":"backend-rqx4s","reconcileID":"ccd2db5f-4df9-4b97-896f-b8befcd46873"} +{"level":"info","ts":"2024-08-16T17:14:51Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:14:51Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":50,"total":1} +{"level":"info","ts":"2024-08-16T17:14:51Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:51Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:51Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:51Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:51Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:51Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:51Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:51Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:51Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:51Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:51Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":50} +{"level":"info","ts":"2024-08-16T17:14:51Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":50} +{"level":"info","ts":"2024-08-16T17:14:51Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-rqx4s","namespace":"scale"},"namespace":"scale","name":"backend-rqx4s","reconcileID":"783b66de-102d-424e-9ab6-6bdc3f2f71d3"} +{"level":"info","ts":"2024-08-16T17:14:51Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-rqx4s","namespace":"scale"},"namespace":"scale","name":"backend-rqx4s","reconcileID":"783b66de-102d-424e-9ab6-6bdc3f2f71d3"} +{"level":"info","ts":"2024-08-16T17:14:51Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:14:51Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":51,"total":1} +{"level":"info","ts":"2024-08-16T17:14:51Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:51Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:51Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:51Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:51Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:51Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:51Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:51Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:51Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:51Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:51Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":51} +{"level":"info","ts":"2024-08-16T17:14:51Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":51} +{"level":"info","ts":"2024-08-16T17:14:51Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-rqx4s","namespace":"scale"},"namespace":"scale","name":"backend-rqx4s","reconcileID":"e9222203-8ecc-429b-ab2d-f5bba1b9de22"} +{"level":"info","ts":"2024-08-16T17:14:51Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-rqx4s","namespace":"scale"},"namespace":"scale","name":"backend-rqx4s","reconcileID":"e9222203-8ecc-429b-ab2d-f5bba1b9de22"} +{"level":"info","ts":"2024-08-16T17:14:51Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:14:51Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":52,"total":1} +{"level":"info","ts":"2024-08-16T17:14:51Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:51Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:51Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:51Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:51Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:51Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:51Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:51Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:51Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:51Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:51Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":52} +{"level":"info","ts":"2024-08-16T17:14:51Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":52} +{"level":"info","ts":"2024-08-16T17:14:51Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-rqx4s","namespace":"scale"},"namespace":"scale","name":"backend-rqx4s","reconcileID":"45215690-f1b0-4e9b-a400-107b1318733b"} +{"level":"info","ts":"2024-08-16T17:14:51Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-rqx4s","namespace":"scale"},"namespace":"scale","name":"backend-rqx4s","reconcileID":"45215690-f1b0-4e9b-a400-107b1318733b"} +{"level":"info","ts":"2024-08-16T17:14:51Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:14:51Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":53,"total":1} +{"level":"info","ts":"2024-08-16T17:14:51Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:51Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:51Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:51Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:51Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:51Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:51Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:51Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:51Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:51Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:51Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":53} +{"level":"info","ts":"2024-08-16T17:14:51Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":53} +{"level":"info","ts":"2024-08-16T17:14:52Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-rqx4s","namespace":"scale"},"namespace":"scale","name":"backend-rqx4s","reconcileID":"13ca45dd-de6b-4314-9ac5-6f2d0584d77c"} +{"level":"info","ts":"2024-08-16T17:14:52Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-rqx4s","namespace":"scale"},"namespace":"scale","name":"backend-rqx4s","reconcileID":"13ca45dd-de6b-4314-9ac5-6f2d0584d77c"} +{"level":"info","ts":"2024-08-16T17:14:52Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:14:52Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":54,"total":1} +{"level":"info","ts":"2024-08-16T17:14:52Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:52Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:52Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:52Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:52Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:52Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:52Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:52Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:52Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:52Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:52Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":54} +{"level":"info","ts":"2024-08-16T17:14:52Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":54} +{"level":"info","ts":"2024-08-16T17:14:52Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-rqx4s","namespace":"scale"},"namespace":"scale","name":"backend-rqx4s","reconcileID":"9189ead9-cd5a-4946-986f-a00240bff5a6"} +{"level":"info","ts":"2024-08-16T17:14:52Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-rqx4s","namespace":"scale"},"namespace":"scale","name":"backend-rqx4s","reconcileID":"9189ead9-cd5a-4946-986f-a00240bff5a6"} +{"level":"info","ts":"2024-08-16T17:14:52Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:14:52Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":55,"total":1} +{"level":"info","ts":"2024-08-16T17:14:52Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:52Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:52Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:52Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:52Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:52Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:52Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:52Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:52Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:52Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:52Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":55} +{"level":"info","ts":"2024-08-16T17:14:52Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":55} +{"level":"info","ts":"2024-08-16T17:14:52Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-rqx4s","namespace":"scale"},"namespace":"scale","name":"backend-rqx4s","reconcileID":"704bf764-6f0d-476e-a44b-3ae95a58ba73"} +{"level":"info","ts":"2024-08-16T17:14:52Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-rqx4s","namespace":"scale"},"namespace":"scale","name":"backend-rqx4s","reconcileID":"704bf764-6f0d-476e-a44b-3ae95a58ba73"} +{"level":"info","ts":"2024-08-16T17:14:52Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:14:52Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":56,"total":1} +{"level":"info","ts":"2024-08-16T17:14:52Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:52Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:52Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:52Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:52Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:52Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:52Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:52Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:52Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:52Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:52Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":56} +{"level":"info","ts":"2024-08-16T17:14:52Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":56} +{"level":"info","ts":"2024-08-16T17:14:52Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-rqx4s","namespace":"scale"},"namespace":"scale","name":"backend-rqx4s","reconcileID":"e2855e48-4981-453f-a0a1-7bd66f73b76e"} +{"level":"info","ts":"2024-08-16T17:14:52Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-rqx4s","namespace":"scale"},"namespace":"scale","name":"backend-rqx4s","reconcileID":"e2855e48-4981-453f-a0a1-7bd66f73b76e"} +{"level":"info","ts":"2024-08-16T17:14:52Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:14:52Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":57,"total":1} +{"level":"info","ts":"2024-08-16T17:14:52Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:52Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:52Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:52Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:52Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:52Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:52Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:52Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:52Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:52Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:52Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":57} +{"level":"info","ts":"2024-08-16T17:14:52Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":57} +{"level":"info","ts":"2024-08-16T17:14:52Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-rqx4s","namespace":"scale"},"namespace":"scale","name":"backend-rqx4s","reconcileID":"7842c3b9-9560-4a1d-93d5-e0d96ce6bb70"} +{"level":"info","ts":"2024-08-16T17:14:52Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-rqx4s","namespace":"scale"},"namespace":"scale","name":"backend-rqx4s","reconcileID":"7842c3b9-9560-4a1d-93d5-e0d96ce6bb70"} +{"level":"info","ts":"2024-08-16T17:14:52Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:14:52Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":58,"total":1} +{"level":"info","ts":"2024-08-16T17:14:52Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:52Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:52Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:52Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:52Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:52Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:52Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:52Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:52Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:52Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:52Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":58} +{"level":"info","ts":"2024-08-16T17:14:52Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":58} +{"level":"info","ts":"2024-08-16T17:14:52Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-rqx4s","namespace":"scale"},"namespace":"scale","name":"backend-rqx4s","reconcileID":"e7f03b4e-2747-41db-96d1-3ead4d4115c8"} +{"level":"info","ts":"2024-08-16T17:14:52Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-rqx4s","namespace":"scale"},"namespace":"scale","name":"backend-rqx4s","reconcileID":"e7f03b4e-2747-41db-96d1-3ead4d4115c8"} +{"level":"info","ts":"2024-08-16T17:14:52Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:14:52Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":59,"total":1} +{"level":"info","ts":"2024-08-16T17:14:52Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:52Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:52Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:52Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:52Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:52Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:52Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:52Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:52Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:52Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:52Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":59} +{"level":"info","ts":"2024-08-16T17:14:52Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":59} +{"level":"info","ts":"2024-08-16T17:14:52Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-rqx4s","namespace":"scale"},"namespace":"scale","name":"backend-rqx4s","reconcileID":"71628152-4201-423e-96fb-a22729a5fca5"} +{"level":"info","ts":"2024-08-16T17:14:52Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-rqx4s","namespace":"scale"},"namespace":"scale","name":"backend-rqx4s","reconcileID":"71628152-4201-423e-96fb-a22729a5fca5"} +{"level":"info","ts":"2024-08-16T17:14:52Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:14:52Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":60,"total":1} +{"level":"info","ts":"2024-08-16T17:14:52Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:52Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:52Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:52Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:52Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:52Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:52Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:52Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:52Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:52Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:52Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":60} +{"level":"info","ts":"2024-08-16T17:14:52Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":60} +{"level":"info","ts":"2024-08-16T17:14:52Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-rqx4s","namespace":"scale"},"namespace":"scale","name":"backend-rqx4s","reconcileID":"80458cf4-2302-455d-a5c1-0a5adcc54017"} +{"level":"info","ts":"2024-08-16T17:14:52Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-rqx4s","namespace":"scale"},"namespace":"scale","name":"backend-rqx4s","reconcileID":"80458cf4-2302-455d-a5c1-0a5adcc54017"} +{"level":"info","ts":"2024-08-16T17:14:52Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:14:52Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":61,"total":1} +{"level":"info","ts":"2024-08-16T17:14:52Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:52Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:52Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:52Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:52Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:52Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:52Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:52Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:52Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:52Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:52Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":61} +{"level":"info","ts":"2024-08-16T17:14:52Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":61} +{"level":"info","ts":"2024-08-16T17:14:52Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-rqx4s","namespace":"scale"},"namespace":"scale","name":"backend-rqx4s","reconcileID":"6d8f9635-9654-4d4e-84a0-2c39a17a142c"} +{"level":"info","ts":"2024-08-16T17:14:52Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-rqx4s","namespace":"scale"},"namespace":"scale","name":"backend-rqx4s","reconcileID":"6d8f9635-9654-4d4e-84a0-2c39a17a142c"} +{"level":"info","ts":"2024-08-16T17:14:52Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:14:52Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":62,"total":1} +{"level":"info","ts":"2024-08-16T17:14:52Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:52Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:52Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:52Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:52Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:52Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:52Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:52Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:52Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:52Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:52Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":62} +{"level":"info","ts":"2024-08-16T17:14:52Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":62} +{"level":"info","ts":"2024-08-16T17:14:52Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-rqx4s","namespace":"scale"},"namespace":"scale","name":"backend-rqx4s","reconcileID":"af4164b9-9592-44ec-99ff-8682e7d0143a"} +{"level":"info","ts":"2024-08-16T17:14:52Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-rqx4s","namespace":"scale"},"namespace":"scale","name":"backend-rqx4s","reconcileID":"af4164b9-9592-44ec-99ff-8682e7d0143a"} +{"level":"info","ts":"2024-08-16T17:14:52Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:14:52Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":63,"total":1} +{"level":"info","ts":"2024-08-16T17:14:52Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:52Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:52Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:52Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:52Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:52Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:52Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:52Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:52Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:52Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:52Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":63} +{"level":"info","ts":"2024-08-16T17:14:52Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":63} +{"level":"info","ts":"2024-08-16T17:14:52Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-rqx4s","namespace":"scale"},"namespace":"scale","name":"backend-rqx4s","reconcileID":"14390ac6-dc30-40e6-8c62-df6b7855ee8c"} +{"level":"info","ts":"2024-08-16T17:14:52Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-rqx4s","namespace":"scale"},"namespace":"scale","name":"backend-rqx4s","reconcileID":"14390ac6-dc30-40e6-8c62-df6b7855ee8c"} +{"level":"info","ts":"2024-08-16T17:14:52Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:14:52Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":64,"total":1} +{"level":"info","ts":"2024-08-16T17:14:52Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:52Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:52Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:52Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:52Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:52Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:52Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:52Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:52Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:52Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:52Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":64} +{"level":"info","ts":"2024-08-16T17:14:52Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":64} +{"level":"info","ts":"2024-08-16T17:14:52Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-rqx4s","namespace":"scale"},"namespace":"scale","name":"backend-rqx4s","reconcileID":"c1737822-b0d3-4296-ad42-dfc7a30d3eb8"} +{"level":"info","ts":"2024-08-16T17:14:52Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-rqx4s","namespace":"scale"},"namespace":"scale","name":"backend-rqx4s","reconcileID":"c1737822-b0d3-4296-ad42-dfc7a30d3eb8"} +{"level":"info","ts":"2024-08-16T17:14:52Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:14:52Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":65,"total":1} +{"level":"info","ts":"2024-08-16T17:14:52Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:52Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:52Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:52Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:52Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:52Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:52Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:52Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:52Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:52Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:52Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":65} +{"level":"info","ts":"2024-08-16T17:14:52Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":65} +{"level":"info","ts":"2024-08-16T17:14:53Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-rqx4s","namespace":"scale"},"namespace":"scale","name":"backend-rqx4s","reconcileID":"46732fbc-972c-4137-a42c-f886bf3b585b"} +{"level":"info","ts":"2024-08-16T17:14:53Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-rqx4s","namespace":"scale"},"namespace":"scale","name":"backend-rqx4s","reconcileID":"46732fbc-972c-4137-a42c-f886bf3b585b"} +{"level":"info","ts":"2024-08-16T17:14:53Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:14:53Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":66,"total":1} +{"level":"info","ts":"2024-08-16T17:14:53Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:53Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:53Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:53Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:53Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:53Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:53Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:53Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:53Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:53Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:53Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":66} +{"level":"info","ts":"2024-08-16T17:14:53Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":66} +{"level":"info","ts":"2024-08-16T17:14:53Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-rqx4s","namespace":"scale"},"namespace":"scale","name":"backend-rqx4s","reconcileID":"99f4da0c-ad1c-4f8d-a408-2ca5da4e2c50"} +{"level":"info","ts":"2024-08-16T17:14:53Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-rqx4s","namespace":"scale"},"namespace":"scale","name":"backend-rqx4s","reconcileID":"99f4da0c-ad1c-4f8d-a408-2ca5da4e2c50"} +{"level":"info","ts":"2024-08-16T17:14:53Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:14:53Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":67,"total":1} +{"level":"info","ts":"2024-08-16T17:14:53Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:53Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:53Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:53Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:53Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:53Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:53Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:53Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:53Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:53Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:53Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":67} +{"level":"info","ts":"2024-08-16T17:14:53Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":67} +{"level":"info","ts":"2024-08-16T17:14:53Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-rqx4s","namespace":"scale"},"namespace":"scale","name":"backend-rqx4s","reconcileID":"ab218c27-cf95-49af-ba99-3df03d2bf674"} +{"level":"info","ts":"2024-08-16T17:14:53Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-rqx4s","namespace":"scale"},"namespace":"scale","name":"backend-rqx4s","reconcileID":"ab218c27-cf95-49af-ba99-3df03d2bf674"} +{"level":"info","ts":"2024-08-16T17:14:53Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:14:53Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":68,"total":1} +{"level":"info","ts":"2024-08-16T17:14:53Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:53Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:53Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:53Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:53Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:53Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:53Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:53Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:53Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:53Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:53Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":68} +{"level":"info","ts":"2024-08-16T17:14:53Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":68} +{"level":"info","ts":"2024-08-16T17:14:53Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-rqx4s","namespace":"scale"},"namespace":"scale","name":"backend-rqx4s","reconcileID":"1724f776-9813-4559-96af-9f77f5acbb9b"} +{"level":"info","ts":"2024-08-16T17:14:53Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-rqx4s","namespace":"scale"},"namespace":"scale","name":"backend-rqx4s","reconcileID":"1724f776-9813-4559-96af-9f77f5acbb9b"} +{"level":"info","ts":"2024-08-16T17:14:53Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:14:53Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":69,"total":1} +{"level":"info","ts":"2024-08-16T17:14:53Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:53Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:53Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:53Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:53Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:53Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:53Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:53Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:53Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:53Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:53Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":69} +{"level":"info","ts":"2024-08-16T17:14:53Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":69} +{"level":"info","ts":"2024-08-16T17:14:53Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-rqx4s","namespace":"scale"},"namespace":"scale","name":"backend-rqx4s","reconcileID":"f306eecf-06e1-420c-ad2f-088cdf30af70"} +{"level":"info","ts":"2024-08-16T17:14:53Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-rqx4s","namespace":"scale"},"namespace":"scale","name":"backend-rqx4s","reconcileID":"f306eecf-06e1-420c-ad2f-088cdf30af70"} +{"level":"info","ts":"2024-08-16T17:14:53Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:14:53Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":70,"total":1} +{"level":"info","ts":"2024-08-16T17:14:53Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:53Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:53Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:53Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:53Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:53Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:53Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:53Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:53Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:53Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:53Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":70} +{"level":"info","ts":"2024-08-16T17:14:53Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":70} +{"level":"info","ts":"2024-08-16T17:14:53Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-rqx4s","namespace":"scale"},"namespace":"scale","name":"backend-rqx4s","reconcileID":"db529537-e237-47ee-85e2-c8ce07c7ddf2"} +{"level":"info","ts":"2024-08-16T17:14:53Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-rqx4s","namespace":"scale"},"namespace":"scale","name":"backend-rqx4s","reconcileID":"db529537-e237-47ee-85e2-c8ce07c7ddf2"} +{"level":"info","ts":"2024-08-16T17:14:53Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:14:53Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":71,"total":1} +{"level":"info","ts":"2024-08-16T17:14:53Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:53Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:53Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:53Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:53Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:53Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:53Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:53Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:53Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:53Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:53Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":71} +{"level":"info","ts":"2024-08-16T17:14:53Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":71} +{"level":"info","ts":"2024-08-16T17:14:53Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-rqx4s","namespace":"scale"},"namespace":"scale","name":"backend-rqx4s","reconcileID":"e8cf32de-8b44-421d-bfca-34be53b1c1b2"} +{"level":"info","ts":"2024-08-16T17:14:53Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-rqx4s","namespace":"scale"},"namespace":"scale","name":"backend-rqx4s","reconcileID":"e8cf32de-8b44-421d-bfca-34be53b1c1b2"} +{"level":"info","ts":"2024-08-16T17:14:53Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:14:53Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":72,"total":1} +{"level":"info","ts":"2024-08-16T17:14:53Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:53Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:53Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:53Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:53Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:53Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:53Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:53Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:53Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:53Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:53Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":72} +{"level":"info","ts":"2024-08-16T17:14:53Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":72} +{"level":"info","ts":"2024-08-16T17:14:53Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-rqx4s","namespace":"scale"},"namespace":"scale","name":"backend-rqx4s","reconcileID":"b947f2ec-05fa-4766-9407-04dbf15ef617"} +{"level":"info","ts":"2024-08-16T17:14:53Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-rqx4s","namespace":"scale"},"namespace":"scale","name":"backend-rqx4s","reconcileID":"b947f2ec-05fa-4766-9407-04dbf15ef617"} +{"level":"info","ts":"2024-08-16T17:14:53Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:14:53Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":73,"total":1} +{"level":"info","ts":"2024-08-16T17:14:53Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:53Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:53Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:53Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:53Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:53Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:53Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:53Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:53Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:53Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:53Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":73} +{"level":"info","ts":"2024-08-16T17:14:53Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":73} +{"level":"info","ts":"2024-08-16T17:14:53Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-rqx4s","namespace":"scale"},"namespace":"scale","name":"backend-rqx4s","reconcileID":"db674d6e-2214-4f7c-b826-7bbef8919fdd"} +{"level":"info","ts":"2024-08-16T17:14:53Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-rqx4s","namespace":"scale"},"namespace":"scale","name":"backend-rqx4s","reconcileID":"db674d6e-2214-4f7c-b826-7bbef8919fdd"} +{"level":"info","ts":"2024-08-16T17:14:53Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:14:53Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":74,"total":1} +{"level":"info","ts":"2024-08-16T17:14:53Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:53Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:53Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:53Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:53Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:53Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:53Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:53Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:53Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:53Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:53Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":74} +{"level":"info","ts":"2024-08-16T17:14:53Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":74} +{"level":"info","ts":"2024-08-16T17:14:53Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-rqx4s","namespace":"scale"},"namespace":"scale","name":"backend-rqx4s","reconcileID":"9e49daa9-184b-454e-8cbc-6bcfdede4b56"} +{"level":"info","ts":"2024-08-16T17:14:53Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-rqx4s","namespace":"scale"},"namespace":"scale","name":"backend-rqx4s","reconcileID":"9e49daa9-184b-454e-8cbc-6bcfdede4b56"} +{"level":"info","ts":"2024-08-16T17:14:53Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:14:53Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":75,"total":1} +{"level":"info","ts":"2024-08-16T17:14:53Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:53Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:53Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:53Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:53Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:53Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:53Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:53Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:53Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:53Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:53Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":75} +{"level":"info","ts":"2024-08-16T17:14:53Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":75} +{"level":"info","ts":"2024-08-16T17:14:53Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-rqx4s","namespace":"scale"},"namespace":"scale","name":"backend-rqx4s","reconcileID":"ed6d6f5f-1da2-41da-8f53-730ca39fa5c0"} +{"level":"info","ts":"2024-08-16T17:14:53Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-rqx4s","namespace":"scale"},"namespace":"scale","name":"backend-rqx4s","reconcileID":"ed6d6f5f-1da2-41da-8f53-730ca39fa5c0"} +{"level":"info","ts":"2024-08-16T17:14:53Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:14:53Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":76,"total":1} +{"level":"info","ts":"2024-08-16T17:14:53Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:53Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:53Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:53Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:53Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:53Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:53Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:53Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:53Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:53Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:53Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":76} +{"level":"info","ts":"2024-08-16T17:14:53Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":76} +{"level":"info","ts":"2024-08-16T17:14:53Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-rqx4s","namespace":"scale"},"namespace":"scale","name":"backend-rqx4s","reconcileID":"ed180ac0-a93c-478c-9e32-fae9dfe5424a"} +{"level":"info","ts":"2024-08-16T17:14:53Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-rqx4s","namespace":"scale"},"namespace":"scale","name":"backend-rqx4s","reconcileID":"ed180ac0-a93c-478c-9e32-fae9dfe5424a"} +{"level":"info","ts":"2024-08-16T17:14:53Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:14:53Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":77,"total":1} +{"level":"info","ts":"2024-08-16T17:14:53Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:53Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:53Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:53Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:53Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:53Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:53Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:53Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:53Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:53Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:53Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":77} +{"level":"info","ts":"2024-08-16T17:14:53Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":77} +{"level":"info","ts":"2024-08-16T17:14:53Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-rqx4s","namespace":"scale"},"namespace":"scale","name":"backend-rqx4s","reconcileID":"9010eb76-26e0-4a59-b3d4-1397c575f8f0"} +{"level":"info","ts":"2024-08-16T17:14:53Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-rqx4s","namespace":"scale"},"namespace":"scale","name":"backend-rqx4s","reconcileID":"9010eb76-26e0-4a59-b3d4-1397c575f8f0"} +{"level":"info","ts":"2024-08-16T17:14:53Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:14:53Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":78,"total":1} +{"level":"info","ts":"2024-08-16T17:14:53Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:53Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:53Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:53Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:53Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:53Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:53Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:53Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:53Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:53Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:53Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":78} +{"level":"info","ts":"2024-08-16T17:14:53Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":78} +{"level":"info","ts":"2024-08-16T17:14:53Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-xzvdm","namespace":"scale"},"namespace":"scale","name":"backend-xzvdm","reconcileID":"64be9c14-bfc6-41df-a60a-83eea418d074"} +{"level":"info","ts":"2024-08-16T17:14:53Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-xzvdm","namespace":"scale"},"namespace":"scale","name":"backend-xzvdm","reconcileID":"64be9c14-bfc6-41df-a60a-83eea418d074"} +{"level":"info","ts":"2024-08-16T17:14:53Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:14:53Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":79,"total":1} +{"level":"info","ts":"2024-08-16T17:14:53Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:53Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:53Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:53Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:53Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:53Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:53Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:53Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:53Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:53Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:53Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":79} +{"level":"info","ts":"2024-08-16T17:14:53Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":79} +{"level":"info","ts":"2024-08-16T17:14:54Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-rqx4s","namespace":"scale"},"namespace":"scale","name":"backend-rqx4s","reconcileID":"3a73dc60-602a-49c7-8cb1-ad281b331274"} +{"level":"info","ts":"2024-08-16T17:14:54Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-rqx4s","namespace":"scale"},"namespace":"scale","name":"backend-rqx4s","reconcileID":"3a73dc60-602a-49c7-8cb1-ad281b331274"} +{"level":"info","ts":"2024-08-16T17:14:54Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:14:54Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":80,"total":1} +{"level":"info","ts":"2024-08-16T17:14:54Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:54Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:54Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:54Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:54Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:54Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:54Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:54Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:54Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:54Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:54Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":80} +{"level":"info","ts":"2024-08-16T17:14:54Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":80} +{"level":"info","ts":"2024-08-16T17:14:54Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-rqx4s","namespace":"scale"},"namespace":"scale","name":"backend-rqx4s","reconcileID":"d56dbf39-c454-4513-a0ae-932ec8dfc6e6"} +{"level":"info","ts":"2024-08-16T17:14:54Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-rqx4s","namespace":"scale"},"namespace":"scale","name":"backend-rqx4s","reconcileID":"d56dbf39-c454-4513-a0ae-932ec8dfc6e6"} +{"level":"info","ts":"2024-08-16T17:14:54Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:14:54Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":81,"total":1} +{"level":"info","ts":"2024-08-16T17:14:54Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:54Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:54Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:54Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:54Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:54Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:54Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:54Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:54Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:54Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:54Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":81} +{"level":"info","ts":"2024-08-16T17:14:54Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":81} +{"level":"info","ts":"2024-08-16T17:14:54Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-rqx4s","namespace":"scale"},"namespace":"scale","name":"backend-rqx4s","reconcileID":"e8811e71-e60f-4f83-88e0-0ee2a6b301ca"} +{"level":"info","ts":"2024-08-16T17:14:54Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-rqx4s","namespace":"scale"},"namespace":"scale","name":"backend-rqx4s","reconcileID":"e8811e71-e60f-4f83-88e0-0ee2a6b301ca"} +{"level":"info","ts":"2024-08-16T17:14:54Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:14:54Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":82,"total":1} +{"level":"info","ts":"2024-08-16T17:14:54Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:54Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:54Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:54Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:54Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:54Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:54Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:54Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:54Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:54Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:54Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":82} +{"level":"info","ts":"2024-08-16T17:14:54Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":82} +{"level":"info","ts":"2024-08-16T17:14:54Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-xzvdm","namespace":"scale"},"namespace":"scale","name":"backend-xzvdm","reconcileID":"314075e2-7a03-4c0a-b0da-5294ef956c2e"} +{"level":"info","ts":"2024-08-16T17:14:54Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-xzvdm","namespace":"scale"},"namespace":"scale","name":"backend-xzvdm","reconcileID":"314075e2-7a03-4c0a-b0da-5294ef956c2e"} +{"level":"info","ts":"2024-08-16T17:14:54Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:14:54Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":83,"total":1} +{"level":"info","ts":"2024-08-16T17:14:54Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:54Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:54Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:54Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:54Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:54Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:54Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:54Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:54Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:54Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:54Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":83} +{"level":"info","ts":"2024-08-16T17:14:54Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":83} +{"level":"info","ts":"2024-08-16T17:14:54Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-xzvdm","namespace":"scale"},"namespace":"scale","name":"backend-xzvdm","reconcileID":"b92dc37a-453b-42fd-b50c-01c8fe813a54"} +{"level":"info","ts":"2024-08-16T17:14:54Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-xzvdm","namespace":"scale"},"namespace":"scale","name":"backend-xzvdm","reconcileID":"b92dc37a-453b-42fd-b50c-01c8fe813a54"} +{"level":"info","ts":"2024-08-16T17:14:54Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:14:54Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":84,"total":1} +{"level":"info","ts":"2024-08-16T17:14:54Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:54Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:54Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:54Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:54Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:54Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:54Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:54Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:54Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:54Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:54Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":84} +{"level":"info","ts":"2024-08-16T17:14:54Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":84} +{"level":"info","ts":"2024-08-16T17:14:54Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-xzvdm","namespace":"scale"},"namespace":"scale","name":"backend-xzvdm","reconcileID":"4f5cd57a-7a8d-4f46-8319-02a6a1ecc12c"} +{"level":"info","ts":"2024-08-16T17:14:54Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-xzvdm","namespace":"scale"},"namespace":"scale","name":"backend-xzvdm","reconcileID":"4f5cd57a-7a8d-4f46-8319-02a6a1ecc12c"} +{"level":"info","ts":"2024-08-16T17:14:54Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:14:54Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":85,"total":1} +{"level":"info","ts":"2024-08-16T17:14:54Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:54Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:54Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:54Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:54Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:54Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:54Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:54Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:54Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:54Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:54Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":85} +{"level":"info","ts":"2024-08-16T17:14:54Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":85} +{"level":"info","ts":"2024-08-16T17:14:54Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-xzvdm","namespace":"scale"},"namespace":"scale","name":"backend-xzvdm","reconcileID":"f45f4c19-e345-4055-8e65-d53176fe813b"} +{"level":"info","ts":"2024-08-16T17:14:54Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-xzvdm","namespace":"scale"},"namespace":"scale","name":"backend-xzvdm","reconcileID":"f45f4c19-e345-4055-8e65-d53176fe813b"} +{"level":"info","ts":"2024-08-16T17:14:54Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:14:54Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":86,"total":1} +{"level":"info","ts":"2024-08-16T17:14:54Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:54Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:54Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:54Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:54Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:54Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:54Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:54Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:54Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:54Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:54Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":86} +{"level":"info","ts":"2024-08-16T17:14:54Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":86} +{"level":"info","ts":"2024-08-16T17:14:54Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-xzvdm","namespace":"scale"},"namespace":"scale","name":"backend-xzvdm","reconcileID":"8dd24019-f95b-4fd5-aee0-7d8ceb269217"} +{"level":"info","ts":"2024-08-16T17:14:54Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-xzvdm","namespace":"scale"},"namespace":"scale","name":"backend-xzvdm","reconcileID":"8dd24019-f95b-4fd5-aee0-7d8ceb269217"} +{"level":"info","ts":"2024-08-16T17:14:54Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:14:54Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":87,"total":1} +{"level":"info","ts":"2024-08-16T17:14:54Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:54Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:54Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:54Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:54Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:54Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:54Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:54Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:54Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:54Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:54Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":87} +{"level":"info","ts":"2024-08-16T17:14:54Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":87} +{"level":"info","ts":"2024-08-16T17:14:54Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-xzvdm","namespace":"scale"},"namespace":"scale","name":"backend-xzvdm","reconcileID":"dfd0e7db-c99c-4d66-8e3b-5453238aa129"} +{"level":"info","ts":"2024-08-16T17:14:54Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-xzvdm","namespace":"scale"},"namespace":"scale","name":"backend-xzvdm","reconcileID":"dfd0e7db-c99c-4d66-8e3b-5453238aa129"} +{"level":"info","ts":"2024-08-16T17:14:54Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:14:54Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":88,"total":1} +{"level":"info","ts":"2024-08-16T17:14:54Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:54Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:54Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:54Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:54Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:54Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:54Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:54Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:54Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:54Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:54Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":88} +{"level":"info","ts":"2024-08-16T17:14:54Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":88} +{"level":"info","ts":"2024-08-16T17:14:54Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-xzvdm","namespace":"scale"},"namespace":"scale","name":"backend-xzvdm","reconcileID":"d70b7d7e-cb76-4dc7-a489-24f500fd5bbb"} +{"level":"info","ts":"2024-08-16T17:14:54Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-xzvdm","namespace":"scale"},"namespace":"scale","name":"backend-xzvdm","reconcileID":"d70b7d7e-cb76-4dc7-a489-24f500fd5bbb"} +{"level":"info","ts":"2024-08-16T17:14:54Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:14:54Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":89,"total":1} +{"level":"info","ts":"2024-08-16T17:14:54Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:54Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:54Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:54Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:54Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:54Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:54Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:54Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:54Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:54Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:54Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":89} +{"level":"info","ts":"2024-08-16T17:14:54Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":89} +{"level":"info","ts":"2024-08-16T17:14:54Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-xzvdm","namespace":"scale"},"namespace":"scale","name":"backend-xzvdm","reconcileID":"3cae45da-4b88-48b3-8d07-4941b3d37cf3"} +{"level":"info","ts":"2024-08-16T17:14:54Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-xzvdm","namespace":"scale"},"namespace":"scale","name":"backend-xzvdm","reconcileID":"3cae45da-4b88-48b3-8d07-4941b3d37cf3"} +{"level":"info","ts":"2024-08-16T17:14:54Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:14:54Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":90,"total":1} +{"level":"info","ts":"2024-08-16T17:14:54Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:54Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:54Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:54Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:54Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:54Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:54Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:54Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:54Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:54Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:54Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":90} +{"level":"info","ts":"2024-08-16T17:14:54Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":90} +{"level":"info","ts":"2024-08-16T17:14:54Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-xzvdm","namespace":"scale"},"namespace":"scale","name":"backend-xzvdm","reconcileID":"3072a361-0e7a-49f8-a979-0597fe7bd918"} +{"level":"info","ts":"2024-08-16T17:14:54Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-xzvdm","namespace":"scale"},"namespace":"scale","name":"backend-xzvdm","reconcileID":"3072a361-0e7a-49f8-a979-0597fe7bd918"} +{"level":"info","ts":"2024-08-16T17:14:54Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:14:54Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":91,"total":1} +{"level":"info","ts":"2024-08-16T17:14:54Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:54Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:54Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:54Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:54Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:54Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:54Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:54Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:54Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:54Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:54Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":91} +{"level":"info","ts":"2024-08-16T17:14:54Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":91} +{"level":"info","ts":"2024-08-16T17:14:54Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-xzvdm","namespace":"scale"},"namespace":"scale","name":"backend-xzvdm","reconcileID":"3474c720-dc65-4a1d-9554-66274b0daaf1"} +{"level":"info","ts":"2024-08-16T17:14:54Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-xzvdm","namespace":"scale"},"namespace":"scale","name":"backend-xzvdm","reconcileID":"3474c720-dc65-4a1d-9554-66274b0daaf1"} +{"level":"info","ts":"2024-08-16T17:14:54Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:14:54Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":92,"total":1} +{"level":"info","ts":"2024-08-16T17:14:54Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:54Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:54Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:54Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:54Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:54Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:54Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:54Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:54Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:54Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:54Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":92} +{"level":"info","ts":"2024-08-16T17:14:54Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":92} +{"level":"info","ts":"2024-08-16T17:14:54Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-xzvdm","namespace":"scale"},"namespace":"scale","name":"backend-xzvdm","reconcileID":"af720f6b-e587-444a-a96a-d8d7b6d61ac7"} +{"level":"info","ts":"2024-08-16T17:14:54Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-xzvdm","namespace":"scale"},"namespace":"scale","name":"backend-xzvdm","reconcileID":"af720f6b-e587-444a-a96a-d8d7b6d61ac7"} +{"level":"info","ts":"2024-08-16T17:14:54Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:14:54Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":93,"total":1} +{"level":"info","ts":"2024-08-16T17:14:54Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:54Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:54Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:54Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:54Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:54Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:54Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:54Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:54Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:54Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:54Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":93} +{"level":"info","ts":"2024-08-16T17:14:54Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":93} +{"level":"info","ts":"2024-08-16T17:14:55Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-xzvdm","namespace":"scale"},"namespace":"scale","name":"backend-xzvdm","reconcileID":"a75de746-843a-4448-a5f0-c3678e4ce378"} +{"level":"info","ts":"2024-08-16T17:14:55Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-xzvdm","namespace":"scale"},"namespace":"scale","name":"backend-xzvdm","reconcileID":"a75de746-843a-4448-a5f0-c3678e4ce378"} +{"level":"info","ts":"2024-08-16T17:14:55Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:14:55Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":94,"total":1} +{"level":"info","ts":"2024-08-16T17:14:55Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:55Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:55Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:55Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:55Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:55Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:55Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:55Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:55Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:55Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:55Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":94} +{"level":"info","ts":"2024-08-16T17:14:55Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":94} +{"level":"info","ts":"2024-08-16T17:14:55Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-xzvdm","namespace":"scale"},"namespace":"scale","name":"backend-xzvdm","reconcileID":"97e5827b-64ca-43cb-ad30-f08a07f5a20c"} +{"level":"info","ts":"2024-08-16T17:14:55Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-xzvdm","namespace":"scale"},"namespace":"scale","name":"backend-xzvdm","reconcileID":"97e5827b-64ca-43cb-ad30-f08a07f5a20c"} +{"level":"info","ts":"2024-08-16T17:14:55Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:14:55Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":95,"total":1} +{"level":"info","ts":"2024-08-16T17:14:55Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:55Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:55Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:55Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:55Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:55Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:55Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:55Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:55Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:55Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:55Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":95} +{"level":"info","ts":"2024-08-16T17:14:55Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":95} +{"level":"info","ts":"2024-08-16T17:14:55Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-xzvdm","namespace":"scale"},"namespace":"scale","name":"backend-xzvdm","reconcileID":"e2cd32ac-3936-450c-9909-eba2e0f49aa0"} +{"level":"info","ts":"2024-08-16T17:14:55Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-xzvdm","namespace":"scale"},"namespace":"scale","name":"backend-xzvdm","reconcileID":"e2cd32ac-3936-450c-9909-eba2e0f49aa0"} +{"level":"info","ts":"2024-08-16T17:14:55Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:14:55Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":96,"total":1} +{"level":"info","ts":"2024-08-16T17:14:55Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:55Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:55Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:55Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:55Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:55Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:55Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:55Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:55Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:55Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:55Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":96} +{"level":"info","ts":"2024-08-16T17:14:55Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":96} +{"level":"info","ts":"2024-08-16T17:14:55Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-xzvdm","namespace":"scale"},"namespace":"scale","name":"backend-xzvdm","reconcileID":"6dcd4827-d824-44bb-9b29-57eaaf8f44aa"} +{"level":"info","ts":"2024-08-16T17:14:55Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-xzvdm","namespace":"scale"},"namespace":"scale","name":"backend-xzvdm","reconcileID":"6dcd4827-d824-44bb-9b29-57eaaf8f44aa"} +{"level":"info","ts":"2024-08-16T17:14:55Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:14:55Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":97,"total":1} +{"level":"info","ts":"2024-08-16T17:14:55Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:55Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:55Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:55Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:55Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:55Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:55Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:55Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:55Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:55Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:55Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":97} +{"level":"info","ts":"2024-08-16T17:14:55Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":97} +{"level":"info","ts":"2024-08-16T17:14:55Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-xzvdm","namespace":"scale"},"namespace":"scale","name":"backend-xzvdm","reconcileID":"f196e012-47b3-4e26-af51-ec23ff4be88a"} +{"level":"info","ts":"2024-08-16T17:14:55Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-xzvdm","namespace":"scale"},"namespace":"scale","name":"backend-xzvdm","reconcileID":"f196e012-47b3-4e26-af51-ec23ff4be88a"} +{"level":"info","ts":"2024-08-16T17:14:55Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:14:55Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":98,"total":1} +{"level":"info","ts":"2024-08-16T17:14:55Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:55Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:55Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:55Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:55Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:55Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:55Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:55Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:55Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:55Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:55Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":98} +{"level":"info","ts":"2024-08-16T17:14:55Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":98} +{"level":"info","ts":"2024-08-16T17:14:55Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-xzvdm","namespace":"scale"},"namespace":"scale","name":"backend-xzvdm","reconcileID":"d160c4bf-f7eb-4ddb-af7e-18787737f43c"} +{"level":"info","ts":"2024-08-16T17:14:55Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-xzvdm","namespace":"scale"},"namespace":"scale","name":"backend-xzvdm","reconcileID":"d160c4bf-f7eb-4ddb-af7e-18787737f43c"} +{"level":"info","ts":"2024-08-16T17:14:55Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:14:55Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":99,"total":1} +{"level":"info","ts":"2024-08-16T17:14:55Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:55Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:55Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:55Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:55Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:55Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:55Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:55Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:55Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:55Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:55Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":99} +{"level":"info","ts":"2024-08-16T17:14:55Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":99} +{"level":"info","ts":"2024-08-16T17:14:55Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-xzvdm","namespace":"scale"},"namespace":"scale","name":"backend-xzvdm","reconcileID":"5c54f942-68ba-4d6b-8c92-ff3e94419169"} +{"level":"info","ts":"2024-08-16T17:14:55Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-xzvdm","namespace":"scale"},"namespace":"scale","name":"backend-xzvdm","reconcileID":"5c54f942-68ba-4d6b-8c92-ff3e94419169"} +{"level":"info","ts":"2024-08-16T17:14:55Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:14:55Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":100,"total":1} +{"level":"info","ts":"2024-08-16T17:14:55Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:55Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:55Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:55Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:55Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:55Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:55Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:55Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:55Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:55Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:55Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":100} +{"level":"info","ts":"2024-08-16T17:14:55Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":100} +{"level":"info","ts":"2024-08-16T17:14:55Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-xzvdm","namespace":"scale"},"namespace":"scale","name":"backend-xzvdm","reconcileID":"a3287fcd-ec56-4140-9787-1355d8b12914"} +{"level":"info","ts":"2024-08-16T17:14:55Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-xzvdm","namespace":"scale"},"namespace":"scale","name":"backend-xzvdm","reconcileID":"a3287fcd-ec56-4140-9787-1355d8b12914"} +{"level":"info","ts":"2024-08-16T17:14:55Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:14:55Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":101,"total":1} +{"level":"info","ts":"2024-08-16T17:14:55Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:55Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:55Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:55Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:55Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:55Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:55Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:55Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:55Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:55Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:55Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":101} +{"level":"info","ts":"2024-08-16T17:14:55Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":101} +{"level":"info","ts":"2024-08-16T17:14:55Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-xzvdm","namespace":"scale"},"namespace":"scale","name":"backend-xzvdm","reconcileID":"05dcb938-8fd1-4061-8ebb-085ca41256d8"} +{"level":"info","ts":"2024-08-16T17:14:55Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-xzvdm","namespace":"scale"},"namespace":"scale","name":"backend-xzvdm","reconcileID":"05dcb938-8fd1-4061-8ebb-085ca41256d8"} +{"level":"info","ts":"2024-08-16T17:14:55Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:14:55Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":102,"total":1} +{"level":"info","ts":"2024-08-16T17:14:55Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:55Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:55Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:55Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:55Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:55Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:55Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:55Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:55Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:55Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:55Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":102} +{"level":"info","ts":"2024-08-16T17:14:55Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":102} +{"level":"info","ts":"2024-08-16T17:14:55Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-xzvdm","namespace":"scale"},"namespace":"scale","name":"backend-xzvdm","reconcileID":"f076e994-959d-4cc9-b0a3-8b3400d7bf4f"} +{"level":"info","ts":"2024-08-16T17:14:55Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-xzvdm","namespace":"scale"},"namespace":"scale","name":"backend-xzvdm","reconcileID":"f076e994-959d-4cc9-b0a3-8b3400d7bf4f"} +{"level":"info","ts":"2024-08-16T17:14:55Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:14:55Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":103,"total":1} +{"level":"info","ts":"2024-08-16T17:14:55Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:55Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:55Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:55Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:55Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:55Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:55Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:55Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:55Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:55Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:55Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":103} +{"level":"info","ts":"2024-08-16T17:14:55Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":103} +{"level":"info","ts":"2024-08-16T17:14:55Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-xzvdm","namespace":"scale"},"namespace":"scale","name":"backend-xzvdm","reconcileID":"122cd89c-5c3e-4d6b-b9e8-1d3248089a4d"} +{"level":"info","ts":"2024-08-16T17:14:55Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-xzvdm","namespace":"scale"},"namespace":"scale","name":"backend-xzvdm","reconcileID":"122cd89c-5c3e-4d6b-b9e8-1d3248089a4d"} +{"level":"info","ts":"2024-08-16T17:14:55Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:14:55Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":104,"total":1} +{"level":"info","ts":"2024-08-16T17:14:55Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:55Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:55Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:55Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:55Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:55Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:55Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:55Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:55Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:55Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:55Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":104} +{"level":"info","ts":"2024-08-16T17:14:55Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":104} +{"level":"info","ts":"2024-08-16T17:14:55Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-xzvdm","namespace":"scale"},"namespace":"scale","name":"backend-xzvdm","reconcileID":"7abfb2c0-2eef-4ad9-bfe5-fbb076280b7b"} +{"level":"info","ts":"2024-08-16T17:14:55Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-xzvdm","namespace":"scale"},"namespace":"scale","name":"backend-xzvdm","reconcileID":"7abfb2c0-2eef-4ad9-bfe5-fbb076280b7b"} +{"level":"info","ts":"2024-08-16T17:14:55Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:14:55Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":105,"total":1} +{"level":"info","ts":"2024-08-16T17:14:55Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:55Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:55Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:55Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:55Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:55Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:55Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:55Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:55Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:55Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:55Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":105} +{"level":"info","ts":"2024-08-16T17:14:55Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":105} +{"level":"info","ts":"2024-08-16T17:14:55Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-xzvdm","namespace":"scale"},"namespace":"scale","name":"backend-xzvdm","reconcileID":"7f8231a5-3292-4b02-bbd9-fcb6e068634d"} +{"level":"info","ts":"2024-08-16T17:14:55Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-xzvdm","namespace":"scale"},"namespace":"scale","name":"backend-xzvdm","reconcileID":"7f8231a5-3292-4b02-bbd9-fcb6e068634d"} +{"level":"info","ts":"2024-08-16T17:14:55Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:14:55Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":106,"total":1} +{"level":"info","ts":"2024-08-16T17:14:55Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:55Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:55Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:55Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:55Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:55Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:55Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:55Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:55Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:55Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:55Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":106} +{"level":"info","ts":"2024-08-16T17:14:55Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":106} +{"level":"info","ts":"2024-08-16T17:14:56Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-xzvdm","namespace":"scale"},"namespace":"scale","name":"backend-xzvdm","reconcileID":"e3c8a40c-405e-40e8-a0bb-f9bbdb3299a3"} +{"level":"info","ts":"2024-08-16T17:14:56Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-xzvdm","namespace":"scale"},"namespace":"scale","name":"backend-xzvdm","reconcileID":"e3c8a40c-405e-40e8-a0bb-f9bbdb3299a3"} +{"level":"info","ts":"2024-08-16T17:14:56Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:14:56Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":107,"total":1} +{"level":"info","ts":"2024-08-16T17:14:56Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:56Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:56Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:56Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:56Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:56Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:56Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:56Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:56Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:56Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:56Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":107} +{"level":"info","ts":"2024-08-16T17:14:56Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":107} +{"level":"info","ts":"2024-08-16T17:14:56Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-xzvdm","namespace":"scale"},"namespace":"scale","name":"backend-xzvdm","reconcileID":"cf24233c-1042-41e7-ab1d-db7cc4992454"} +{"level":"info","ts":"2024-08-16T17:14:56Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-xzvdm","namespace":"scale"},"namespace":"scale","name":"backend-xzvdm","reconcileID":"cf24233c-1042-41e7-ab1d-db7cc4992454"} +{"level":"info","ts":"2024-08-16T17:14:56Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:14:56Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":108,"total":1} +{"level":"info","ts":"2024-08-16T17:14:56Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:56Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:56Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:56Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:56Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:56Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:56Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:56Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:56Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:56Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:56Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":108} +{"level":"info","ts":"2024-08-16T17:14:56Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":108} +{"level":"info","ts":"2024-08-16T17:14:56Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-xzvdm","namespace":"scale"},"namespace":"scale","name":"backend-xzvdm","reconcileID":"ad9c375c-26bd-49f9-8f53-7674a8e87b75"} +{"level":"info","ts":"2024-08-16T17:14:56Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-xzvdm","namespace":"scale"},"namespace":"scale","name":"backend-xzvdm","reconcileID":"ad9c375c-26bd-49f9-8f53-7674a8e87b75"} +{"level":"info","ts":"2024-08-16T17:14:56Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:14:56Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":109,"total":1} +{"level":"info","ts":"2024-08-16T17:14:56Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:56Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:56Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:56Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:56Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:56Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:56Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:56Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:56Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:56Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:56Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":109} +{"level":"info","ts":"2024-08-16T17:14:56Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":109} +{"level":"info","ts":"2024-08-16T17:14:56Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-xzvdm","namespace":"scale"},"namespace":"scale","name":"backend-xzvdm","reconcileID":"069aa45d-a492-4e7d-992d-199b0c75afaa"} +{"level":"info","ts":"2024-08-16T17:14:56Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-xzvdm","namespace":"scale"},"namespace":"scale","name":"backend-xzvdm","reconcileID":"069aa45d-a492-4e7d-992d-199b0c75afaa"} +{"level":"info","ts":"2024-08-16T17:14:56Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:14:56Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":110,"total":1} +{"level":"info","ts":"2024-08-16T17:14:56Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:56Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:56Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:56Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:56Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:56Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:56Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:56Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:56Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:56Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:56Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":110} +{"level":"info","ts":"2024-08-16T17:14:56Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":110} +{"level":"info","ts":"2024-08-16T17:14:56Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-xzvdm","namespace":"scale"},"namespace":"scale","name":"backend-xzvdm","reconcileID":"18f842a4-97e7-4997-b42c-56b482c26b1d"} +{"level":"info","ts":"2024-08-16T17:14:56Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-xzvdm","namespace":"scale"},"namespace":"scale","name":"backend-xzvdm","reconcileID":"18f842a4-97e7-4997-b42c-56b482c26b1d"} +{"level":"info","ts":"2024-08-16T17:14:56Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:14:56Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":111,"total":1} +{"level":"info","ts":"2024-08-16T17:14:56Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:56Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:56Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:56Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:56Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:56Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:56Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:56Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:56Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:56Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:56Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":111} +{"level":"info","ts":"2024-08-16T17:14:56Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":111} +{"level":"info","ts":"2024-08-16T17:14:56Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-xzvdm","namespace":"scale"},"namespace":"scale","name":"backend-xzvdm","reconcileID":"d395498f-ad9a-4092-b3c2-ca6943dbf255"} +{"level":"info","ts":"2024-08-16T17:14:56Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-xzvdm","namespace":"scale"},"namespace":"scale","name":"backend-xzvdm","reconcileID":"d395498f-ad9a-4092-b3c2-ca6943dbf255"} +{"level":"info","ts":"2024-08-16T17:14:56Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:14:56Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":112,"total":1} +{"level":"info","ts":"2024-08-16T17:14:56Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:56Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:56Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:56Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:56Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:56Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:56Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:56Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:56Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:56Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:56Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":112} +{"level":"info","ts":"2024-08-16T17:14:56Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":112} +{"level":"info","ts":"2024-08-16T17:14:56Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-xzvdm","namespace":"scale"},"namespace":"scale","name":"backend-xzvdm","reconcileID":"246ce2c4-4086-4116-8907-7d3f48c40149"} +{"level":"info","ts":"2024-08-16T17:14:56Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-xzvdm","namespace":"scale"},"namespace":"scale","name":"backend-xzvdm","reconcileID":"246ce2c4-4086-4116-8907-7d3f48c40149"} +{"level":"info","ts":"2024-08-16T17:14:56Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:14:56Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":113,"total":1} +{"level":"info","ts":"2024-08-16T17:14:56Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:56Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:56Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:56Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:56Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:56Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:56Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:56Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:56Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:56Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:56Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":113} +{"level":"info","ts":"2024-08-16T17:14:56Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":113} +{"level":"info","ts":"2024-08-16T17:14:56Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-xzvdm","namespace":"scale"},"namespace":"scale","name":"backend-xzvdm","reconcileID":"95f29388-6d12-4d5e-8f16-91f03ea4b167"} +{"level":"info","ts":"2024-08-16T17:14:56Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-xzvdm","namespace":"scale"},"namespace":"scale","name":"backend-xzvdm","reconcileID":"95f29388-6d12-4d5e-8f16-91f03ea4b167"} +{"level":"info","ts":"2024-08-16T17:14:56Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:14:56Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":114,"total":1} +{"level":"info","ts":"2024-08-16T17:14:56Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:56Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:56Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:56Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:56Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:56Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:56Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:56Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:56Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:56Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:56Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":114} +{"level":"info","ts":"2024-08-16T17:14:56Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":114} +{"level":"info","ts":"2024-08-16T17:14:56Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-xzvdm","namespace":"scale"},"namespace":"scale","name":"backend-xzvdm","reconcileID":"20799d3d-1d27-49df-8a78-39eb71c7811c"} +{"level":"info","ts":"2024-08-16T17:14:56Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-xzvdm","namespace":"scale"},"namespace":"scale","name":"backend-xzvdm","reconcileID":"20799d3d-1d27-49df-8a78-39eb71c7811c"} +{"level":"info","ts":"2024-08-16T17:14:56Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:14:56Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":115,"total":1} +{"level":"info","ts":"2024-08-16T17:14:56Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:56Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:56Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:56Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:56Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:56Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:56Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:56Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:56Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:56Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:56Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":115} +{"level":"info","ts":"2024-08-16T17:14:56Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":115} +{"level":"info","ts":"2024-08-16T17:14:56Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-xzvdm","namespace":"scale"},"namespace":"scale","name":"backend-xzvdm","reconcileID":"8a484e65-3cff-4bb1-87f4-d6375e39c602"} +{"level":"info","ts":"2024-08-16T17:14:56Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-xzvdm","namespace":"scale"},"namespace":"scale","name":"backend-xzvdm","reconcileID":"8a484e65-3cff-4bb1-87f4-d6375e39c602"} +{"level":"info","ts":"2024-08-16T17:14:56Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:14:56Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":116,"total":1} +{"level":"info","ts":"2024-08-16T17:14:56Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:56Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:56Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:56Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:56Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:56Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:56Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:56Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:56Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:56Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:56Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":116} +{"level":"info","ts":"2024-08-16T17:14:56Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":116} +{"level":"info","ts":"2024-08-16T17:14:56Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-xzvdm","namespace":"scale"},"namespace":"scale","name":"backend-xzvdm","reconcileID":"7b4fd320-50ad-4001-ba4e-3420e8bc3ce2"} +{"level":"info","ts":"2024-08-16T17:14:56Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-xzvdm","namespace":"scale"},"namespace":"scale","name":"backend-xzvdm","reconcileID":"7b4fd320-50ad-4001-ba4e-3420e8bc3ce2"} +{"level":"info","ts":"2024-08-16T17:14:56Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:14:56Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":117,"total":1} +{"level":"info","ts":"2024-08-16T17:14:56Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:56Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:56Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:56Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:56Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:56Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:56Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:56Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:56Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:56Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:56Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":117} +{"level":"info","ts":"2024-08-16T17:14:56Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":117} +{"level":"info","ts":"2024-08-16T17:14:56Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-xzvdm","namespace":"scale"},"namespace":"scale","name":"backend-xzvdm","reconcileID":"76cedc32-ee61-481b-a370-0de766f30eec"} +{"level":"info","ts":"2024-08-16T17:14:56Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-xzvdm","namespace":"scale"},"namespace":"scale","name":"backend-xzvdm","reconcileID":"76cedc32-ee61-481b-a370-0de766f30eec"} +{"level":"info","ts":"2024-08-16T17:14:56Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:14:56Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":118,"total":1} +{"level":"info","ts":"2024-08-16T17:14:56Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:56Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:56Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:56Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:56Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:56Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:56Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:56Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:56Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:56Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:56Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":118} +{"level":"info","ts":"2024-08-16T17:14:56Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":118} +{"level":"info","ts":"2024-08-16T17:14:57Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-xzvdm","namespace":"scale"},"namespace":"scale","name":"backend-xzvdm","reconcileID":"03d982fc-02eb-4191-ad20-83ad080f6fbe"} +{"level":"info","ts":"2024-08-16T17:14:57Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-xzvdm","namespace":"scale"},"namespace":"scale","name":"backend-xzvdm","reconcileID":"03d982fc-02eb-4191-ad20-83ad080f6fbe"} +{"level":"info","ts":"2024-08-16T17:14:57Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:14:57Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":119,"total":1} +{"level":"info","ts":"2024-08-16T17:14:57Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:57Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:57Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:57Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:57Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:57Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:57Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:57Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:57Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:57Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:57Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":119} +{"level":"info","ts":"2024-08-16T17:14:57Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":119} +{"level":"info","ts":"2024-08-16T17:14:57Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-xzvdm","namespace":"scale"},"namespace":"scale","name":"backend-xzvdm","reconcileID":"defe26f5-5c19-4061-9a7a-281360d36d2a"} +{"level":"info","ts":"2024-08-16T17:14:57Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-xzvdm","namespace":"scale"},"namespace":"scale","name":"backend-xzvdm","reconcileID":"defe26f5-5c19-4061-9a7a-281360d36d2a"} +{"level":"info","ts":"2024-08-16T17:14:57Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:14:57Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":120,"total":1} +{"level":"info","ts":"2024-08-16T17:14:57Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:57Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:57Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:57Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:57Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:57Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:57Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:57Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:57Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:57Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:57Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":120} +{"level":"info","ts":"2024-08-16T17:14:57Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":120} +{"level":"info","ts":"2024-08-16T17:14:57Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-xzvdm","namespace":"scale"},"namespace":"scale","name":"backend-xzvdm","reconcileID":"06101455-0829-4e8b-8b43-f333295c804d"} +{"level":"info","ts":"2024-08-16T17:14:57Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-xzvdm","namespace":"scale"},"namespace":"scale","name":"backend-xzvdm","reconcileID":"06101455-0829-4e8b-8b43-f333295c804d"} +{"level":"info","ts":"2024-08-16T17:14:57Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:14:57Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":121,"total":1} +{"level":"info","ts":"2024-08-16T17:14:57Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:57Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:57Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:57Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:57Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:57Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:57Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:57Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:57Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:57Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:57Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":121} +{"level":"info","ts":"2024-08-16T17:14:57Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":121} +{"level":"info","ts":"2024-08-16T17:14:57Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-xzvdm","namespace":"scale"},"namespace":"scale","name":"backend-xzvdm","reconcileID":"23fb59bf-d956-476e-8568-e41693001c01"} +{"level":"info","ts":"2024-08-16T17:14:57Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-xzvdm","namespace":"scale"},"namespace":"scale","name":"backend-xzvdm","reconcileID":"23fb59bf-d956-476e-8568-e41693001c01"} +{"level":"info","ts":"2024-08-16T17:14:57Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:14:57Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":122,"total":1} +{"level":"info","ts":"2024-08-16T17:14:57Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:57Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:57Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:57Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:57Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:57Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:57Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:57Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:57Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:57Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:57Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":122} +{"level":"info","ts":"2024-08-16T17:14:57Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":122} +{"level":"info","ts":"2024-08-16T17:14:57Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-xzvdm","namespace":"scale"},"namespace":"scale","name":"backend-xzvdm","reconcileID":"1c748823-b78c-44c5-8f95-aa8f77745209"} +{"level":"info","ts":"2024-08-16T17:14:57Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-xzvdm","namespace":"scale"},"namespace":"scale","name":"backend-xzvdm","reconcileID":"1c748823-b78c-44c5-8f95-aa8f77745209"} +{"level":"info","ts":"2024-08-16T17:14:57Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:14:57Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":123,"total":1} +{"level":"info","ts":"2024-08-16T17:14:57Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:57Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:57Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:57Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:57Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:57Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:57Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:57Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:57Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:57Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:57Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":123} +{"level":"info","ts":"2024-08-16T17:14:57Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":123} +{"level":"info","ts":"2024-08-16T17:14:57Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-xzvdm","namespace":"scale"},"namespace":"scale","name":"backend-xzvdm","reconcileID":"b273bbf5-5eeb-4e76-bd35-a29ee9415258"} +{"level":"info","ts":"2024-08-16T17:14:57Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-xzvdm","namespace":"scale"},"namespace":"scale","name":"backend-xzvdm","reconcileID":"b273bbf5-5eeb-4e76-bd35-a29ee9415258"} +{"level":"info","ts":"2024-08-16T17:14:57Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:14:57Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":124,"total":1} +{"level":"info","ts":"2024-08-16T17:14:57Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:57Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:57Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:57Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:57Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:57Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:57Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:57Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:57Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:57Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:57Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":124} +{"level":"info","ts":"2024-08-16T17:14:57Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":124} +{"level":"info","ts":"2024-08-16T17:14:57Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-xzvdm","namespace":"scale"},"namespace":"scale","name":"backend-xzvdm","reconcileID":"4fd773ad-0ff2-453a-a2ee-cccce10e115e"} +{"level":"info","ts":"2024-08-16T17:14:57Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-xzvdm","namespace":"scale"},"namespace":"scale","name":"backend-xzvdm","reconcileID":"4fd773ad-0ff2-453a-a2ee-cccce10e115e"} +{"level":"info","ts":"2024-08-16T17:14:57Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:14:57Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":125,"total":1} +{"level":"info","ts":"2024-08-16T17:14:57Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:57Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:57Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:57Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:57Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:57Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:57Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:57Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:57Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:57Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:57Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":125} +{"level":"info","ts":"2024-08-16T17:14:57Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":125} +{"level":"info","ts":"2024-08-16T17:14:57Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-xzvdm","namespace":"scale"},"namespace":"scale","name":"backend-xzvdm","reconcileID":"0fc430e5-be90-4ecc-a4d8-cd565d54bcfe"} +{"level":"info","ts":"2024-08-16T17:14:57Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-xzvdm","namespace":"scale"},"namespace":"scale","name":"backend-xzvdm","reconcileID":"0fc430e5-be90-4ecc-a4d8-cd565d54bcfe"} +{"level":"info","ts":"2024-08-16T17:14:57Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:14:57Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":126,"total":1} +{"level":"info","ts":"2024-08-16T17:14:57Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:57Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:57Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:57Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:57Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:57Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:57Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:57Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:57Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:57Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:57Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":126} +{"level":"info","ts":"2024-08-16T17:14:57Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":126} +{"level":"info","ts":"2024-08-16T17:14:57Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-xzvdm","namespace":"scale"},"namespace":"scale","name":"backend-xzvdm","reconcileID":"b55579ff-2985-4c21-b747-cf9c38c26987"} +{"level":"info","ts":"2024-08-16T17:14:57Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-xzvdm","namespace":"scale"},"namespace":"scale","name":"backend-xzvdm","reconcileID":"b55579ff-2985-4c21-b747-cf9c38c26987"} +{"level":"info","ts":"2024-08-16T17:14:57Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:14:57Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":127,"total":1} +{"level":"info","ts":"2024-08-16T17:14:57Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:57Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:57Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:57Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:57Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:57Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:57Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:57Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:57Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:57Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:57Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":127} +{"level":"info","ts":"2024-08-16T17:14:57Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":127} +{"level":"info","ts":"2024-08-16T17:14:58Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-xzvdm","namespace":"scale"},"namespace":"scale","name":"backend-xzvdm","reconcileID":"12cd33de-f52b-4cea-89ae-7a67b053ebc7"} +{"level":"info","ts":"2024-08-16T17:14:58Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-xzvdm","namespace":"scale"},"namespace":"scale","name":"backend-xzvdm","reconcileID":"12cd33de-f52b-4cea-89ae-7a67b053ebc7"} +{"level":"info","ts":"2024-08-16T17:14:58Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:14:58Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":128,"total":1} +{"level":"info","ts":"2024-08-16T17:14:58Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:58Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:58Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:58Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:58Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:58Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:58Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:58Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:58Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:58Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:58Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":128} +{"level":"info","ts":"2024-08-16T17:14:58Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":128} +{"level":"info","ts":"2024-08-16T17:14:58Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-xzvdm","namespace":"scale"},"namespace":"scale","name":"backend-xzvdm","reconcileID":"de26e2fe-471e-481c-8652-95795e8479a6"} +{"level":"info","ts":"2024-08-16T17:14:58Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-xzvdm","namespace":"scale"},"namespace":"scale","name":"backend-xzvdm","reconcileID":"de26e2fe-471e-481c-8652-95795e8479a6"} +{"level":"info","ts":"2024-08-16T17:14:58Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:14:58Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":129,"total":1} +{"level":"info","ts":"2024-08-16T17:14:58Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:58Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:58Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:58Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:58Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:58Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:58Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:58Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:58Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:58Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:58Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":129} +{"level":"info","ts":"2024-08-16T17:14:58Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":129} +{"level":"info","ts":"2024-08-16T17:14:58Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-xzvdm","namespace":"scale"},"namespace":"scale","name":"backend-xzvdm","reconcileID":"bf4149ba-aa0e-4b60-9b8c-8aa840014d10"} +{"level":"info","ts":"2024-08-16T17:14:58Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-xzvdm","namespace":"scale"},"namespace":"scale","name":"backend-xzvdm","reconcileID":"bf4149ba-aa0e-4b60-9b8c-8aa840014d10"} +{"level":"info","ts":"2024-08-16T17:14:58Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:14:58Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":130,"total":1} +{"level":"info","ts":"2024-08-16T17:14:58Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:58Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:58Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:58Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:58Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:58Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:58Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:58Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:58Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:58Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:58Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":130} +{"level":"info","ts":"2024-08-16T17:14:58Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":130} +{"level":"info","ts":"2024-08-16T17:14:58Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-xzvdm","namespace":"scale"},"namespace":"scale","name":"backend-xzvdm","reconcileID":"128b58c1-3836-4903-98ac-df6a6013d1af"} +{"level":"info","ts":"2024-08-16T17:14:58Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-xzvdm","namespace":"scale"},"namespace":"scale","name":"backend-xzvdm","reconcileID":"128b58c1-3836-4903-98ac-df6a6013d1af"} +{"level":"info","ts":"2024-08-16T17:14:58Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:14:58Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":131,"total":1} +{"level":"info","ts":"2024-08-16T17:14:58Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:58Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:58Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:58Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:58Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:58Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:58Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:58Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:58Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:58Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:58Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":131} +{"level":"info","ts":"2024-08-16T17:14:58Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":131} +{"level":"info","ts":"2024-08-16T17:14:59Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-xzvdm","namespace":"scale"},"namespace":"scale","name":"backend-xzvdm","reconcileID":"5212670b-5e28-4cad-bbc6-525f8562eeed"} +{"level":"info","ts":"2024-08-16T17:14:59Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-xzvdm","namespace":"scale"},"namespace":"scale","name":"backend-xzvdm","reconcileID":"5212670b-5e28-4cad-bbc6-525f8562eeed"} +{"level":"info","ts":"2024-08-16T17:14:59Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:14:59Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":132,"total":1} +{"level":"info","ts":"2024-08-16T17:14:59Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:59Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:59Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:59Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:59Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:59Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:59Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:59Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:59Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:59Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:59Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":132} +{"level":"info","ts":"2024-08-16T17:14:59Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":132} +{"level":"info","ts":"2024-08-16T17:14:59Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-xzvdm","namespace":"scale"},"namespace":"scale","name":"backend-xzvdm","reconcileID":"3d8cf890-62e2-44a1-a716-c42e3d44a310"} +{"level":"info","ts":"2024-08-16T17:14:59Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-xzvdm","namespace":"scale"},"namespace":"scale","name":"backend-xzvdm","reconcileID":"3d8cf890-62e2-44a1-a716-c42e3d44a310"} +{"level":"info","ts":"2024-08-16T17:14:59Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:14:59Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":133,"total":1} +{"level":"info","ts":"2024-08-16T17:14:59Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:59Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:59Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:59Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:59Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:59Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:59Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:59Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:59Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:59Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:59Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":133} +{"level":"info","ts":"2024-08-16T17:14:59Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":133} +{"level":"info","ts":"2024-08-16T17:14:59Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-xzvdm","namespace":"scale"},"namespace":"scale","name":"backend-xzvdm","reconcileID":"770284d3-9742-42b9-b55c-04d0f10d5c31"} +{"level":"info","ts":"2024-08-16T17:14:59Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-xzvdm","namespace":"scale"},"namespace":"scale","name":"backend-xzvdm","reconcileID":"770284d3-9742-42b9-b55c-04d0f10d5c31"} +{"level":"info","ts":"2024-08-16T17:14:59Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:14:59Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":134,"total":1} +{"level":"info","ts":"2024-08-16T17:14:59Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:59Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:59Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:59Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:59Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:59Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:14:59Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:14:59Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:14:59Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:14:59Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:14:59Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":134} +{"level":"info","ts":"2024-08-16T17:14:59Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":134} +{"level":"info","ts":"2024-08-16T17:15:00Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-xzvdm","namespace":"scale"},"namespace":"scale","name":"backend-xzvdm","reconcileID":"4b0e4daa-79fa-41a0-a810-6909af7a1e41"} +{"level":"info","ts":"2024-08-16T17:15:00Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-xzvdm","namespace":"scale"},"namespace":"scale","name":"backend-xzvdm","reconcileID":"4b0e4daa-79fa-41a0-a810-6909af7a1e41"} +{"level":"info","ts":"2024-08-16T17:15:00Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:15:00Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":135,"total":1} +{"level":"info","ts":"2024-08-16T17:15:00Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:00Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:00Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:00Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:00Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:00Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:00Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:00Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:00Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:00Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:00Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":135} +{"level":"info","ts":"2024-08-16T17:15:00Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":135} +{"level":"info","ts":"2024-08-16T17:15:00Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-xzvdm","namespace":"scale"},"namespace":"scale","name":"backend-xzvdm","reconcileID":"7e13d755-8cd0-4e64-9cd3-fe45ed5191f9"} +{"level":"info","ts":"2024-08-16T17:15:00Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-xzvdm","namespace":"scale"},"namespace":"scale","name":"backend-xzvdm","reconcileID":"7e13d755-8cd0-4e64-9cd3-fe45ed5191f9"} +{"level":"info","ts":"2024-08-16T17:15:00Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:15:00Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":136,"total":1} +{"level":"info","ts":"2024-08-16T17:15:00Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:00Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:00Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:00Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:00Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:00Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:00Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:00Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:00Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:00Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:00Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":136} +{"level":"info","ts":"2024-08-16T17:15:00Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":136} +{"level":"info","ts":"2024-08-16T17:15:00Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-xzvdm","namespace":"scale"},"namespace":"scale","name":"backend-xzvdm","reconcileID":"6dc7f77d-3277-4ef3-9536-4d02d1cdec1f"} +{"level":"info","ts":"2024-08-16T17:15:00Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-xzvdm","namespace":"scale"},"namespace":"scale","name":"backend-xzvdm","reconcileID":"6dc7f77d-3277-4ef3-9536-4d02d1cdec1f"} +{"level":"info","ts":"2024-08-16T17:15:00Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:15:00Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":137,"total":1} +{"level":"info","ts":"2024-08-16T17:15:00Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:00Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:00Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:00Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:00Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:00Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:00Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:00Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:00Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:00Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:00Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":137} +{"level":"info","ts":"2024-08-16T17:15:00Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":137} +{"level":"info","ts":"2024-08-16T17:15:00Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-xzvdm","namespace":"scale"},"namespace":"scale","name":"backend-xzvdm","reconcileID":"c6e61121-5e53-4d23-8fc7-75e39c26d8cf"} +{"level":"info","ts":"2024-08-16T17:15:00Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-xzvdm","namespace":"scale"},"namespace":"scale","name":"backend-xzvdm","reconcileID":"c6e61121-5e53-4d23-8fc7-75e39c26d8cf"} +{"level":"info","ts":"2024-08-16T17:15:00Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:15:00Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":138,"total":1} +{"level":"info","ts":"2024-08-16T17:15:00Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:00Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:00Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:00Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:00Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:00Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:00Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:00Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:00Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:00Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:00Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":138} +{"level":"info","ts":"2024-08-16T17:15:00Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":138} +{"level":"info","ts":"2024-08-16T17:15:00Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-2hf68","namespace":"scale"},"namespace":"scale","name":"backend-2hf68","reconcileID":"857ac0bf-59ee-44b9-b69f-2f4b6875e9e4"} +{"level":"info","ts":"2024-08-16T17:15:00Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-2hf68","namespace":"scale"},"namespace":"scale","name":"backend-2hf68","reconcileID":"857ac0bf-59ee-44b9-b69f-2f4b6875e9e4"} +{"level":"info","ts":"2024-08-16T17:15:00Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:15:00Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":139,"total":1} +{"level":"info","ts":"2024-08-16T17:15:00Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:00Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:00Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:00Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:00Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:00Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:00Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:00Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:00Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:00Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:00Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":139} +{"level":"info","ts":"2024-08-16T17:15:00Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":139} +{"level":"info","ts":"2024-08-16T17:15:01Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-xzvdm","namespace":"scale"},"namespace":"scale","name":"backend-xzvdm","reconcileID":"0b8d8398-df1c-4dd1-bfd6-0cd4736ce1f1"} +{"level":"info","ts":"2024-08-16T17:15:01Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-xzvdm","namespace":"scale"},"namespace":"scale","name":"backend-xzvdm","reconcileID":"0b8d8398-df1c-4dd1-bfd6-0cd4736ce1f1"} +{"level":"info","ts":"2024-08-16T17:15:01Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:15:01Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":140,"total":1} +{"level":"info","ts":"2024-08-16T17:15:01Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:01Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:01Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:01Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:01Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:01Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:01Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:01Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:01Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:01Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:01Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":140} +{"level":"info","ts":"2024-08-16T17:15:01Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":140} +{"level":"info","ts":"2024-08-16T17:15:01Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-2hf68","namespace":"scale"},"namespace":"scale","name":"backend-2hf68","reconcileID":"03d2577b-787b-4ea5-8d68-ecaee99caaac"} +{"level":"info","ts":"2024-08-16T17:15:01Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-2hf68","namespace":"scale"},"namespace":"scale","name":"backend-2hf68","reconcileID":"03d2577b-787b-4ea5-8d68-ecaee99caaac"} +{"level":"info","ts":"2024-08-16T17:15:01Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:15:01Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":141,"total":1} +{"level":"info","ts":"2024-08-16T17:15:01Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:01Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:01Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:01Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:01Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:01Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:01Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:01Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:01Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:01Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:01Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":141} +{"level":"info","ts":"2024-08-16T17:15:01Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":141} +{"level":"info","ts":"2024-08-16T17:15:01Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-xzvdm","namespace":"scale"},"namespace":"scale","name":"backend-xzvdm","reconcileID":"b2a16dd2-f1fb-4861-909d-c18a4359070c"} +{"level":"info","ts":"2024-08-16T17:15:01Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-xzvdm","namespace":"scale"},"namespace":"scale","name":"backend-xzvdm","reconcileID":"b2a16dd2-f1fb-4861-909d-c18a4359070c"} +{"level":"info","ts":"2024-08-16T17:15:01Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:15:01Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":142,"total":1} +{"level":"info","ts":"2024-08-16T17:15:01Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:01Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:01Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:01Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:01Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:01Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:01Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:01Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:01Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:01Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:01Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":142} +{"level":"info","ts":"2024-08-16T17:15:01Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":142} +{"level":"info","ts":"2024-08-16T17:15:01Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-2hf68","namespace":"scale"},"namespace":"scale","name":"backend-2hf68","reconcileID":"21641f1a-2d31-472b-9e8a-33899cf0eb59"} +{"level":"info","ts":"2024-08-16T17:15:01Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-2hf68","namespace":"scale"},"namespace":"scale","name":"backend-2hf68","reconcileID":"21641f1a-2d31-472b-9e8a-33899cf0eb59"} +{"level":"info","ts":"2024-08-16T17:15:01Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:15:01Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":143,"total":1} +{"level":"info","ts":"2024-08-16T17:15:01Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:01Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:01Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:01Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:01Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:01Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:01Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:01Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:01Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:01Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:01Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":143} +{"level":"info","ts":"2024-08-16T17:15:01Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":143} +{"level":"info","ts":"2024-08-16T17:15:01Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-2hf68","namespace":"scale"},"namespace":"scale","name":"backend-2hf68","reconcileID":"9cee9ae2-30b0-4245-879c-a69c656e6508"} +{"level":"info","ts":"2024-08-16T17:15:01Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-2hf68","namespace":"scale"},"namespace":"scale","name":"backend-2hf68","reconcileID":"9cee9ae2-30b0-4245-879c-a69c656e6508"} +{"level":"info","ts":"2024-08-16T17:15:01Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:15:01Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":144,"total":1} +{"level":"info","ts":"2024-08-16T17:15:01Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:01Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:01Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:01Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:01Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:01Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:01Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:01Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:01Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:01Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:01Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":144} +{"level":"info","ts":"2024-08-16T17:15:01Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":144} +{"level":"info","ts":"2024-08-16T17:15:01Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-2hf68","namespace":"scale"},"namespace":"scale","name":"backend-2hf68","reconcileID":"8a583f1a-6d68-4ec4-93ae-afd8cc466233"} +{"level":"info","ts":"2024-08-16T17:15:01Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-2hf68","namespace":"scale"},"namespace":"scale","name":"backend-2hf68","reconcileID":"8a583f1a-6d68-4ec4-93ae-afd8cc466233"} +{"level":"info","ts":"2024-08-16T17:15:01Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:15:01Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":145,"total":1} +{"level":"info","ts":"2024-08-16T17:15:01Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:01Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:01Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:01Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:01Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:01Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:01Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:01Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:01Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:01Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:01Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":145} +{"level":"info","ts":"2024-08-16T17:15:01Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":145} +{"level":"info","ts":"2024-08-16T17:15:01Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-2hf68","namespace":"scale"},"namespace":"scale","name":"backend-2hf68","reconcileID":"ac08cb0a-4420-40fd-b542-75448fb4f901"} +{"level":"info","ts":"2024-08-16T17:15:01Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-2hf68","namespace":"scale"},"namespace":"scale","name":"backend-2hf68","reconcileID":"ac08cb0a-4420-40fd-b542-75448fb4f901"} +{"level":"info","ts":"2024-08-16T17:15:01Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:15:01Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":146,"total":1} +{"level":"info","ts":"2024-08-16T17:15:01Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:01Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:01Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:01Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:01Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:01Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:01Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:01Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:01Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:01Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:01Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":146} +{"level":"info","ts":"2024-08-16T17:15:01Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":146} +{"level":"info","ts":"2024-08-16T17:15:01Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-2hf68","namespace":"scale"},"namespace":"scale","name":"backend-2hf68","reconcileID":"a09107d5-41b7-4011-b188-485e437a9446"} +{"level":"info","ts":"2024-08-16T17:15:01Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-2hf68","namespace":"scale"},"namespace":"scale","name":"backend-2hf68","reconcileID":"a09107d5-41b7-4011-b188-485e437a9446"} +{"level":"info","ts":"2024-08-16T17:15:01Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:15:01Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":147,"total":1} +{"level":"info","ts":"2024-08-16T17:15:01Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:01Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:01Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:01Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:01Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:01Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:01Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:01Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:01Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:01Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:01Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":147} +{"level":"info","ts":"2024-08-16T17:15:01Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":147} +{"level":"info","ts":"2024-08-16T17:15:01Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-2hf68","namespace":"scale"},"namespace":"scale","name":"backend-2hf68","reconcileID":"9facac10-e85a-410f-989f-7f8651460350"} +{"level":"info","ts":"2024-08-16T17:15:01Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-2hf68","namespace":"scale"},"namespace":"scale","name":"backend-2hf68","reconcileID":"9facac10-e85a-410f-989f-7f8651460350"} +{"level":"info","ts":"2024-08-16T17:15:01Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:15:01Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":148,"total":1} +{"level":"info","ts":"2024-08-16T17:15:01Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:01Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:01Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:01Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:01Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:01Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:01Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:01Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:01Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:01Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:01Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":148} +{"level":"info","ts":"2024-08-16T17:15:01Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":148} +{"level":"info","ts":"2024-08-16T17:15:01Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-2hf68","namespace":"scale"},"namespace":"scale","name":"backend-2hf68","reconcileID":"ef9c8b93-18fd-4363-ae40-ed9e7a1bbcb8"} +{"level":"info","ts":"2024-08-16T17:15:01Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-2hf68","namespace":"scale"},"namespace":"scale","name":"backend-2hf68","reconcileID":"ef9c8b93-18fd-4363-ae40-ed9e7a1bbcb8"} +{"level":"info","ts":"2024-08-16T17:15:01Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:15:01Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":149,"total":1} +{"level":"info","ts":"2024-08-16T17:15:01Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:01Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:01Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:01Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:01Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:01Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:01Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:01Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:01Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:01Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:01Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":149} +{"level":"info","ts":"2024-08-16T17:15:01Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":149} +{"level":"info","ts":"2024-08-16T17:15:01Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-2hf68","namespace":"scale"},"namespace":"scale","name":"backend-2hf68","reconcileID":"e3f120c9-8468-4dac-8df8-13536c2769f4"} +{"level":"info","ts":"2024-08-16T17:15:01Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-2hf68","namespace":"scale"},"namespace":"scale","name":"backend-2hf68","reconcileID":"e3f120c9-8468-4dac-8df8-13536c2769f4"} +{"level":"info","ts":"2024-08-16T17:15:01Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:15:01Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":150,"total":1} +{"level":"info","ts":"2024-08-16T17:15:01Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:01Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:01Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:01Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:01Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:01Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:01Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:01Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:01Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:01Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:01Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":150} +{"level":"info","ts":"2024-08-16T17:15:01Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":150} +{"level":"info","ts":"2024-08-16T17:15:02Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-2hf68","namespace":"scale"},"namespace":"scale","name":"backend-2hf68","reconcileID":"4e1b90bd-c330-43e5-94a7-e59715cf4689"} +{"level":"info","ts":"2024-08-16T17:15:02Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-2hf68","namespace":"scale"},"namespace":"scale","name":"backend-2hf68","reconcileID":"4e1b90bd-c330-43e5-94a7-e59715cf4689"} +{"level":"info","ts":"2024-08-16T17:15:02Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:15:02Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":151,"total":1} +{"level":"info","ts":"2024-08-16T17:15:02Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:02Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:02Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:02Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:02Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:02Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:02Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:02Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:02Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:02Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:02Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":151} +{"level":"info","ts":"2024-08-16T17:15:02Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":151} +{"level":"info","ts":"2024-08-16T17:15:02Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-2hf68","namespace":"scale"},"namespace":"scale","name":"backend-2hf68","reconcileID":"f8a9e7e3-6146-49bb-a2cc-d89eb764bd29"} +{"level":"info","ts":"2024-08-16T17:15:02Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-2hf68","namespace":"scale"},"namespace":"scale","name":"backend-2hf68","reconcileID":"f8a9e7e3-6146-49bb-a2cc-d89eb764bd29"} +{"level":"info","ts":"2024-08-16T17:15:02Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:15:02Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":152,"total":1} +{"level":"info","ts":"2024-08-16T17:15:02Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:02Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:02Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:02Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:02Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:02Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:02Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:02Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:02Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:02Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:02Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":152} +{"level":"info","ts":"2024-08-16T17:15:02Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":152} +{"level":"info","ts":"2024-08-16T17:15:02Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-2hf68","namespace":"scale"},"namespace":"scale","name":"backend-2hf68","reconcileID":"e06812f1-0660-4b19-906a-364a48307659"} +{"level":"info","ts":"2024-08-16T17:15:02Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-2hf68","namespace":"scale"},"namespace":"scale","name":"backend-2hf68","reconcileID":"e06812f1-0660-4b19-906a-364a48307659"} +{"level":"info","ts":"2024-08-16T17:15:02Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:15:02Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":153,"total":1} +{"level":"info","ts":"2024-08-16T17:15:02Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:02Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:02Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:02Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:02Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:02Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:02Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:02Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:02Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:02Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:02Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":153} +{"level":"info","ts":"2024-08-16T17:15:02Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":153} +{"level":"info","ts":"2024-08-16T17:15:02Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-2hf68","namespace":"scale"},"namespace":"scale","name":"backend-2hf68","reconcileID":"19166c5a-34cd-4f7c-9371-a56b8e612e22"} +{"level":"info","ts":"2024-08-16T17:15:02Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-2hf68","namespace":"scale"},"namespace":"scale","name":"backend-2hf68","reconcileID":"19166c5a-34cd-4f7c-9371-a56b8e612e22"} +{"level":"info","ts":"2024-08-16T17:15:02Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:15:02Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":154,"total":1} +{"level":"info","ts":"2024-08-16T17:15:02Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:02Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:02Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:02Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:02Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:02Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:02Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:02Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:02Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:02Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:02Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":154} +{"level":"info","ts":"2024-08-16T17:15:02Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":154} +{"level":"info","ts":"2024-08-16T17:15:02Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-2hf68","namespace":"scale"},"namespace":"scale","name":"backend-2hf68","reconcileID":"60341073-2437-4a97-bbbf-32980d54b1d3"} +{"level":"info","ts":"2024-08-16T17:15:02Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-2hf68","namespace":"scale"},"namespace":"scale","name":"backend-2hf68","reconcileID":"60341073-2437-4a97-bbbf-32980d54b1d3"} +{"level":"info","ts":"2024-08-16T17:15:02Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:15:02Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":155,"total":1} +{"level":"info","ts":"2024-08-16T17:15:02Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:02Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:02Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:02Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:02Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:02Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:02Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:02Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:02Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:02Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:02Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":155} +{"level":"info","ts":"2024-08-16T17:15:02Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":155} +{"level":"info","ts":"2024-08-16T17:15:03Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-2hf68","namespace":"scale"},"namespace":"scale","name":"backend-2hf68","reconcileID":"47bc5740-ba63-4299-801b-ea0474517c01"} +{"level":"info","ts":"2024-08-16T17:15:03Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-2hf68","namespace":"scale"},"namespace":"scale","name":"backend-2hf68","reconcileID":"47bc5740-ba63-4299-801b-ea0474517c01"} +{"level":"info","ts":"2024-08-16T17:15:03Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:15:03Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":156,"total":1} +{"level":"info","ts":"2024-08-16T17:15:03Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:03Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:03Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:03Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:03Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:03Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:03Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:03Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:03Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:03Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:03Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":156} +{"level":"info","ts":"2024-08-16T17:15:03Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":156} +{"level":"info","ts":"2024-08-16T17:15:03Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-2hf68","namespace":"scale"},"namespace":"scale","name":"backend-2hf68","reconcileID":"6a7c6ac4-e7b3-4f5f-8e4d-800ff1ea588e"} +{"level":"info","ts":"2024-08-16T17:15:03Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-2hf68","namespace":"scale"},"namespace":"scale","name":"backend-2hf68","reconcileID":"6a7c6ac4-e7b3-4f5f-8e4d-800ff1ea588e"} +{"level":"info","ts":"2024-08-16T17:15:03Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:15:03Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":157,"total":1} +{"level":"info","ts":"2024-08-16T17:15:03Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:03Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:03Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:03Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:03Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:03Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:03Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:03Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:03Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:03Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:03Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":157} +{"level":"info","ts":"2024-08-16T17:15:03Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":157} +{"level":"info","ts":"2024-08-16T17:15:03Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-2hf68","namespace":"scale"},"namespace":"scale","name":"backend-2hf68","reconcileID":"df006ab3-b4c5-42a8-8ba6-ea78fc9dc9bb"} +{"level":"info","ts":"2024-08-16T17:15:03Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-2hf68","namespace":"scale"},"namespace":"scale","name":"backend-2hf68","reconcileID":"df006ab3-b4c5-42a8-8ba6-ea78fc9dc9bb"} +{"level":"info","ts":"2024-08-16T17:15:03Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:15:03Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":158,"total":1} +{"level":"info","ts":"2024-08-16T17:15:03Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:03Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:03Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:03Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:03Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:03Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:03Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:03Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:03Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:03Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:03Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":158} +{"level":"info","ts":"2024-08-16T17:15:03Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":158} +{"level":"info","ts":"2024-08-16T17:15:03Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-2hf68","namespace":"scale"},"namespace":"scale","name":"backend-2hf68","reconcileID":"a774133e-eafb-46e0-9a37-a3523329e7ae"} +{"level":"info","ts":"2024-08-16T17:15:03Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-2hf68","namespace":"scale"},"namespace":"scale","name":"backend-2hf68","reconcileID":"a774133e-eafb-46e0-9a37-a3523329e7ae"} +{"level":"info","ts":"2024-08-16T17:15:03Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:15:03Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":159,"total":1} +{"level":"info","ts":"2024-08-16T17:15:03Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:03Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:03Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:03Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:03Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:03Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:03Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:03Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:03Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:03Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:03Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":159} +{"level":"info","ts":"2024-08-16T17:15:03Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":159} +{"level":"info","ts":"2024-08-16T17:15:04Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-2hf68","namespace":"scale"},"namespace":"scale","name":"backend-2hf68","reconcileID":"9a89969b-378b-4919-b50d-60b8a6c7b559"} +{"level":"info","ts":"2024-08-16T17:15:04Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-2hf68","namespace":"scale"},"namespace":"scale","name":"backend-2hf68","reconcileID":"9a89969b-378b-4919-b50d-60b8a6c7b559"} +{"level":"info","ts":"2024-08-16T17:15:04Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:15:04Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":160,"total":1} +{"level":"info","ts":"2024-08-16T17:15:04Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:04Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:04Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:04Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:04Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:04Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:04Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:04Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:04Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:04Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:04Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":160} +{"level":"info","ts":"2024-08-16T17:15:04Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":160} +{"level":"info","ts":"2024-08-16T17:15:04Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-2hf68","namespace":"scale"},"namespace":"scale","name":"backend-2hf68","reconcileID":"6d204504-024c-4a7d-a6b4-5a1e017444b0"} +{"level":"info","ts":"2024-08-16T17:15:04Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-2hf68","namespace":"scale"},"namespace":"scale","name":"backend-2hf68","reconcileID":"6d204504-024c-4a7d-a6b4-5a1e017444b0"} +{"level":"info","ts":"2024-08-16T17:15:04Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:15:04Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":161,"total":1} +{"level":"info","ts":"2024-08-16T17:15:04Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:04Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:04Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:04Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:04Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:04Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:04Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:04Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:04Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:04Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:04Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":161} +{"level":"info","ts":"2024-08-16T17:15:04Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":161} +{"level":"info","ts":"2024-08-16T17:15:04Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-2hf68","namespace":"scale"},"namespace":"scale","name":"backend-2hf68","reconcileID":"5c6217dc-3c96-4742-bbcf-b6fa307105c3"} +{"level":"info","ts":"2024-08-16T17:15:04Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-2hf68","namespace":"scale"},"namespace":"scale","name":"backend-2hf68","reconcileID":"5c6217dc-3c96-4742-bbcf-b6fa307105c3"} +{"level":"info","ts":"2024-08-16T17:15:04Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:15:04Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":162,"total":1} +{"level":"info","ts":"2024-08-16T17:15:04Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:04Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:04Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:04Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:04Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:04Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:04Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:04Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:04Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:04Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:04Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":162} +{"level":"info","ts":"2024-08-16T17:15:04Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":162} +{"level":"info","ts":"2024-08-16T17:15:04Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-2hf68","namespace":"scale"},"namespace":"scale","name":"backend-2hf68","reconcileID":"0fc272ac-46f5-494f-baaf-ac242826f4af"} +{"level":"info","ts":"2024-08-16T17:15:04Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:15:04Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":163,"total":1} +{"level":"info","ts":"2024-08-16T17:15:04Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-2hf68","namespace":"scale"},"namespace":"scale","name":"backend-2hf68","reconcileID":"0fc272ac-46f5-494f-baaf-ac242826f4af"} +{"level":"info","ts":"2024-08-16T17:15:04Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:04Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:04Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:04Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:04Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:04Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:04Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:04Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:04Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:04Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:04Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":163} +{"level":"info","ts":"2024-08-16T17:15:04Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":163} +{"level":"info","ts":"2024-08-16T17:15:04Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-2hf68","namespace":"scale"},"namespace":"scale","name":"backend-2hf68","reconcileID":"f1715835-bee4-4bbe-91ff-684ded74e6f6"} +{"level":"info","ts":"2024-08-16T17:15:04Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-2hf68","namespace":"scale"},"namespace":"scale","name":"backend-2hf68","reconcileID":"f1715835-bee4-4bbe-91ff-684ded74e6f6"} +{"level":"info","ts":"2024-08-16T17:15:04Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:15:04Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":164,"total":1} +{"level":"info","ts":"2024-08-16T17:15:04Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:04Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:04Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:04Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:04Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:04Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:04Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:04Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:04Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:04Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:04Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":164} +{"level":"info","ts":"2024-08-16T17:15:04Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":164} +{"level":"info","ts":"2024-08-16T17:15:04Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-2hf68","namespace":"scale"},"namespace":"scale","name":"backend-2hf68","reconcileID":"46d94bd7-f5ca-4003-84ff-724678bfdb79"} +{"level":"info","ts":"2024-08-16T17:15:04Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-2hf68","namespace":"scale"},"namespace":"scale","name":"backend-2hf68","reconcileID":"46d94bd7-f5ca-4003-84ff-724678bfdb79"} +{"level":"info","ts":"2024-08-16T17:15:04Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:15:04Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":165,"total":1} +{"level":"info","ts":"2024-08-16T17:15:04Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:04Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:04Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:04Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:04Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:04Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:04Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:04Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:04Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:04Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:04Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":165} +{"level":"info","ts":"2024-08-16T17:15:04Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":165} +{"level":"info","ts":"2024-08-16T17:15:04Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-2hf68","namespace":"scale"},"namespace":"scale","name":"backend-2hf68","reconcileID":"d8197df0-f439-4263-b8b9-44dbd91fcc99"} +{"level":"info","ts":"2024-08-16T17:15:04Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-2hf68","namespace":"scale"},"namespace":"scale","name":"backend-2hf68","reconcileID":"d8197df0-f439-4263-b8b9-44dbd91fcc99"} +{"level":"info","ts":"2024-08-16T17:15:04Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:15:04Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":166,"total":1} +{"level":"info","ts":"2024-08-16T17:15:04Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:04Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:04Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:04Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:04Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:04Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:04Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:04Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:04Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:04Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:04Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":166} +{"level":"info","ts":"2024-08-16T17:15:04Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":166} +{"level":"info","ts":"2024-08-16T17:15:04Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-2hf68","namespace":"scale"},"namespace":"scale","name":"backend-2hf68","reconcileID":"42d8af35-8ba9-4b65-b88c-a00f8e1e83ef"} +{"level":"info","ts":"2024-08-16T17:15:04Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-2hf68","namespace":"scale"},"namespace":"scale","name":"backend-2hf68","reconcileID":"42d8af35-8ba9-4b65-b88c-a00f8e1e83ef"} +{"level":"info","ts":"2024-08-16T17:15:04Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:15:04Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":167,"total":1} +{"level":"info","ts":"2024-08-16T17:15:04Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:04Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:04Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:04Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:04Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:04Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:04Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:04Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:04Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:04Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:04Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":167} +{"level":"info","ts":"2024-08-16T17:15:04Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":167} +{"level":"info","ts":"2024-08-16T17:15:05Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-fnjx8","namespace":"scale"},"namespace":"scale","name":"backend-fnjx8","reconcileID":"a8cf187b-f947-4aef-9a72-d31e0983cf1d"} +{"level":"info","ts":"2024-08-16T17:15:05Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-fnjx8","namespace":"scale"},"namespace":"scale","name":"backend-fnjx8","reconcileID":"a8cf187b-f947-4aef-9a72-d31e0983cf1d"} +{"level":"info","ts":"2024-08-16T17:15:05Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:15:05Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":168,"total":1} +{"level":"info","ts":"2024-08-16T17:15:05Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:05Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:05Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:05Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:05Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:05Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:05Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:05Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:05Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:05Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:05Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":168} +{"level":"info","ts":"2024-08-16T17:15:05Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":168} +{"level":"info","ts":"2024-08-16T17:15:05Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-2hf68","namespace":"scale"},"namespace":"scale","name":"backend-2hf68","reconcileID":"b478ca46-1a5b-4436-871a-c4512a379405"} +{"level":"info","ts":"2024-08-16T17:15:05Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-2hf68","namespace":"scale"},"namespace":"scale","name":"backend-2hf68","reconcileID":"b478ca46-1a5b-4436-871a-c4512a379405"} +{"level":"info","ts":"2024-08-16T17:15:05Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:15:05Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":169,"total":1} +{"level":"info","ts":"2024-08-16T17:15:05Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:05Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:05Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:05Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:05Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:05Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:05Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:05Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:05Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:05Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:05Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":169} +{"level":"info","ts":"2024-08-16T17:15:05Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":169} +{"level":"info","ts":"2024-08-16T17:15:05Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-fnjx8","namespace":"scale"},"namespace":"scale","name":"backend-fnjx8","reconcileID":"9c0a5383-f689-4fe8-9d9f-8a4a6aa4107c"} +{"level":"info","ts":"2024-08-16T17:15:05Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-fnjx8","namespace":"scale"},"namespace":"scale","name":"backend-fnjx8","reconcileID":"9c0a5383-f689-4fe8-9d9f-8a4a6aa4107c"} +{"level":"info","ts":"2024-08-16T17:15:05Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:15:05Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":170,"total":1} +{"level":"info","ts":"2024-08-16T17:15:05Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:05Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:05Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:05Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:05Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:05Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:05Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:05Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:05Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:05Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:05Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":170} +{"level":"info","ts":"2024-08-16T17:15:05Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":170} +{"level":"info","ts":"2024-08-16T17:15:05Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-2hf68","namespace":"scale"},"namespace":"scale","name":"backend-2hf68","reconcileID":"632a69a3-995b-4503-bff2-2b5a7392229e"} +{"level":"info","ts":"2024-08-16T17:15:05Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-2hf68","namespace":"scale"},"namespace":"scale","name":"backend-2hf68","reconcileID":"632a69a3-995b-4503-bff2-2b5a7392229e"} +{"level":"info","ts":"2024-08-16T17:15:05Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:15:05Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":171,"total":1} +{"level":"info","ts":"2024-08-16T17:15:05Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:05Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:05Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:05Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:05Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:05Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:05Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:05Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:05Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:05Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:05Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":171} +{"level":"info","ts":"2024-08-16T17:15:05Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":171} +{"level":"info","ts":"2024-08-16T17:15:05Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-fnjx8","namespace":"scale"},"namespace":"scale","name":"backend-fnjx8","reconcileID":"50c78f16-3e88-4c14-93de-aa9c5e744261"} +{"level":"info","ts":"2024-08-16T17:15:05Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-fnjx8","namespace":"scale"},"namespace":"scale","name":"backend-fnjx8","reconcileID":"50c78f16-3e88-4c14-93de-aa9c5e744261"} +{"level":"info","ts":"2024-08-16T17:15:05Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:15:05Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":172,"total":1} +{"level":"info","ts":"2024-08-16T17:15:05Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:05Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:05Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:05Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:05Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:05Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:05Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:05Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:05Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:05Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:05Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":172} +{"level":"info","ts":"2024-08-16T17:15:05Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":172} +{"level":"info","ts":"2024-08-16T17:15:05Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-fnjx8","namespace":"scale"},"namespace":"scale","name":"backend-fnjx8","reconcileID":"e015c6d1-9698-4dd9-a044-3761e4b28118"} +{"level":"info","ts":"2024-08-16T17:15:05Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-fnjx8","namespace":"scale"},"namespace":"scale","name":"backend-fnjx8","reconcileID":"e015c6d1-9698-4dd9-a044-3761e4b28118"} +{"level":"info","ts":"2024-08-16T17:15:05Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:15:05Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":173,"total":1} +{"level":"info","ts":"2024-08-16T17:15:05Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:05Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:05Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:05Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:05Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:05Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:05Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:05Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:05Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:05Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:05Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":173} +{"level":"info","ts":"2024-08-16T17:15:05Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":173} +{"level":"info","ts":"2024-08-16T17:15:05Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-fnjx8","namespace":"scale"},"namespace":"scale","name":"backend-fnjx8","reconcileID":"2505f6f9-ce4b-4734-8245-d88be92705db"} +{"level":"info","ts":"2024-08-16T17:15:05Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-fnjx8","namespace":"scale"},"namespace":"scale","name":"backend-fnjx8","reconcileID":"2505f6f9-ce4b-4734-8245-d88be92705db"} +{"level":"info","ts":"2024-08-16T17:15:05Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:15:05Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":174,"total":1} +{"level":"info","ts":"2024-08-16T17:15:05Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:05Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:05Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:05Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:05Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:05Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:05Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:05Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:05Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:05Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:05Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":174} +{"level":"info","ts":"2024-08-16T17:15:05Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":174} +{"level":"info","ts":"2024-08-16T17:15:05Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-2hf68","namespace":"scale"},"namespace":"scale","name":"backend-2hf68","reconcileID":"6cc16f9a-85a5-4a68-835b-83ece51069ab"} +{"level":"info","ts":"2024-08-16T17:15:05Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-2hf68","namespace":"scale"},"namespace":"scale","name":"backend-2hf68","reconcileID":"6cc16f9a-85a5-4a68-835b-83ece51069ab"} +{"level":"info","ts":"2024-08-16T17:15:05Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:15:05Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":175,"total":1} +{"level":"info","ts":"2024-08-16T17:15:05Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:05Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:05Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:05Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:05Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:05Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:05Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:05Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:05Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:05Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:05Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":175} +{"level":"info","ts":"2024-08-16T17:15:05Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":175} +{"level":"info","ts":"2024-08-16T17:15:06Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-fnjx8","namespace":"scale"},"namespace":"scale","name":"backend-fnjx8","reconcileID":"dc58b693-0831-4fe9-84e2-870cead4453b"} +{"level":"info","ts":"2024-08-16T17:15:06Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-fnjx8","namespace":"scale"},"namespace":"scale","name":"backend-fnjx8","reconcileID":"dc58b693-0831-4fe9-84e2-870cead4453b"} +{"level":"info","ts":"2024-08-16T17:15:06Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:15:06Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":176,"total":1} +{"level":"info","ts":"2024-08-16T17:15:06Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:06Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:06Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:06Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:06Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:06Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:06Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:06Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:06Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:06Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:06Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":176} +{"level":"info","ts":"2024-08-16T17:15:06Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":176} +{"level":"info","ts":"2024-08-16T17:15:06Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-fnjx8","namespace":"scale"},"namespace":"scale","name":"backend-fnjx8","reconcileID":"f578baa8-f50b-453a-b4af-9fcba33ce1a9"} +{"level":"info","ts":"2024-08-16T17:15:06Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-fnjx8","namespace":"scale"},"namespace":"scale","name":"backend-fnjx8","reconcileID":"f578baa8-f50b-453a-b4af-9fcba33ce1a9"} +{"level":"info","ts":"2024-08-16T17:15:06Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:15:06Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":177,"total":1} +{"level":"info","ts":"2024-08-16T17:15:06Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:06Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:06Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:06Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:06Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:06Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:06Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:06Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:06Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:06Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:06Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":177} +{"level":"info","ts":"2024-08-16T17:15:06Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":177} +{"level":"info","ts":"2024-08-16T17:15:06Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-fnjx8","namespace":"scale"},"namespace":"scale","name":"backend-fnjx8","reconcileID":"5cedc34b-5fd9-4c31-84be-28581720cf97"} +{"level":"info","ts":"2024-08-16T17:15:06Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-fnjx8","namespace":"scale"},"namespace":"scale","name":"backend-fnjx8","reconcileID":"5cedc34b-5fd9-4c31-84be-28581720cf97"} +{"level":"info","ts":"2024-08-16T17:15:06Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:15:06Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":178,"total":1} +{"level":"info","ts":"2024-08-16T17:15:06Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:06Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:06Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:06Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:06Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:06Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:06Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:06Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:06Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:06Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:06Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":178} +{"level":"info","ts":"2024-08-16T17:15:06Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":178} +{"level":"info","ts":"2024-08-16T17:15:06Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-fnjx8","namespace":"scale"},"namespace":"scale","name":"backend-fnjx8","reconcileID":"525c016a-fa7d-4a0c-a3d5-0790c050941f"} +{"level":"info","ts":"2024-08-16T17:15:06Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-fnjx8","namespace":"scale"},"namespace":"scale","name":"backend-fnjx8","reconcileID":"525c016a-fa7d-4a0c-a3d5-0790c050941f"} +{"level":"info","ts":"2024-08-16T17:15:06Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:15:06Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":179,"total":1} +{"level":"info","ts":"2024-08-16T17:15:06Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:06Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:06Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:06Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:06Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:06Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:06Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:06Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:06Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:06Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:06Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":179} +{"level":"info","ts":"2024-08-16T17:15:06Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":179} +{"level":"info","ts":"2024-08-16T17:15:06Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-fnjx8","namespace":"scale"},"namespace":"scale","name":"backend-fnjx8","reconcileID":"68457aad-e0b3-43f1-99ee-407caf97366c"} +{"level":"info","ts":"2024-08-16T17:15:06Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-fnjx8","namespace":"scale"},"namespace":"scale","name":"backend-fnjx8","reconcileID":"68457aad-e0b3-43f1-99ee-407caf97366c"} +{"level":"info","ts":"2024-08-16T17:15:06Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:15:06Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":180,"total":1} +{"level":"info","ts":"2024-08-16T17:15:06Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:06Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:06Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:06Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:06Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:06Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:06Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:06Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:06Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:06Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:06Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":180} +{"level":"info","ts":"2024-08-16T17:15:06Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":180} +{"level":"info","ts":"2024-08-16T17:15:06Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-fnjx8","namespace":"scale"},"namespace":"scale","name":"backend-fnjx8","reconcileID":"47b4dd85-5d75-4a43-be9d-1cd83afddb34"} +{"level":"info","ts":"2024-08-16T17:15:06Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-fnjx8","namespace":"scale"},"namespace":"scale","name":"backend-fnjx8","reconcileID":"47b4dd85-5d75-4a43-be9d-1cd83afddb34"} +{"level":"info","ts":"2024-08-16T17:15:06Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:15:06Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":181,"total":1} +{"level":"info","ts":"2024-08-16T17:15:06Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:06Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:06Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:06Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:06Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:06Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:06Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:06Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:06Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:06Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:06Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":181} +{"level":"info","ts":"2024-08-16T17:15:06Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":181} +{"level":"info","ts":"2024-08-16T17:15:06Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-fnjx8","namespace":"scale"},"namespace":"scale","name":"backend-fnjx8","reconcileID":"11c0e775-1ac7-44c4-b1a5-da49a43f4459"} +{"level":"info","ts":"2024-08-16T17:15:06Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-fnjx8","namespace":"scale"},"namespace":"scale","name":"backend-fnjx8","reconcileID":"11c0e775-1ac7-44c4-b1a5-da49a43f4459"} +{"level":"info","ts":"2024-08-16T17:15:06Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:15:06Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":182,"total":1} +{"level":"info","ts":"2024-08-16T17:15:06Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:06Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:06Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:06Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:06Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:06Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:06Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:06Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:06Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:06Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:06Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":182} +{"level":"info","ts":"2024-08-16T17:15:06Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":182} +{"level":"info","ts":"2024-08-16T17:15:06Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-fnjx8","namespace":"scale"},"namespace":"scale","name":"backend-fnjx8","reconcileID":"96b9764d-c5a5-44a0-b71f-0832c2fd1af4"} +{"level":"info","ts":"2024-08-16T17:15:06Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-fnjx8","namespace":"scale"},"namespace":"scale","name":"backend-fnjx8","reconcileID":"96b9764d-c5a5-44a0-b71f-0832c2fd1af4"} +{"level":"info","ts":"2024-08-16T17:15:06Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:15:06Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":183,"total":1} +{"level":"info","ts":"2024-08-16T17:15:06Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:06Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:06Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:06Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:06Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:06Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:06Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:06Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:06Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:06Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:06Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":183} +{"level":"info","ts":"2024-08-16T17:15:06Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":183} +{"level":"info","ts":"2024-08-16T17:15:07Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-fnjx8","namespace":"scale"},"namespace":"scale","name":"backend-fnjx8","reconcileID":"e2b19f2c-e44c-443c-8e27-80b5f7b0a2e4"} +{"level":"info","ts":"2024-08-16T17:15:07Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-fnjx8","namespace":"scale"},"namespace":"scale","name":"backend-fnjx8","reconcileID":"e2b19f2c-e44c-443c-8e27-80b5f7b0a2e4"} +{"level":"info","ts":"2024-08-16T17:15:07Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:15:07Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":184,"total":1} +{"level":"info","ts":"2024-08-16T17:15:07Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:07Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:07Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:07Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:07Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:07Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:07Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:07Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:07Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:07Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:07Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":184} +{"level":"info","ts":"2024-08-16T17:15:07Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":184} +{"level":"info","ts":"2024-08-16T17:15:07Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-fnjx8","namespace":"scale"},"namespace":"scale","name":"backend-fnjx8","reconcileID":"9aff8812-4c56-46c8-b1eb-f357b289cb0c"} +{"level":"info","ts":"2024-08-16T17:15:07Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-fnjx8","namespace":"scale"},"namespace":"scale","name":"backend-fnjx8","reconcileID":"9aff8812-4c56-46c8-b1eb-f357b289cb0c"} +{"level":"info","ts":"2024-08-16T17:15:07Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:15:07Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":185,"total":1} +{"level":"info","ts":"2024-08-16T17:15:07Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:07Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:07Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:07Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:07Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:07Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:07Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:07Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:07Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:07Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:07Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":185} +{"level":"info","ts":"2024-08-16T17:15:07Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":185} +{"level":"info","ts":"2024-08-16T17:15:07Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-fnjx8","namespace":"scale"},"namespace":"scale","name":"backend-fnjx8","reconcileID":"a0bbcc09-bdd9-48be-a2ac-376cca95f510"} +{"level":"info","ts":"2024-08-16T17:15:07Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-fnjx8","namespace":"scale"},"namespace":"scale","name":"backend-fnjx8","reconcileID":"a0bbcc09-bdd9-48be-a2ac-376cca95f510"} +{"level":"info","ts":"2024-08-16T17:15:07Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:15:07Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":186,"total":1} +{"level":"info","ts":"2024-08-16T17:15:07Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:07Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:07Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:07Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:07Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:07Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:07Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:07Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:07Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:07Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:07Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":186} +{"level":"info","ts":"2024-08-16T17:15:07Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":186} +{"level":"info","ts":"2024-08-16T17:15:07Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-fnjx8","namespace":"scale"},"namespace":"scale","name":"backend-fnjx8","reconcileID":"7024936b-a6f3-4eb4-895b-7e0fc2763dda"} +{"level":"info","ts":"2024-08-16T17:15:07Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-fnjx8","namespace":"scale"},"namespace":"scale","name":"backend-fnjx8","reconcileID":"7024936b-a6f3-4eb4-895b-7e0fc2763dda"} +{"level":"info","ts":"2024-08-16T17:15:07Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:15:07Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":187,"total":1} +{"level":"info","ts":"2024-08-16T17:15:07Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:07Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:07Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:07Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:07Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:07Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:07Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:07Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:07Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:07Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:07Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":187} +{"level":"info","ts":"2024-08-16T17:15:07Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":187} +{"level":"info","ts":"2024-08-16T17:15:07Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-fnjx8","namespace":"scale"},"namespace":"scale","name":"backend-fnjx8","reconcileID":"d38eb692-a952-48a1-beb1-2ab31fc56d34"} +{"level":"info","ts":"2024-08-16T17:15:07Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-fnjx8","namespace":"scale"},"namespace":"scale","name":"backend-fnjx8","reconcileID":"d38eb692-a952-48a1-beb1-2ab31fc56d34"} +{"level":"info","ts":"2024-08-16T17:15:07Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:15:07Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":188,"total":1} +{"level":"info","ts":"2024-08-16T17:15:07Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:07Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:07Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:07Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:07Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:07Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:07Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:07Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:07Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:07Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:07Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":188} +{"level":"info","ts":"2024-08-16T17:15:07Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":188} +{"level":"info","ts":"2024-08-16T17:15:07Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-fnjx8","namespace":"scale"},"namespace":"scale","name":"backend-fnjx8","reconcileID":"85fc390e-0f2f-48fe-a3a4-2e044a4420ef"} +{"level":"info","ts":"2024-08-16T17:15:07Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-fnjx8","namespace":"scale"},"namespace":"scale","name":"backend-fnjx8","reconcileID":"85fc390e-0f2f-48fe-a3a4-2e044a4420ef"} +{"level":"info","ts":"2024-08-16T17:15:07Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:15:07Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":189,"total":1} +{"level":"info","ts":"2024-08-16T17:15:07Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:07Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:07Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:07Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:07Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:07Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:07Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:07Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:07Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:07Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:07Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":189} +{"level":"info","ts":"2024-08-16T17:15:07Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":189} +{"level":"info","ts":"2024-08-16T17:15:07Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-fnjx8","namespace":"scale"},"namespace":"scale","name":"backend-fnjx8","reconcileID":"4b7ac5fc-1cca-4036-bc32-23275848817f"} +{"level":"info","ts":"2024-08-16T17:15:07Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-fnjx8","namespace":"scale"},"namespace":"scale","name":"backend-fnjx8","reconcileID":"4b7ac5fc-1cca-4036-bc32-23275848817f"} +{"level":"info","ts":"2024-08-16T17:15:07Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:15:07Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":190,"total":1} +{"level":"info","ts":"2024-08-16T17:15:07Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:07Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:07Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:07Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:07Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:07Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:07Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:07Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:07Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:07Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:07Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":190} +{"level":"info","ts":"2024-08-16T17:15:07Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":190} +{"level":"info","ts":"2024-08-16T17:15:08Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-fnjx8","namespace":"scale"},"namespace":"scale","name":"backend-fnjx8","reconcileID":"577fd862-736b-47ae-a027-f2d2968b4a42"} +{"level":"info","ts":"2024-08-16T17:15:08Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-fnjx8","namespace":"scale"},"namespace":"scale","name":"backend-fnjx8","reconcileID":"577fd862-736b-47ae-a027-f2d2968b4a42"} +{"level":"info","ts":"2024-08-16T17:15:08Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:15:08Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":191,"total":1} +{"level":"info","ts":"2024-08-16T17:15:08Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:08Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:08Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:08Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:08Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:08Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:08Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:08Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:08Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:08Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:08Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":191} +{"level":"info","ts":"2024-08-16T17:15:08Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":191} +{"level":"info","ts":"2024-08-16T17:15:08Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-fnjx8","namespace":"scale"},"namespace":"scale","name":"backend-fnjx8","reconcileID":"f83389c0-7c9c-4362-840e-30aa4457f2a6"} +{"level":"info","ts":"2024-08-16T17:15:08Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-fnjx8","namespace":"scale"},"namespace":"scale","name":"backend-fnjx8","reconcileID":"f83389c0-7c9c-4362-840e-30aa4457f2a6"} +{"level":"info","ts":"2024-08-16T17:15:08Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:15:08Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":192,"total":1} +{"level":"info","ts":"2024-08-16T17:15:08Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:08Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:08Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:08Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:08Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:08Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:08Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:08Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:08Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:08Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:08Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":192} +{"level":"info","ts":"2024-08-16T17:15:08Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":192} +{"level":"info","ts":"2024-08-16T17:15:08Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-fnjx8","namespace":"scale"},"namespace":"scale","name":"backend-fnjx8","reconcileID":"1a66d9d7-773f-46c3-a64c-80607b2c6ce2"} +{"level":"info","ts":"2024-08-16T17:15:08Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-fnjx8","namespace":"scale"},"namespace":"scale","name":"backend-fnjx8","reconcileID":"1a66d9d7-773f-46c3-a64c-80607b2c6ce2"} +{"level":"info","ts":"2024-08-16T17:15:08Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:15:08Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":193,"total":1} +{"level":"info","ts":"2024-08-16T17:15:08Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:08Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:08Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:08Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:08Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:08Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:08Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:08Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:08Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:08Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:08Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":193} +{"level":"info","ts":"2024-08-16T17:15:08Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":193} +{"level":"info","ts":"2024-08-16T17:15:08Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-fnjx8","namespace":"scale"},"namespace":"scale","name":"backend-fnjx8","reconcileID":"9389aacc-5142-4c39-8ac0-f1c03ac67f52"} +{"level":"info","ts":"2024-08-16T17:15:08Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-fnjx8","namespace":"scale"},"namespace":"scale","name":"backend-fnjx8","reconcileID":"9389aacc-5142-4c39-8ac0-f1c03ac67f52"} +{"level":"info","ts":"2024-08-16T17:15:08Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:15:08Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":194,"total":1} +{"level":"info","ts":"2024-08-16T17:15:08Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:08Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:08Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:08Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:08Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:08Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:08Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:08Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:08Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:08Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:08Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":194} +{"level":"info","ts":"2024-08-16T17:15:08Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":194} +{"level":"info","ts":"2024-08-16T17:15:08Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-fnjx8","namespace":"scale"},"namespace":"scale","name":"backend-fnjx8","reconcileID":"84782ff9-1eeb-49ab-b300-a91ca2aedc64"} +{"level":"info","ts":"2024-08-16T17:15:08Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-fnjx8","namespace":"scale"},"namespace":"scale","name":"backend-fnjx8","reconcileID":"84782ff9-1eeb-49ab-b300-a91ca2aedc64"} +{"level":"info","ts":"2024-08-16T17:15:08Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:15:08Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":195,"total":1} +{"level":"info","ts":"2024-08-16T17:15:08Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:08Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:08Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:08Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:08Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:08Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:08Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:08Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:08Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:08Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:08Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":195} +{"level":"info","ts":"2024-08-16T17:15:08Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":195} +{"level":"info","ts":"2024-08-16T17:15:08Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-fnjx8","namespace":"scale"},"namespace":"scale","name":"backend-fnjx8","reconcileID":"222cedb0-29b5-413a-bfb2-b75a3ae6cdb5"} +{"level":"info","ts":"2024-08-16T17:15:08Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-fnjx8","namespace":"scale"},"namespace":"scale","name":"backend-fnjx8","reconcileID":"222cedb0-29b5-413a-bfb2-b75a3ae6cdb5"} +{"level":"info","ts":"2024-08-16T17:15:08Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:15:08Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":196,"total":1} +{"level":"info","ts":"2024-08-16T17:15:08Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:08Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:08Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:08Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:08Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:08Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:08Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:08Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:08Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:08Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:08Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":196} +{"level":"info","ts":"2024-08-16T17:15:08Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":196} +{"level":"info","ts":"2024-08-16T17:15:08Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-fnjx8","namespace":"scale"},"namespace":"scale","name":"backend-fnjx8","reconcileID":"7128e5d6-f3a0-4c41-bf72-e4246f6ba951"} +{"level":"info","ts":"2024-08-16T17:15:08Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-fnjx8","namespace":"scale"},"namespace":"scale","name":"backend-fnjx8","reconcileID":"7128e5d6-f3a0-4c41-bf72-e4246f6ba951"} +{"level":"info","ts":"2024-08-16T17:15:08Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:15:08Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":197,"total":1} +{"level":"info","ts":"2024-08-16T17:15:08Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:08Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:08Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:08Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:08Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:08Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:08Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:08Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:08Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:08Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:08Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":197} +{"level":"info","ts":"2024-08-16T17:15:08Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":197} +{"level":"info","ts":"2024-08-16T17:15:08Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-fnjx8","namespace":"scale"},"namespace":"scale","name":"backend-fnjx8","reconcileID":"a9842c46-a127-4b2b-9eef-b22f477aeb9b"} +{"level":"info","ts":"2024-08-16T17:15:08Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-fnjx8","namespace":"scale"},"namespace":"scale","name":"backend-fnjx8","reconcileID":"a9842c46-a127-4b2b-9eef-b22f477aeb9b"} +{"level":"info","ts":"2024-08-16T17:15:08Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:15:08Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":198,"total":1} +{"level":"info","ts":"2024-08-16T17:15:08Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:08Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:08Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:08Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:08Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:08Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:08Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:08Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:08Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:08Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:08Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":198} +{"level":"info","ts":"2024-08-16T17:15:08Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":198} +{"level":"info","ts":"2024-08-16T17:15:08Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-fnjx8","namespace":"scale"},"namespace":"scale","name":"backend-fnjx8","reconcileID":"8678458a-a4da-49f5-bb4e-eeb87b300cd7"} +{"level":"info","ts":"2024-08-16T17:15:08Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-fnjx8","namespace":"scale"},"namespace":"scale","name":"backend-fnjx8","reconcileID":"8678458a-a4da-49f5-bb4e-eeb87b300cd7"} +{"level":"info","ts":"2024-08-16T17:15:08Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:15:08Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":199,"total":1} +{"level":"info","ts":"2024-08-16T17:15:08Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:08Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:08Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:08Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:08Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:08Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:08Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:08Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:08Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:08Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:08Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":199} +{"level":"info","ts":"2024-08-16T17:15:08Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":199} +{"level":"info","ts":"2024-08-16T17:15:09Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-fnjx8","namespace":"scale"},"namespace":"scale","name":"backend-fnjx8","reconcileID":"f7dbf024-fa70-4f51-95c3-be5c86c19381"} +{"level":"info","ts":"2024-08-16T17:15:09Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-fnjx8","namespace":"scale"},"namespace":"scale","name":"backend-fnjx8","reconcileID":"f7dbf024-fa70-4f51-95c3-be5c86c19381"} +{"level":"info","ts":"2024-08-16T17:15:09Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:15:09Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":200,"total":1} +{"level":"info","ts":"2024-08-16T17:15:09Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:09Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:09Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:09Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:09Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:09Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:09Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:09Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:09Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:09Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:09Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":200} +{"level":"info","ts":"2024-08-16T17:15:09Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":200} +{"level":"info","ts":"2024-08-16T17:15:09Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-fnjx8","namespace":"scale"},"namespace":"scale","name":"backend-fnjx8","reconcileID":"c9a2f20d-9e3f-437a-b0dc-ed5cd1b7988f"} +{"level":"info","ts":"2024-08-16T17:15:09Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-fnjx8","namespace":"scale"},"namespace":"scale","name":"backend-fnjx8","reconcileID":"c9a2f20d-9e3f-437a-b0dc-ed5cd1b7988f"} +{"level":"info","ts":"2024-08-16T17:15:09Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:15:09Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":201,"total":1} +{"level":"info","ts":"2024-08-16T17:15:09Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:09Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:09Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:09Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:09Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:09Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:09Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:09Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:09Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:09Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:09Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":201} +{"level":"info","ts":"2024-08-16T17:15:09Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":201} +{"level":"info","ts":"2024-08-16T17:15:09Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-fnjx8","namespace":"scale"},"namespace":"scale","name":"backend-fnjx8","reconcileID":"3a0a10cb-2f7e-41ce-b829-619b15915008"} +{"level":"info","ts":"2024-08-16T17:15:09Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-fnjx8","namespace":"scale"},"namespace":"scale","name":"backend-fnjx8","reconcileID":"3a0a10cb-2f7e-41ce-b829-619b15915008"} +{"level":"info","ts":"2024-08-16T17:15:09Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:15:09Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":202,"total":1} +{"level":"info","ts":"2024-08-16T17:15:09Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:09Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:09Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:09Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:09Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:09Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:09Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:09Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:09Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:09Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:09Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":202} +{"level":"info","ts":"2024-08-16T17:15:09Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":202} +{"level":"info","ts":"2024-08-16T17:15:09Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-fnjx8","namespace":"scale"},"namespace":"scale","name":"backend-fnjx8","reconcileID":"999ac9fe-9c74-4b1b-b6be-3a937404a587"} +{"level":"info","ts":"2024-08-16T17:15:09Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-fnjx8","namespace":"scale"},"namespace":"scale","name":"backend-fnjx8","reconcileID":"999ac9fe-9c74-4b1b-b6be-3a937404a587"} +{"level":"info","ts":"2024-08-16T17:15:09Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:15:09Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":203,"total":1} +{"level":"info","ts":"2024-08-16T17:15:09Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:09Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:09Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:09Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:09Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:09Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:09Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:09Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:09Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:09Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:09Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":203} +{"level":"info","ts":"2024-08-16T17:15:09Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":203} +{"level":"info","ts":"2024-08-16T17:15:09Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-fnjx8","namespace":"scale"},"namespace":"scale","name":"backend-fnjx8","reconcileID":"ce5f97f7-6cbe-41d8-b182-4a5560579734"} +{"level":"info","ts":"2024-08-16T17:15:09Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-fnjx8","namespace":"scale"},"namespace":"scale","name":"backend-fnjx8","reconcileID":"ce5f97f7-6cbe-41d8-b182-4a5560579734"} +{"level":"info","ts":"2024-08-16T17:15:09Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:15:09Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":204,"total":1} +{"level":"info","ts":"2024-08-16T17:15:09Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:09Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:09Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:09Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:09Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:09Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:09Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:09Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:09Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:09Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:09Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":204} +{"level":"info","ts":"2024-08-16T17:15:09Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":204} +{"level":"info","ts":"2024-08-16T17:15:09Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-fnjx8","namespace":"scale"},"namespace":"scale","name":"backend-fnjx8","reconcileID":"466f4aac-e263-4c97-b51d-7e4d8b9509c9"} +{"level":"info","ts":"2024-08-16T17:15:09Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-fnjx8","namespace":"scale"},"namespace":"scale","name":"backend-fnjx8","reconcileID":"466f4aac-e263-4c97-b51d-7e4d8b9509c9"} +{"level":"info","ts":"2024-08-16T17:15:09Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:15:09Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":205,"total":1} +{"level":"info","ts":"2024-08-16T17:15:09Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:09Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:09Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:09Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:09Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:09Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:09Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:09Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:09Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:09Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:09Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":205} +{"level":"info","ts":"2024-08-16T17:15:09Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":205} +{"level":"info","ts":"2024-08-16T17:15:09Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-zmnj7","namespace":"scale"},"namespace":"scale","name":"backend-zmnj7","reconcileID":"611f031b-bf6f-494e-b19a-81ef62f4adae"} +{"level":"info","ts":"2024-08-16T17:15:09Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-zmnj7","namespace":"scale"},"namespace":"scale","name":"backend-zmnj7","reconcileID":"611f031b-bf6f-494e-b19a-81ef62f4adae"} +{"level":"info","ts":"2024-08-16T17:15:09Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:15:09Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":206,"total":1} +{"level":"info","ts":"2024-08-16T17:15:09Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:09Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:09Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:09Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:09Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:09Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:09Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:09Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:09Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:09Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:09Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":206} +{"level":"info","ts":"2024-08-16T17:15:09Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":206} +{"level":"info","ts":"2024-08-16T17:15:09Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-fnjx8","namespace":"scale"},"namespace":"scale","name":"backend-fnjx8","reconcileID":"9ce1711d-e612-4e3a-900b-e255af922721"} +{"level":"info","ts":"2024-08-16T17:15:09Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-fnjx8","namespace":"scale"},"namespace":"scale","name":"backend-fnjx8","reconcileID":"9ce1711d-e612-4e3a-900b-e255af922721"} +{"level":"info","ts":"2024-08-16T17:15:09Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:15:09Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":207,"total":1} +{"level":"info","ts":"2024-08-16T17:15:09Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:09Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:09Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:09Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:09Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:09Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:09Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:09Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:09Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:09Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:09Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":207} +{"level":"info","ts":"2024-08-16T17:15:09Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":207} +{"level":"info","ts":"2024-08-16T17:15:09Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-zmnj7","namespace":"scale"},"namespace":"scale","name":"backend-zmnj7","reconcileID":"f0a47bd2-6884-4fef-aa15-2a9fca393120"} +{"level":"info","ts":"2024-08-16T17:15:09Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-zmnj7","namespace":"scale"},"namespace":"scale","name":"backend-zmnj7","reconcileID":"f0a47bd2-6884-4fef-aa15-2a9fca393120"} +{"level":"info","ts":"2024-08-16T17:15:09Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:15:09Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":208,"total":1} +{"level":"info","ts":"2024-08-16T17:15:09Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:09Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:09Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:09Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:09Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:09Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:09Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:09Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:09Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:09Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:09Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":208} +{"level":"info","ts":"2024-08-16T17:15:09Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":208} +{"level":"info","ts":"2024-08-16T17:15:10Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-fnjx8","namespace":"scale"},"namespace":"scale","name":"backend-fnjx8","reconcileID":"2aabaa5f-fb82-49cb-9e22-3db530d7d01b"} +{"level":"info","ts":"2024-08-16T17:15:10Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-fnjx8","namespace":"scale"},"namespace":"scale","name":"backend-fnjx8","reconcileID":"2aabaa5f-fb82-49cb-9e22-3db530d7d01b"} +{"level":"info","ts":"2024-08-16T17:15:10Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:15:10Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":209,"total":1} +{"level":"info","ts":"2024-08-16T17:15:10Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:10Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:10Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:10Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:10Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:10Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:10Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:10Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:10Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:10Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:10Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":209} +{"level":"info","ts":"2024-08-16T17:15:10Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":209} +{"level":"info","ts":"2024-08-16T17:15:10Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-zmnj7","namespace":"scale"},"namespace":"scale","name":"backend-zmnj7","reconcileID":"865ab3d9-75a7-47f1-b462-3a9ecf44b687"} +{"level":"info","ts":"2024-08-16T17:15:10Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-zmnj7","namespace":"scale"},"namespace":"scale","name":"backend-zmnj7","reconcileID":"865ab3d9-75a7-47f1-b462-3a9ecf44b687"} +{"level":"info","ts":"2024-08-16T17:15:10Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:15:10Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":210,"total":1} +{"level":"info","ts":"2024-08-16T17:15:10Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:10Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:10Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:10Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:10Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:10Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:10Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:10Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:10Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:10Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:10Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":210} +{"level":"info","ts":"2024-08-16T17:15:10Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":210} +{"level":"info","ts":"2024-08-16T17:15:10Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-zmnj7","namespace":"scale"},"namespace":"scale","name":"backend-zmnj7","reconcileID":"401d1106-d2e1-4cdc-871c-57f2bfa53910"} +{"level":"info","ts":"2024-08-16T17:15:10Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-zmnj7","namespace":"scale"},"namespace":"scale","name":"backend-zmnj7","reconcileID":"401d1106-d2e1-4cdc-871c-57f2bfa53910"} +{"level":"info","ts":"2024-08-16T17:15:10Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:15:10Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":211,"total":1} +{"level":"info","ts":"2024-08-16T17:15:10Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:10Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:10Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:10Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:10Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:10Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:10Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:10Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:10Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:10Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:10Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":211} +{"level":"info","ts":"2024-08-16T17:15:10Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":211} +{"level":"info","ts":"2024-08-16T17:15:10Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-zmnj7","namespace":"scale"},"namespace":"scale","name":"backend-zmnj7","reconcileID":"10fc1f35-87c5-4955-a9bc-1e40815a0ac6"} +{"level":"info","ts":"2024-08-16T17:15:10Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-zmnj7","namespace":"scale"},"namespace":"scale","name":"backend-zmnj7","reconcileID":"10fc1f35-87c5-4955-a9bc-1e40815a0ac6"} +{"level":"info","ts":"2024-08-16T17:15:10Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:15:10Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":212,"total":1} +{"level":"info","ts":"2024-08-16T17:15:10Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:10Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:10Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:10Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:10Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:10Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:10Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:10Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:10Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:10Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:10Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":212} +{"level":"info","ts":"2024-08-16T17:15:10Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":212} +{"level":"info","ts":"2024-08-16T17:15:10Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-zmnj7","namespace":"scale"},"namespace":"scale","name":"backend-zmnj7","reconcileID":"cd6432b4-b94a-4d47-b10d-bc6b554cd390"} +{"level":"info","ts":"2024-08-16T17:15:10Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-zmnj7","namespace":"scale"},"namespace":"scale","name":"backend-zmnj7","reconcileID":"cd6432b4-b94a-4d47-b10d-bc6b554cd390"} +{"level":"info","ts":"2024-08-16T17:15:10Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:15:10Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":213,"total":1} +{"level":"info","ts":"2024-08-16T17:15:10Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:10Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:10Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:10Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:10Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:10Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:10Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:10Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:10Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:10Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:10Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":213} +{"level":"info","ts":"2024-08-16T17:15:10Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":213} +{"level":"info","ts":"2024-08-16T17:15:10Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-zmnj7","namespace":"scale"},"namespace":"scale","name":"backend-zmnj7","reconcileID":"8bff39ce-bcf0-4a67-968b-19b1bc4c0e72"} +{"level":"info","ts":"2024-08-16T17:15:10Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-zmnj7","namespace":"scale"},"namespace":"scale","name":"backend-zmnj7","reconcileID":"8bff39ce-bcf0-4a67-968b-19b1bc4c0e72"} +{"level":"info","ts":"2024-08-16T17:15:10Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:15:10Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":214,"total":1} +{"level":"info","ts":"2024-08-16T17:15:10Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:10Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:10Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:10Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:10Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:10Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:10Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:10Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:10Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:10Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:10Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":214} +{"level":"info","ts":"2024-08-16T17:15:10Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":214} +{"level":"info","ts":"2024-08-16T17:15:10Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-zmnj7","namespace":"scale"},"namespace":"scale","name":"backend-zmnj7","reconcileID":"1e37ca6d-8de7-4da6-a46b-e3de518f61ae"} +{"level":"info","ts":"2024-08-16T17:15:10Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-zmnj7","namespace":"scale"},"namespace":"scale","name":"backend-zmnj7","reconcileID":"1e37ca6d-8de7-4da6-a46b-e3de518f61ae"} +{"level":"info","ts":"2024-08-16T17:15:10Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:15:10Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":215,"total":1} +{"level":"info","ts":"2024-08-16T17:15:10Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:10Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:10Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:10Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:10Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:10Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:10Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:10Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:10Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:10Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:10Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":215} +{"level":"info","ts":"2024-08-16T17:15:10Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":215} +{"level":"info","ts":"2024-08-16T17:15:10Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-zmnj7","namespace":"scale"},"namespace":"scale","name":"backend-zmnj7","reconcileID":"81e42add-e7fb-4285-b1d5-6a8537ffa349"} +{"level":"info","ts":"2024-08-16T17:15:10Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-zmnj7","namespace":"scale"},"namespace":"scale","name":"backend-zmnj7","reconcileID":"81e42add-e7fb-4285-b1d5-6a8537ffa349"} +{"level":"info","ts":"2024-08-16T17:15:10Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:15:10Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":216,"total":1} +{"level":"info","ts":"2024-08-16T17:15:10Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:10Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:10Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:10Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:10Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:10Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:10Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:10Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:10Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:10Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:10Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":216} +{"level":"info","ts":"2024-08-16T17:15:10Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":216} +{"level":"info","ts":"2024-08-16T17:15:10Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-zmnj7","namespace":"scale"},"namespace":"scale","name":"backend-zmnj7","reconcileID":"97f106b6-4087-47a8-b4e8-bb11cc863c37"} +{"level":"info","ts":"2024-08-16T17:15:10Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-zmnj7","namespace":"scale"},"namespace":"scale","name":"backend-zmnj7","reconcileID":"97f106b6-4087-47a8-b4e8-bb11cc863c37"} +{"level":"info","ts":"2024-08-16T17:15:10Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:15:10Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":217,"total":1} +{"level":"info","ts":"2024-08-16T17:15:10Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:10Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:10Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:10Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:10Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:10Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:10Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:10Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:10Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:10Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:10Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":217} +{"level":"info","ts":"2024-08-16T17:15:10Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":217} +{"level":"info","ts":"2024-08-16T17:15:11Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-zmnj7","namespace":"scale"},"namespace":"scale","name":"backend-zmnj7","reconcileID":"95a6d5ac-99b4-4f38-b0ae-e570118b01f4"} +{"level":"info","ts":"2024-08-16T17:15:11Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-zmnj7","namespace":"scale"},"namespace":"scale","name":"backend-zmnj7","reconcileID":"95a6d5ac-99b4-4f38-b0ae-e570118b01f4"} +{"level":"info","ts":"2024-08-16T17:15:11Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:15:11Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":218,"total":1} +{"level":"info","ts":"2024-08-16T17:15:11Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:11Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:11Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:11Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:11Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:11Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:11Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:11Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:11Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:11Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:11Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":218} +{"level":"info","ts":"2024-08-16T17:15:11Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":218} +{"level":"info","ts":"2024-08-16T17:15:11Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-zmnj7","namespace":"scale"},"namespace":"scale","name":"backend-zmnj7","reconcileID":"b236037c-495e-4724-b5af-1b1997a77914"} +{"level":"info","ts":"2024-08-16T17:15:11Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-zmnj7","namespace":"scale"},"namespace":"scale","name":"backend-zmnj7","reconcileID":"b236037c-495e-4724-b5af-1b1997a77914"} +{"level":"info","ts":"2024-08-16T17:15:11Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:15:11Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":219,"total":1} +{"level":"info","ts":"2024-08-16T17:15:11Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:11Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:11Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:11Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:11Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:11Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:11Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:11Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:11Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:11Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:11Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":219} +{"level":"info","ts":"2024-08-16T17:15:11Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":219} +{"level":"info","ts":"2024-08-16T17:15:11Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-zmnj7","namespace":"scale"},"namespace":"scale","name":"backend-zmnj7","reconcileID":"842fba4d-9703-4a3b-9532-8750bc460f27"} +{"level":"info","ts":"2024-08-16T17:15:11Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-zmnj7","namespace":"scale"},"namespace":"scale","name":"backend-zmnj7","reconcileID":"842fba4d-9703-4a3b-9532-8750bc460f27"} +{"level":"info","ts":"2024-08-16T17:15:11Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:15:11Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":220,"total":1} +{"level":"info","ts":"2024-08-16T17:15:11Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:11Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:11Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:11Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:11Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:11Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:11Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:11Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:11Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:11Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:11Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":220} +{"level":"info","ts":"2024-08-16T17:15:11Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":220} +{"level":"info","ts":"2024-08-16T17:15:11Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-zmnj7","namespace":"scale"},"namespace":"scale","name":"backend-zmnj7","reconcileID":"ace6877d-5d60-4501-9f0d-e27d59284abb"} +{"level":"info","ts":"2024-08-16T17:15:11Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-zmnj7","namespace":"scale"},"namespace":"scale","name":"backend-zmnj7","reconcileID":"ace6877d-5d60-4501-9f0d-e27d59284abb"} +{"level":"info","ts":"2024-08-16T17:15:11Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:15:11Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":221,"total":1} +{"level":"info","ts":"2024-08-16T17:15:11Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:11Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:11Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:11Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:11Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:11Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:11Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:11Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:11Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:11Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:11Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":221} +{"level":"info","ts":"2024-08-16T17:15:11Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":221} +{"level":"info","ts":"2024-08-16T17:15:11Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-zmnj7","namespace":"scale"},"namespace":"scale","name":"backend-zmnj7","reconcileID":"6b54bc5f-2a2f-4de6-8790-ac69731cea73"} +{"level":"info","ts":"2024-08-16T17:15:11Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-zmnj7","namespace":"scale"},"namespace":"scale","name":"backend-zmnj7","reconcileID":"6b54bc5f-2a2f-4de6-8790-ac69731cea73"} +{"level":"info","ts":"2024-08-16T17:15:11Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:15:11Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":222,"total":1} +{"level":"info","ts":"2024-08-16T17:15:11Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:11Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:11Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:11Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:11Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:11Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:11Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:11Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:11Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:11Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:11Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":222} +{"level":"info","ts":"2024-08-16T17:15:11Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":222} +{"level":"info","ts":"2024-08-16T17:15:11Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-zmnj7","namespace":"scale"},"namespace":"scale","name":"backend-zmnj7","reconcileID":"7eafce5b-17d0-4fc9-bf0a-2de81ea80511"} +{"level":"info","ts":"2024-08-16T17:15:11Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-zmnj7","namespace":"scale"},"namespace":"scale","name":"backend-zmnj7","reconcileID":"7eafce5b-17d0-4fc9-bf0a-2de81ea80511"} +{"level":"info","ts":"2024-08-16T17:15:11Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:15:11Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":223,"total":1} +{"level":"info","ts":"2024-08-16T17:15:11Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:11Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:11Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:11Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:11Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:11Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:11Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:11Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:11Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:11Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:11Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":223} +{"level":"info","ts":"2024-08-16T17:15:11Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":223} +{"level":"info","ts":"2024-08-16T17:15:11Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-zmnj7","namespace":"scale"},"namespace":"scale","name":"backend-zmnj7","reconcileID":"44185b3a-0774-4574-8767-ceb41e3c242b"} +{"level":"info","ts":"2024-08-16T17:15:11Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-zmnj7","namespace":"scale"},"namespace":"scale","name":"backend-zmnj7","reconcileID":"44185b3a-0774-4574-8767-ceb41e3c242b"} +{"level":"info","ts":"2024-08-16T17:15:11Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:15:11Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":224,"total":1} +{"level":"info","ts":"2024-08-16T17:15:11Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:11Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:11Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:11Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:11Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:11Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:11Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:11Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:11Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:11Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:11Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":224} +{"level":"info","ts":"2024-08-16T17:15:11Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":224} +{"level":"info","ts":"2024-08-16T17:15:11Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-zmnj7","namespace":"scale"},"namespace":"scale","name":"backend-zmnj7","reconcileID":"ed34979d-d76c-48ec-8670-f96bf9e8ddc8"} +{"level":"info","ts":"2024-08-16T17:15:11Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-zmnj7","namespace":"scale"},"namespace":"scale","name":"backend-zmnj7","reconcileID":"ed34979d-d76c-48ec-8670-f96bf9e8ddc8"} +{"level":"info","ts":"2024-08-16T17:15:11Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:15:11Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":225,"total":1} +{"level":"info","ts":"2024-08-16T17:15:11Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:11Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:11Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:11Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:11Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:11Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:11Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:11Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:11Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:11Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:11Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":225} +{"level":"info","ts":"2024-08-16T17:15:11Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":225} +{"level":"info","ts":"2024-08-16T17:15:11Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-zmnj7","namespace":"scale"},"namespace":"scale","name":"backend-zmnj7","reconcileID":"2394d8a4-3311-450b-b24e-5dcd72dd361a"} +{"level":"info","ts":"2024-08-16T17:15:11Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-zmnj7","namespace":"scale"},"namespace":"scale","name":"backend-zmnj7","reconcileID":"2394d8a4-3311-450b-b24e-5dcd72dd361a"} +{"level":"info","ts":"2024-08-16T17:15:11Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:15:11Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":226,"total":1} +{"level":"info","ts":"2024-08-16T17:15:11Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:11Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:11Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:11Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:11Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:11Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:11Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:11Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:11Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:11Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:11Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":226} +{"level":"info","ts":"2024-08-16T17:15:11Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":226} +{"level":"info","ts":"2024-08-16T17:15:12Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-zmnj7","namespace":"scale"},"namespace":"scale","name":"backend-zmnj7","reconcileID":"68067eef-d6d2-4c6d-8be8-c9f91d3ec263"} +{"level":"info","ts":"2024-08-16T17:15:12Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-zmnj7","namespace":"scale"},"namespace":"scale","name":"backend-zmnj7","reconcileID":"68067eef-d6d2-4c6d-8be8-c9f91d3ec263"} +{"level":"info","ts":"2024-08-16T17:15:12Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:15:12Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":227,"total":1} +{"level":"info","ts":"2024-08-16T17:15:12Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:12Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:12Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:12Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:12Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:12Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:12Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:12Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:12Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:12Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:12Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":227} +{"level":"info","ts":"2024-08-16T17:15:12Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":227} +{"level":"info","ts":"2024-08-16T17:15:12Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-zmnj7","namespace":"scale"},"namespace":"scale","name":"backend-zmnj7","reconcileID":"08d92841-c740-40b9-a204-c90b572afecf"} +{"level":"info","ts":"2024-08-16T17:15:12Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-zmnj7","namespace":"scale"},"namespace":"scale","name":"backend-zmnj7","reconcileID":"08d92841-c740-40b9-a204-c90b572afecf"} +{"level":"info","ts":"2024-08-16T17:15:12Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:15:12Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":228,"total":1} +{"level":"info","ts":"2024-08-16T17:15:12Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:12Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:12Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:12Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:12Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:12Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:12Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:12Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:12Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:12Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:12Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":228} +{"level":"info","ts":"2024-08-16T17:15:12Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":228} +{"level":"info","ts":"2024-08-16T17:15:12Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-zmnj7","namespace":"scale"},"namespace":"scale","name":"backend-zmnj7","reconcileID":"0f634053-0d50-4a7f-8998-2857fb452ea6"} +{"level":"info","ts":"2024-08-16T17:15:12Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-zmnj7","namespace":"scale"},"namespace":"scale","name":"backend-zmnj7","reconcileID":"0f634053-0d50-4a7f-8998-2857fb452ea6"} +{"level":"info","ts":"2024-08-16T17:15:12Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:15:12Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":229,"total":1} +{"level":"info","ts":"2024-08-16T17:15:12Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:12Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:12Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:12Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:12Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:12Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:12Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:12Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:12Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:12Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:12Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":229} +{"level":"info","ts":"2024-08-16T17:15:12Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":229} +{"level":"info","ts":"2024-08-16T17:15:12Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-zmnj7","namespace":"scale"},"namespace":"scale","name":"backend-zmnj7","reconcileID":"37263594-9d6a-4f35-ab4a-be78a73c438b"} +{"level":"info","ts":"2024-08-16T17:15:12Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-zmnj7","namespace":"scale"},"namespace":"scale","name":"backend-zmnj7","reconcileID":"37263594-9d6a-4f35-ab4a-be78a73c438b"} +{"level":"info","ts":"2024-08-16T17:15:12Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:15:12Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":230,"total":1} +{"level":"info","ts":"2024-08-16T17:15:12Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:12Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:12Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:12Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:12Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:12Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:12Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:12Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:12Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:12Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:12Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":230} +{"level":"info","ts":"2024-08-16T17:15:12Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":230} +{"level":"info","ts":"2024-08-16T17:15:12Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-zmnj7","namespace":"scale"},"namespace":"scale","name":"backend-zmnj7","reconcileID":"008f907a-a35d-49ad-949f-cee4142d532b"} +{"level":"info","ts":"2024-08-16T17:15:12Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-zmnj7","namespace":"scale"},"namespace":"scale","name":"backend-zmnj7","reconcileID":"008f907a-a35d-49ad-949f-cee4142d532b"} +{"level":"info","ts":"2024-08-16T17:15:12Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:15:12Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":231,"total":1} +{"level":"info","ts":"2024-08-16T17:15:12Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:12Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:12Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:12Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:12Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:12Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:12Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:12Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:12Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:12Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:12Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":231} +{"level":"info","ts":"2024-08-16T17:15:12Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":231} +{"level":"info","ts":"2024-08-16T17:15:12Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-zmnj7","namespace":"scale"},"namespace":"scale","name":"backend-zmnj7","reconcileID":"0744a8aa-6af2-485f-a85f-f4ecdcb90a3d"} +{"level":"info","ts":"2024-08-16T17:15:12Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-zmnj7","namespace":"scale"},"namespace":"scale","name":"backend-zmnj7","reconcileID":"0744a8aa-6af2-485f-a85f-f4ecdcb90a3d"} +{"level":"info","ts":"2024-08-16T17:15:12Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:15:12Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":232,"total":1} +{"level":"info","ts":"2024-08-16T17:15:12Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:12Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:12Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:12Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:12Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:12Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:12Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:12Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:12Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:12Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:12Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":232} +{"level":"info","ts":"2024-08-16T17:15:12Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":232} +{"level":"info","ts":"2024-08-16T17:15:12Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-zmnj7","namespace":"scale"},"namespace":"scale","name":"backend-zmnj7","reconcileID":"64d8f12e-1b6a-4fc9-910e-aecead5aca39"} +{"level":"info","ts":"2024-08-16T17:15:12Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-zmnj7","namespace":"scale"},"namespace":"scale","name":"backend-zmnj7","reconcileID":"64d8f12e-1b6a-4fc9-910e-aecead5aca39"} +{"level":"info","ts":"2024-08-16T17:15:12Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:15:12Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":233,"total":1} +{"level":"info","ts":"2024-08-16T17:15:12Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:12Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:12Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:12Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:12Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:12Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:12Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:12Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:12Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:12Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:12Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":233} +{"level":"info","ts":"2024-08-16T17:15:12Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":233} +{"level":"info","ts":"2024-08-16T17:15:12Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-zmnj7","namespace":"scale"},"namespace":"scale","name":"backend-zmnj7","reconcileID":"53e98091-dc45-4614-800a-3e66fcb25ef4"} +{"level":"info","ts":"2024-08-16T17:15:12Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-zmnj7","namespace":"scale"},"namespace":"scale","name":"backend-zmnj7","reconcileID":"53e98091-dc45-4614-800a-3e66fcb25ef4"} +{"level":"info","ts":"2024-08-16T17:15:12Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:15:12Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":234,"total":1} +{"level":"info","ts":"2024-08-16T17:15:12Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:12Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:12Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:12Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:12Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:12Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:12Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:12Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:12Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:12Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:12Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":234} +{"level":"info","ts":"2024-08-16T17:15:12Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":234} +{"level":"info","ts":"2024-08-16T17:15:13Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-zmnj7","namespace":"scale"},"namespace":"scale","name":"backend-zmnj7","reconcileID":"a02d9ea6-4c64-43c2-8fec-098a824812d6"} +{"level":"info","ts":"2024-08-16T17:15:13Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-zmnj7","namespace":"scale"},"namespace":"scale","name":"backend-zmnj7","reconcileID":"a02d9ea6-4c64-43c2-8fec-098a824812d6"} +{"level":"info","ts":"2024-08-16T17:15:13Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:15:13Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":235,"total":1} +{"level":"info","ts":"2024-08-16T17:15:13Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:13Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:13Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:13Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:13Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:13Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:13Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:13Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:13Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:13Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:13Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":235} +{"level":"info","ts":"2024-08-16T17:15:13Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":235} +{"level":"info","ts":"2024-08-16T17:15:13Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-zmnj7","namespace":"scale"},"namespace":"scale","name":"backend-zmnj7","reconcileID":"47bbcb2b-7e8c-4724-9b40-33c544aaf702"} +{"level":"info","ts":"2024-08-16T17:15:13Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-zmnj7","namespace":"scale"},"namespace":"scale","name":"backend-zmnj7","reconcileID":"47bbcb2b-7e8c-4724-9b40-33c544aaf702"} +{"level":"info","ts":"2024-08-16T17:15:13Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:15:13Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":236,"total":1} +{"level":"info","ts":"2024-08-16T17:15:13Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:13Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:13Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:13Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:13Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:13Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:13Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:13Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:13Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:13Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:13Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":236} +{"level":"info","ts":"2024-08-16T17:15:13Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":236} +{"level":"info","ts":"2024-08-16T17:15:13Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-zmnj7","namespace":"scale"},"namespace":"scale","name":"backend-zmnj7","reconcileID":"31b4ae67-c117-4f14-825a-c1a03830daa2"} +{"level":"info","ts":"2024-08-16T17:15:13Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-zmnj7","namespace":"scale"},"namespace":"scale","name":"backend-zmnj7","reconcileID":"31b4ae67-c117-4f14-825a-c1a03830daa2"} +{"level":"info","ts":"2024-08-16T17:15:13Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:15:13Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":237,"total":1} +{"level":"info","ts":"2024-08-16T17:15:13Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:13Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:13Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:13Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:13Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:13Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:13Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:13Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:13Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:13Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:13Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":237} +{"level":"info","ts":"2024-08-16T17:15:13Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":237} +{"level":"info","ts":"2024-08-16T17:15:13Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-zmnj7","namespace":"scale"},"namespace":"scale","name":"backend-zmnj7","reconcileID":"258e51df-43d9-461d-9580-4734df3a5746"} +{"level":"info","ts":"2024-08-16T17:15:13Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-zmnj7","namespace":"scale"},"namespace":"scale","name":"backend-zmnj7","reconcileID":"258e51df-43d9-461d-9580-4734df3a5746"} +{"level":"info","ts":"2024-08-16T17:15:13Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:15:13Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":238,"total":1} +{"level":"info","ts":"2024-08-16T17:15:13Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:13Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:13Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:13Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:13Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:13Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:13Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:13Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:13Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:13Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:13Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":238} +{"level":"info","ts":"2024-08-16T17:15:13Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":238} +{"level":"info","ts":"2024-08-16T17:15:13Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-zmnj7","namespace":"scale"},"namespace":"scale","name":"backend-zmnj7","reconcileID":"e88f61db-92a8-4f67-a691-b0ba318634b6"} +{"level":"info","ts":"2024-08-16T17:15:13Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-zmnj7","namespace":"scale"},"namespace":"scale","name":"backend-zmnj7","reconcileID":"e88f61db-92a8-4f67-a691-b0ba318634b6"} +{"level":"info","ts":"2024-08-16T17:15:13Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:15:13Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":239,"total":1} +{"level":"info","ts":"2024-08-16T17:15:13Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:13Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:13Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:13Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:13Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:13Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:13Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:13Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:13Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:13Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:13Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":239} +{"level":"info","ts":"2024-08-16T17:15:13Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":239} +{"level":"info","ts":"2024-08-16T17:15:13Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-zmnj7","namespace":"scale"},"namespace":"scale","name":"backend-zmnj7","reconcileID":"ac7e02dd-3e06-4147-9cc1-468ccf322960"} +{"level":"info","ts":"2024-08-16T17:15:13Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-zmnj7","namespace":"scale"},"namespace":"scale","name":"backend-zmnj7","reconcileID":"ac7e02dd-3e06-4147-9cc1-468ccf322960"} +{"level":"info","ts":"2024-08-16T17:15:13Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:15:13Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":240,"total":1} +{"level":"info","ts":"2024-08-16T17:15:13Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:13Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:13Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:13Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:13Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:13Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:13Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:13Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:13Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:13Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:13Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":240} +{"level":"info","ts":"2024-08-16T17:15:13Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":240} +{"level":"info","ts":"2024-08-16T17:15:13Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-zmnj7","namespace":"scale"},"namespace":"scale","name":"backend-zmnj7","reconcileID":"36f76767-2941-4317-9e3b-f7bf1e208282"} +{"level":"info","ts":"2024-08-16T17:15:13Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-zmnj7","namespace":"scale"},"namespace":"scale","name":"backend-zmnj7","reconcileID":"36f76767-2941-4317-9e3b-f7bf1e208282"} +{"level":"info","ts":"2024-08-16T17:15:13Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:15:13Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":241,"total":1} +{"level":"info","ts":"2024-08-16T17:15:13Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:13Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:13Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:13Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:13Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:13Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:13Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:13Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:13Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:13Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:13Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":241} +{"level":"info","ts":"2024-08-16T17:15:13Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":241} +{"level":"info","ts":"2024-08-16T17:15:14Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-zmnj7","namespace":"scale"},"namespace":"scale","name":"backend-zmnj7","reconcileID":"7aaf84ec-231c-4849-99be-cf4dab88f848"} +{"level":"info","ts":"2024-08-16T17:15:14Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-zmnj7","namespace":"scale"},"namespace":"scale","name":"backend-zmnj7","reconcileID":"7aaf84ec-231c-4849-99be-cf4dab88f848"} +{"level":"info","ts":"2024-08-16T17:15:14Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:15:14Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":242,"total":1} +{"level":"info","ts":"2024-08-16T17:15:14Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:14Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:14Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:14Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:14Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:14Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:14Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:14Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:14Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:14Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:14Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":242} +{"level":"info","ts":"2024-08-16T17:15:14Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":242} +{"level":"info","ts":"2024-08-16T17:15:14Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-zmnj7","namespace":"scale"},"namespace":"scale","name":"backend-zmnj7","reconcileID":"59d2bd93-b2c4-4514-bd06-191b0b768e0f"} +{"level":"info","ts":"2024-08-16T17:15:14Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-zmnj7","namespace":"scale"},"namespace":"scale","name":"backend-zmnj7","reconcileID":"59d2bd93-b2c4-4514-bd06-191b0b768e0f"} +{"level":"info","ts":"2024-08-16T17:15:14Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:15:14Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":243,"total":1} +{"level":"info","ts":"2024-08-16T17:15:14Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:14Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:14Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:14Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:14Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:14Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:14Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:14Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:14Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:14Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:14Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":243} +{"level":"info","ts":"2024-08-16T17:15:14Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":243} +{"level":"info","ts":"2024-08-16T17:15:14Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-zmnj7","namespace":"scale"},"namespace":"scale","name":"backend-zmnj7","reconcileID":"0dc4052a-040f-4dda-a68d-e5d79b82483e"} +{"level":"info","ts":"2024-08-16T17:15:14Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-zmnj7","namespace":"scale"},"namespace":"scale","name":"backend-zmnj7","reconcileID":"0dc4052a-040f-4dda-a68d-e5d79b82483e"} +{"level":"info","ts":"2024-08-16T17:15:14Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:15:14Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":244,"total":1} +{"level":"info","ts":"2024-08-16T17:15:14Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:14Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:14Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:14Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:14Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:14Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:14Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:14Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:14Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:14Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:14Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":244} +{"level":"info","ts":"2024-08-16T17:15:14Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":244} +{"level":"info","ts":"2024-08-16T17:15:14Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-zmnj7","namespace":"scale"},"namespace":"scale","name":"backend-zmnj7","reconcileID":"3ac39809-e5db-4bb8-a025-6928577db1f7"} +{"level":"info","ts":"2024-08-16T17:15:14Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-zmnj7","namespace":"scale"},"namespace":"scale","name":"backend-zmnj7","reconcileID":"3ac39809-e5db-4bb8-a025-6928577db1f7"} +{"level":"info","ts":"2024-08-16T17:15:14Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:15:14Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":245,"total":1} +{"level":"info","ts":"2024-08-16T17:15:14Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:14Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:14Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:14Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:14Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:14Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:14Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:14Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:14Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:14Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:14Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":245} +{"level":"info","ts":"2024-08-16T17:15:14Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":245} +{"level":"info","ts":"2024-08-16T17:15:15Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-zmnj7","namespace":"scale"},"namespace":"scale","name":"backend-zmnj7","reconcileID":"02f9a23a-2bf8-4970-9bea-220da7681271"} +{"level":"info","ts":"2024-08-16T17:15:15Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-zmnj7","namespace":"scale"},"namespace":"scale","name":"backend-zmnj7","reconcileID":"02f9a23a-2bf8-4970-9bea-220da7681271"} +{"level":"info","ts":"2024-08-16T17:15:15Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:15:15Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":246,"total":1} +{"level":"info","ts":"2024-08-16T17:15:15Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:15Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:15Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:15Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:15Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:15Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:15Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:15Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:15Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:15Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:15Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":246} +{"level":"info","ts":"2024-08-16T17:15:15Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":246} +{"level":"info","ts":"2024-08-16T17:15:15Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-zqqx4","namespace":"scale"},"namespace":"scale","name":"backend-zqqx4","reconcileID":"3abdbdc1-4768-460c-a17e-4d827670e62c"} +{"level":"info","ts":"2024-08-16T17:15:15Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-zqqx4","namespace":"scale"},"namespace":"scale","name":"backend-zqqx4","reconcileID":"3abdbdc1-4768-460c-a17e-4d827670e62c"} +{"level":"info","ts":"2024-08-16T17:15:15Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:15:15Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":247,"total":1} +{"level":"info","ts":"2024-08-16T17:15:15Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:15Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:15Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:15Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:15Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:15Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:15Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:15Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:15Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:15Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:15Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":247} +{"level":"info","ts":"2024-08-16T17:15:15Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":247} +{"level":"info","ts":"2024-08-16T17:15:15Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-zmnj7","namespace":"scale"},"namespace":"scale","name":"backend-zmnj7","reconcileID":"8841b249-61d3-4c63-a564-e9fe5771986a"} +{"level":"info","ts":"2024-08-16T17:15:15Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-zmnj7","namespace":"scale"},"namespace":"scale","name":"backend-zmnj7","reconcileID":"8841b249-61d3-4c63-a564-e9fe5771986a"} +{"level":"info","ts":"2024-08-16T17:15:15Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:15:15Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":248,"total":1} +{"level":"info","ts":"2024-08-16T17:15:15Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:15Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:15Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:15Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:15Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:15Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:15Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:15Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:15Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:15Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:15Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":248} +{"level":"info","ts":"2024-08-16T17:15:15Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":248} +{"level":"info","ts":"2024-08-16T17:15:15Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-zqqx4","namespace":"scale"},"namespace":"scale","name":"backend-zqqx4","reconcileID":"e6c3f554-7fd0-4f38-999a-0e0577c18af0"} +{"level":"info","ts":"2024-08-16T17:15:15Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-zqqx4","namespace":"scale"},"namespace":"scale","name":"backend-zqqx4","reconcileID":"e6c3f554-7fd0-4f38-999a-0e0577c18af0"} +{"level":"info","ts":"2024-08-16T17:15:15Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:15:15Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":249,"total":1} +{"level":"info","ts":"2024-08-16T17:15:15Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:15Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:15Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:15Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:15Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:15Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:15Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:15Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:15Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:15Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:15Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":249} +{"level":"info","ts":"2024-08-16T17:15:15Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":249} +{"level":"info","ts":"2024-08-16T17:15:15Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-zqqx4","namespace":"scale"},"namespace":"scale","name":"backend-zqqx4","reconcileID":"cde25beb-73dc-44a7-b72c-56903191bd6a"} +{"level":"info","ts":"2024-08-16T17:15:15Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-zqqx4","namespace":"scale"},"namespace":"scale","name":"backend-zqqx4","reconcileID":"cde25beb-73dc-44a7-b72c-56903191bd6a"} +{"level":"info","ts":"2024-08-16T17:15:15Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:15:15Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":250,"total":1} +{"level":"info","ts":"2024-08-16T17:15:15Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:15Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:15Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:15Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:15Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:15Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:15Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:15Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:15Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:15Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:15Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":250} +{"level":"info","ts":"2024-08-16T17:15:15Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":250} +{"level":"info","ts":"2024-08-16T17:15:16Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-zmnj7","namespace":"scale"},"namespace":"scale","name":"backend-zmnj7","reconcileID":"1bcfa9e0-8867-4616-8488-126b66869682"} +{"level":"info","ts":"2024-08-16T17:15:16Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-zmnj7","namespace":"scale"},"namespace":"scale","name":"backend-zmnj7","reconcileID":"1bcfa9e0-8867-4616-8488-126b66869682"} +{"level":"info","ts":"2024-08-16T17:15:16Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:15:16Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":251,"total":1} +{"level":"info","ts":"2024-08-16T17:15:16Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:16Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:16Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:16Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:16Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:16Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:16Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:16Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:16Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:16Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:16Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":251} +{"level":"info","ts":"2024-08-16T17:15:16Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":251} +{"level":"info","ts":"2024-08-16T17:15:16Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-zqqx4","namespace":"scale"},"namespace":"scale","name":"backend-zqqx4","reconcileID":"a6b2e321-dc2e-4597-94e3-b1b771a699bb"} +{"level":"info","ts":"2024-08-16T17:15:16Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-zqqx4","namespace":"scale"},"namespace":"scale","name":"backend-zqqx4","reconcileID":"a6b2e321-dc2e-4597-94e3-b1b771a699bb"} +{"level":"info","ts":"2024-08-16T17:15:16Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:15:16Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":252,"total":1} +{"level":"info","ts":"2024-08-16T17:15:16Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:16Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:16Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:16Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:16Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:16Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:16Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:16Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:16Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:16Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:16Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":252} +{"level":"info","ts":"2024-08-16T17:15:16Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":252} +{"level":"info","ts":"2024-08-16T17:15:16Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-zqqx4","namespace":"scale"},"namespace":"scale","name":"backend-zqqx4","reconcileID":"ba46f46c-69c4-4427-81d9-471e8529bc26"} +{"level":"info","ts":"2024-08-16T17:15:16Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-zqqx4","namespace":"scale"},"namespace":"scale","name":"backend-zqqx4","reconcileID":"ba46f46c-69c4-4427-81d9-471e8529bc26"} +{"level":"info","ts":"2024-08-16T17:15:16Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:15:16Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":253,"total":1} +{"level":"info","ts":"2024-08-16T17:15:16Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:16Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:16Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:16Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:16Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:16Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:16Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:16Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:16Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:16Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:16Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":253} +{"level":"info","ts":"2024-08-16T17:15:16Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":253} +{"level":"info","ts":"2024-08-16T17:15:16Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-zqqx4","namespace":"scale"},"namespace":"scale","name":"backend-zqqx4","reconcileID":"d0f07a98-6b34-46c5-91e4-5dd147544c7c"} +{"level":"info","ts":"2024-08-16T17:15:16Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-zqqx4","namespace":"scale"},"namespace":"scale","name":"backend-zqqx4","reconcileID":"d0f07a98-6b34-46c5-91e4-5dd147544c7c"} +{"level":"info","ts":"2024-08-16T17:15:16Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:15:16Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":254,"total":1} +{"level":"info","ts":"2024-08-16T17:15:16Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:16Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:16Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:16Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:16Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:16Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:16Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:16Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:16Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:16Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:16Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":254} +{"level":"info","ts":"2024-08-16T17:15:16Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":254} +{"level":"info","ts":"2024-08-16T17:15:16Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-zqqx4","namespace":"scale"},"namespace":"scale","name":"backend-zqqx4","reconcileID":"b8b51369-9bd1-4ad8-8c0e-22816e512900"} +{"level":"info","ts":"2024-08-16T17:15:16Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-zqqx4","namespace":"scale"},"namespace":"scale","name":"backend-zqqx4","reconcileID":"b8b51369-9bd1-4ad8-8c0e-22816e512900"} +{"level":"info","ts":"2024-08-16T17:15:16Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:15:16Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":255,"total":1} +{"level":"info","ts":"2024-08-16T17:15:16Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:16Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:16Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:16Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:16Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:16Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:16Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:16Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:16Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:16Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:16Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":255} +{"level":"info","ts":"2024-08-16T17:15:16Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":255} +{"level":"info","ts":"2024-08-16T17:15:16Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-zqqx4","namespace":"scale"},"namespace":"scale","name":"backend-zqqx4","reconcileID":"b7f782cc-d38c-4a43-8106-71115533f80a"} +{"level":"info","ts":"2024-08-16T17:15:16Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-zqqx4","namespace":"scale"},"namespace":"scale","name":"backend-zqqx4","reconcileID":"b7f782cc-d38c-4a43-8106-71115533f80a"} +{"level":"info","ts":"2024-08-16T17:15:16Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:15:16Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":256,"total":1} +{"level":"info","ts":"2024-08-16T17:15:16Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:16Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:16Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:16Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:16Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:16Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:16Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:16Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:16Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:16Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:16Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":256} +{"level":"info","ts":"2024-08-16T17:15:16Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":256} +{"level":"info","ts":"2024-08-16T17:15:16Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-zqqx4","namespace":"scale"},"namespace":"scale","name":"backend-zqqx4","reconcileID":"b053ac0e-9197-4238-a40d-4acae5ef206e"} +{"level":"info","ts":"2024-08-16T17:15:16Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-zqqx4","namespace":"scale"},"namespace":"scale","name":"backend-zqqx4","reconcileID":"b053ac0e-9197-4238-a40d-4acae5ef206e"} +{"level":"info","ts":"2024-08-16T17:15:16Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:15:16Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":257,"total":1} +{"level":"info","ts":"2024-08-16T17:15:16Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:16Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:16Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:16Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:16Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:16Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:16Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:16Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:16Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:16Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:16Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":257} +{"level":"info","ts":"2024-08-16T17:15:16Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":257} +{"level":"info","ts":"2024-08-16T17:15:17Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-zqqx4","namespace":"scale"},"namespace":"scale","name":"backend-zqqx4","reconcileID":"28a7d936-cf43-4268-a16a-f974621923f5"} +{"level":"info","ts":"2024-08-16T17:15:17Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-zqqx4","namespace":"scale"},"namespace":"scale","name":"backend-zqqx4","reconcileID":"28a7d936-cf43-4268-a16a-f974621923f5"} +{"level":"info","ts":"2024-08-16T17:15:17Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:15:17Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":258,"total":1} +{"level":"info","ts":"2024-08-16T17:15:17Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:17Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:17Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:17Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:17Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:17Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:17Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:17Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:17Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:17Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:17Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":258} +{"level":"info","ts":"2024-08-16T17:15:17Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":258} +{"level":"info","ts":"2024-08-16T17:15:17Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-zqqx4","namespace":"scale"},"namespace":"scale","name":"backend-zqqx4","reconcileID":"3c4c9305-d9f4-4122-827b-2238a19b42e8"} +{"level":"info","ts":"2024-08-16T17:15:17Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-zqqx4","namespace":"scale"},"namespace":"scale","name":"backend-zqqx4","reconcileID":"3c4c9305-d9f4-4122-827b-2238a19b42e8"} +{"level":"info","ts":"2024-08-16T17:15:17Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:15:17Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":259,"total":1} +{"level":"info","ts":"2024-08-16T17:15:17Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:17Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:17Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:17Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:17Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:17Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:17Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:17Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:17Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:17Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:17Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":259} +{"level":"info","ts":"2024-08-16T17:15:17Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":259} +{"level":"info","ts":"2024-08-16T17:15:17Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-zqqx4","namespace":"scale"},"namespace":"scale","name":"backend-zqqx4","reconcileID":"27da029a-e91d-4e7d-aeaa-5982936d6eb4"} +{"level":"info","ts":"2024-08-16T17:15:17Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-zqqx4","namespace":"scale"},"namespace":"scale","name":"backend-zqqx4","reconcileID":"27da029a-e91d-4e7d-aeaa-5982936d6eb4"} +{"level":"info","ts":"2024-08-16T17:15:17Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:15:17Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":260,"total":1} +{"level":"info","ts":"2024-08-16T17:15:17Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:17Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:17Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:17Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:17Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:17Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:17Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:17Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:17Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:17Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:17Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":260} +{"level":"info","ts":"2024-08-16T17:15:17Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":260} +{"level":"info","ts":"2024-08-16T17:15:17Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-zqqx4","namespace":"scale"},"namespace":"scale","name":"backend-zqqx4","reconcileID":"206b6c9c-f8b5-4814-8446-af9378ec1b63"} +{"level":"info","ts":"2024-08-16T17:15:17Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-zqqx4","namespace":"scale"},"namespace":"scale","name":"backend-zqqx4","reconcileID":"206b6c9c-f8b5-4814-8446-af9378ec1b63"} +{"level":"info","ts":"2024-08-16T17:15:17Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:15:17Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":261,"total":1} +{"level":"info","ts":"2024-08-16T17:15:17Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:17Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:17Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:17Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:17Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:17Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:17Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:17Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:17Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:17Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:17Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":261} +{"level":"info","ts":"2024-08-16T17:15:17Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":261} +{"level":"info","ts":"2024-08-16T17:15:17Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-zqqx4","namespace":"scale"},"namespace":"scale","name":"backend-zqqx4","reconcileID":"62f455c7-26f8-4c8f-8789-1ed15a8730c6"} +{"level":"info","ts":"2024-08-16T17:15:17Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-zqqx4","namespace":"scale"},"namespace":"scale","name":"backend-zqqx4","reconcileID":"62f455c7-26f8-4c8f-8789-1ed15a8730c6"} +{"level":"info","ts":"2024-08-16T17:15:17Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:15:17Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":262,"total":1} +{"level":"info","ts":"2024-08-16T17:15:17Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:17Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:17Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:17Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:17Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:17Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:17Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:17Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:17Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:17Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:17Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":262} +{"level":"info","ts":"2024-08-16T17:15:17Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":262} +{"level":"info","ts":"2024-08-16T17:15:17Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-zqqx4","namespace":"scale"},"namespace":"scale","name":"backend-zqqx4","reconcileID":"fb823c0c-56e1-4343-85fb-80be8c578c98"} +{"level":"info","ts":"2024-08-16T17:15:17Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-zqqx4","namespace":"scale"},"namespace":"scale","name":"backend-zqqx4","reconcileID":"fb823c0c-56e1-4343-85fb-80be8c578c98"} +{"level":"info","ts":"2024-08-16T17:15:17Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:15:17Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":263,"total":1} +{"level":"info","ts":"2024-08-16T17:15:17Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:17Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:17Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:17Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:17Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:17Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:17Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:17Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:17Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:17Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:17Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":263} +{"level":"info","ts":"2024-08-16T17:15:17Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":263} +{"level":"info","ts":"2024-08-16T17:15:17Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-zqqx4","namespace":"scale"},"namespace":"scale","name":"backend-zqqx4","reconcileID":"bde1cac8-3a55-4bad-9c5e-d35eafa55a0f"} +{"level":"info","ts":"2024-08-16T17:15:17Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-zqqx4","namespace":"scale"},"namespace":"scale","name":"backend-zqqx4","reconcileID":"bde1cac8-3a55-4bad-9c5e-d35eafa55a0f"} +{"level":"info","ts":"2024-08-16T17:15:17Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:15:17Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":264,"total":1} +{"level":"info","ts":"2024-08-16T17:15:17Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:17Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:17Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:17Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:17Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:17Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:17Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:17Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:17Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:17Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:17Z","logger":"eventLoop.eventHandler","msg":"NGINX configuration was successfully updated","batchID":264} +{"level":"info","ts":"2024-08-16T17:15:17Z","logger":"eventLoop.eventHandler","msg":"Finished handling the batch","batchID":264} +{"level":"info","ts":"2024-08-16T17:15:17Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-zqqx4","namespace":"scale"},"namespace":"scale","name":"backend-zqqx4","reconcileID":"5a04d674-bf72-480f-92dd-4ee21678c6c3"} +{"level":"info","ts":"2024-08-16T17:15:17Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-zqqx4","namespace":"scale"},"namespace":"scale","name":"backend-zqqx4","reconcileID":"5a04d674-bf72-480f-92dd-4ee21678c6c3"} +{"level":"info","ts":"2024-08-16T17:15:17Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:15:17Z","logger":"eventLoop.eventHandler","msg":"Handling events from the batch","batchID":265,"total":1} +{"level":"info","ts":"2024-08-16T17:15:17Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:17Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:17Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:17Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:17Z","logger":"nginxFileManager","msg":"Deleted file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"info","ts":"2024-08-16T17:15:17Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/stream-conf.d/stream.conf"} +{"level":"info","ts":"2024-08-16T17:15:17Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/http.conf"} +{"level":"info","ts":"2024-08-16T17:15:17Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/matches.json"} +{"level":"info","ts":"2024-08-16T17:15:17Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/conf.d/config-version.conf"} +{"level":"info","ts":"2024-08-16T17:15:17Z","logger":"nginxFileManager","msg":"Wrote file","path":"/etc/nginx/module-includes/load-modules.conf"} +{"level":"error","ts":"2024-08-16T17:15:17Z","logger":"eventLoop.eventHandler","msg":"couldn't update upstream via the API, reloading configuration instead","batchID":265,"upstreamName":"scale_backend_80","error":"failed to update servers of scale_backend_80 upstream: failed to add 10.120.8.66:8080 server to scale_backend_80 upstream: expected 201 response, got 500. error.status=500; error.text=upstream memory exhausted; error.code=UpstreamOutOfMemory; request_id=d0ba07d426776e347e62bf38813ccd91; href=https://nginx.org/en/docs/http/ngx_http_api_module.html","stacktrace":"github.com/nginxinc/nginx-gateway-fabric/internal/mode/static.(*eventHandlerImpl).updateUpstreamServers\n\t/home/runner/work/nginx-gateway-fabric/nginx-gateway-fabric/internal/mode/static/handler.go:374\ngithub.com/nginxinc/nginx-gateway-fabric/internal/mode/static.(*eventHandlerImpl).HandleEventBatch\n\t/home/runner/work/nginx-gateway-fabric/nginx-gateway-fabric/internal/mode/static/handler.go:200\ngithub.com/nginxinc/nginx-gateway-fabric/internal/framework/events.(*EventLoop).Start.func1.1\n\t/home/runner/work/nginx-gateway-fabric/nginx-gateway-fabric/internal/framework/events/loop.go:74"} +{"level":"info","ts":"2024-08-16T17:15:18Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-zqqx4","namespace":"scale"},"namespace":"scale","name":"backend-zqqx4","reconcileID":"917edfba-35ed-4e41-8183-1a6cbb01cd82"} +{"level":"info","ts":"2024-08-16T17:15:18Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-zqqx4","namespace":"scale"},"namespace":"scale","name":"backend-zqqx4","reconcileID":"917edfba-35ed-4e41-8183-1a6cbb01cd82"} +{"level":"info","ts":"2024-08-16T17:15:18Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":1} +{"level":"info","ts":"2024-08-16T17:15:18Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-zqqx4","namespace":"scale"},"namespace":"scale","name":"backend-zqqx4","reconcileID":"d68fbb3d-ed53-44b3-baf8-0047dcfa87bc"} +{"level":"info","ts":"2024-08-16T17:15:18Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-zqqx4","namespace":"scale"},"namespace":"scale","name":"backend-zqqx4","reconcileID":"d68fbb3d-ed53-44b3-baf8-0047dcfa87bc"} +{"level":"info","ts":"2024-08-16T17:15:18Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":2} +{"level":"info","ts":"2024-08-16T17:15:18Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-zqqx4","namespace":"scale"},"namespace":"scale","name":"backend-zqqx4","reconcileID":"b083991c-f047-431a-b546-2622da762a6a"} +{"level":"info","ts":"2024-08-16T17:15:18Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-zqqx4","namespace":"scale"},"namespace":"scale","name":"backend-zqqx4","reconcileID":"b083991c-f047-431a-b546-2622da762a6a"} +{"level":"info","ts":"2024-08-16T17:15:18Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":3} +{"level":"info","ts":"2024-08-16T17:15:18Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-zqqx4","namespace":"scale"},"namespace":"scale","name":"backend-zqqx4","reconcileID":"91d8df5e-fb8f-45fe-9a3b-e6c3d630753d"} +{"level":"info","ts":"2024-08-16T17:15:18Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-zqqx4","namespace":"scale"},"namespace":"scale","name":"backend-zqqx4","reconcileID":"91d8df5e-fb8f-45fe-9a3b-e6c3d630753d"} +{"level":"info","ts":"2024-08-16T17:15:18Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":4} +{"level":"info","ts":"2024-08-16T17:15:18Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-zqqx4","namespace":"scale"},"namespace":"scale","name":"backend-zqqx4","reconcileID":"fca6de03-5c5d-4a37-8ea1-6c9c2b839d56"} +{"level":"info","ts":"2024-08-16T17:15:18Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-zqqx4","namespace":"scale"},"namespace":"scale","name":"backend-zqqx4","reconcileID":"fca6de03-5c5d-4a37-8ea1-6c9c2b839d56"} +{"level":"info","ts":"2024-08-16T17:15:18Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":5} +{"level":"info","ts":"2024-08-16T17:15:18Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-zqqx4","namespace":"scale"},"namespace":"scale","name":"backend-zqqx4","reconcileID":"13ee37be-c85f-429c-89c0-f6066bdb27d1"} +{"level":"info","ts":"2024-08-16T17:15:18Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-zqqx4","namespace":"scale"},"namespace":"scale","name":"backend-zqqx4","reconcileID":"13ee37be-c85f-429c-89c0-f6066bdb27d1"} +{"level":"info","ts":"2024-08-16T17:15:18Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":6} +{"level":"info","ts":"2024-08-16T17:15:18Z","msg":"Reconciling the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-zqqx4","namespace":"scale"},"namespace":"scale","name":"backend-zqqx4","reconcileID":"a47b520e-2290-41a6-b20c-220b1d036651"} +{"level":"info","ts":"2024-08-16T17:15:18Z","msg":"Upserted the resource","controller":"endpointslice","controllerGroup":"discovery.k8s.io","controllerKind":"EndpointSlice","EndpointSlice":{"name":"backend-zqqx4","namespace":"scale"},"namespace":"scale","name":"backend-zqqx4","reconcileID":"a47b520e-2290-41a6-b20c-220b1d036651"} +{"level":"info","ts":"2024-08-16T17:15:18Z","logger":"eventLoop","msg":"added an event to the next batch","type":"*events.UpsertEvent","total":7} diff --git a/tests/results/scale/1.4.0/TestScale_UpstreamServers/nginx-plus.log b/tests/results/scale/1.4.0/TestScale_UpstreamServers/nginx-plus.log new file mode 100644 index 000000000..354d5df05 --- /dev/null +++ b/tests/results/scale/1.4.0/TestScale_UpstreamServers/nginx-plus.log @@ -0,0 +1,1049 @@ +2024/08/16 17:14:11 [notice] 25#25: using the "epoll" event method +2024/08/16 17:14:11 [notice] 25#25: nginx/1.25.5 (nginx-plus-r32-p1) +2024/08/16 17:14:11 [notice] 25#25: built by gcc 13.2.1 20240309 (Alpine 13.2.1_git20240309) +2024/08/16 17:14:11 [notice] 25#25: OS: Linux 6.1.85+ +2024/08/16 17:14:11 [notice] 25#25: getrlimit(RLIMIT_NOFILE): 1048576:1048576 +2024/08/16 17:14:11 [notice] 25#25: start worker processes +2024/08/16 17:14:11 [notice] 25#25: start worker process 32 +2024/08/16 17:14:11 [notice] 25#25: start worker process 33 +2024/08/16 17:14:11 [notice] 25#25: start worker process 34 +2024/08/16 17:14:11 [notice] 25#25: start worker process 35 +2024/08/16 17:14:11 [notice] 25#25: start worker process 36 +2024/08/16 17:14:11 [notice] 25#25: start worker process 37 +2024/08/16 17:14:11 [notice] 25#25: start worker process 38 +2024/08/16 17:14:11 [notice] 25#25: start worker process 39 +2024/08/16 17:14:11 [notice] 25#25: start worker process 40 +2024/08/16 17:14:11 [notice] 25#25: start worker process 41 +2024/08/16 17:14:11 [notice] 25#25: start worker process 42 +2024/08/16 17:14:11 [notice] 25#25: start worker process 43 +2024/08/16 17:14:11 [notice] 25#25: start worker process 44 +2024/08/16 17:14:11 [notice] 25#25: start worker process 45 +2024/08/16 17:14:11 [notice] 25#25: start worker process 46 +2024/08/16 17:14:11 [notice] 25#25: start worker process 47 +2024/08/16 17:14:13 [notice] 25#25: signal 1 (SIGHUP) received from 48, reconfiguring +2024/08/16 17:14:13 [notice] 25#25: reconfiguring +2024/08/16 17:14:13 [notice] 25#25: using the "epoll" event method +2024/08/16 17:14:13 [notice] 25#25: start worker processes +2024/08/16 17:14:13 [notice] 25#25: start worker process 74 +2024/08/16 17:14:13 [notice] 25#25: start worker process 75 +2024/08/16 17:14:13 [notice] 25#25: start worker process 76 +2024/08/16 17:14:13 [notice] 25#25: start worker process 77 +2024/08/16 17:14:13 [notice] 25#25: start worker process 78 +2024/08/16 17:14:13 [notice] 25#25: start worker process 79 +2024/08/16 17:14:13 [notice] 25#25: start worker process 80 +2024/08/16 17:14:13 [notice] 25#25: start worker process 81 +2024/08/16 17:14:13 [notice] 25#25: start worker process 82 +2024/08/16 17:14:13 [notice] 25#25: start worker process 83 +2024/08/16 17:14:13 [notice] 25#25: start worker process 84 +2024/08/16 17:14:13 [notice] 25#25: start worker process 85 +2024/08/16 17:14:13 [notice] 25#25: start worker process 86 +2024/08/16 17:14:13 [notice] 25#25: start worker process 87 +2024/08/16 17:14:13 [notice] 25#25: start worker process 88 +2024/08/16 17:14:13 [notice] 25#25: start worker process 89 +2024/08/16 17:14:13 [notice] 33#33: gracefully shutting down +2024/08/16 17:14:13 [notice] 32#32: gracefully shutting down +2024/08/16 17:14:13 [notice] 36#36: gracefully shutting down +2024/08/16 17:14:13 [notice] 38#38: gracefully shutting down +2024/08/16 17:14:13 [notice] 37#37: gracefully shutting down +2024/08/16 17:14:13 [notice] 35#35: gracefully shutting down +2024/08/16 17:14:13 [notice] 34#34: gracefully shutting down +2024/08/16 17:14:13 [notice] 38#38: exiting +2024/08/16 17:14:13 [notice] 32#32: exiting +2024/08/16 17:14:13 [notice] 33#33: exiting +2024/08/16 17:14:13 [notice] 36#36: exiting +2024/08/16 17:14:13 [notice] 40#40: gracefully shutting down +2024/08/16 17:14:13 [notice] 39#39: gracefully shutting down +2024/08/16 17:14:13 [notice] 35#35: exiting +2024/08/16 17:14:13 [notice] 37#37: exiting +2024/08/16 17:14:13 [notice] 41#41: gracefully shutting down +2024/08/16 17:14:13 [notice] 34#34: exiting +2024/08/16 17:14:13 [notice] 42#42: gracefully shutting down +2024/08/16 17:14:13 [notice] 40#40: exiting +2024/08/16 17:14:13 [notice] 25#25: signal 1 (SIGHUP) received from 48, reconfiguring +2024/08/16 17:14:13 [notice] 41#41: exiting +2024/08/16 17:14:13 [notice] 39#39: exiting +2024/08/16 17:14:13 [notice] 25#25: reconfiguring +2024/08/16 17:14:13 [notice] 42#42: exiting +2024/08/16 17:14:13 [notice] 43#43: gracefully shutting down +2024/08/16 17:14:13 [notice] 44#44: gracefully shutting down +2024/08/16 17:14:13 [notice] 45#45: gracefully shutting down +2024/08/16 17:14:13 [notice] 43#43: exiting +2024/08/16 17:14:13 [notice] 45#45: exiting +2024/08/16 17:14:13 [notice] 44#44: exiting +2024/08/16 17:14:13 [notice] 32#32: exit +2024/08/16 17:14:13 [notice] 33#33: exit +2024/08/16 17:14:13 [notice] 40#40: exit +2024/08/16 17:14:13 [notice] 36#36: exit +2024/08/16 17:14:13 [notice] 46#46: gracefully shutting down +2024/08/16 17:14:13 [notice] 46#46: exiting +2024/08/16 17:14:13 [notice] 45#45: exit +2024/08/16 17:14:13 [notice] 43#43: exit +2024/08/16 17:14:13 [notice] 39#39: exit +2024/08/16 17:14:13 [notice] 38#38: exit +2024/08/16 17:14:13 [notice] 35#35: exit +2024/08/16 17:14:13 [notice] 37#37: exit +2024/08/16 17:14:13 [notice] 42#42: exit +2024/08/16 17:14:13 [notice] 34#34: exit +2024/08/16 17:14:13 [notice] 41#41: exit +2024/08/16 17:14:13 [notice] 44#44: exit +2024/08/16 17:14:13 [notice] 47#47: gracefully shutting down +2024/08/16 17:14:13 [notice] 47#47: exiting +2024/08/16 17:14:13 [notice] 46#46: exit +2024/08/16 17:14:13 [notice] 47#47: exit +2024/08/16 17:14:13 [notice] 25#25: using the "epoll" event method +2024/08/16 17:14:13 [notice] 25#25: start worker processes +2024/08/16 17:14:13 [notice] 25#25: start worker process 90 +2024/08/16 17:14:13 [notice] 25#25: start worker process 91 +2024/08/16 17:14:13 [notice] 25#25: start worker process 92 +2024/08/16 17:14:13 [notice] 25#25: start worker process 93 +2024/08/16 17:14:13 [notice] 25#25: start worker process 94 +2024/08/16 17:14:13 [notice] 25#25: start worker process 95 +2024/08/16 17:14:13 [notice] 25#25: start worker process 96 +2024/08/16 17:14:13 [notice] 25#25: start worker process 97 +2024/08/16 17:14:13 [notice] 25#25: start worker process 98 +2024/08/16 17:14:13 [notice] 25#25: start worker process 99 +2024/08/16 17:14:13 [notice] 25#25: start worker process 100 +2024/08/16 17:14:13 [notice] 25#25: start worker process 101 +2024/08/16 17:14:13 [notice] 25#25: start worker process 102 +2024/08/16 17:14:13 [notice] 25#25: start worker process 103 +2024/08/16 17:14:13 [notice] 25#25: start worker process 104 +2024/08/16 17:14:13 [notice] 25#25: start worker process 105 +2024/08/16 17:14:13 [notice] 75#75: gracefully shutting down +2024/08/16 17:14:13 [notice] 74#74: gracefully shutting down +2024/08/16 17:14:13 [notice] 77#77: gracefully shutting down +2024/08/16 17:14:13 [notice] 78#78: gracefully shutting down +2024/08/16 17:14:13 [notice] 76#76: gracefully shutting down +2024/08/16 17:14:13 [notice] 80#80: gracefully shutting down +2024/08/16 17:14:13 [notice] 81#81: gracefully shutting down +2024/08/16 17:14:13 [notice] 77#77: exiting +2024/08/16 17:14:13 [notice] 79#79: gracefully shutting down +2024/08/16 17:14:13 [notice] 78#78: exiting +2024/08/16 17:14:13 [notice] 82#82: gracefully shutting down +2024/08/16 17:14:13 [notice] 75#75: exiting +2024/08/16 17:14:13 [notice] 83#83: gracefully shutting down +2024/08/16 17:14:13 [notice] 76#76: exiting +2024/08/16 17:14:13 [notice] 87#87: gracefully shutting down +2024/08/16 17:14:13 [notice] 81#81: exiting +2024/08/16 17:14:13 [notice] 84#84: gracefully shutting down +2024/08/16 17:14:13 [notice] 85#85: gracefully shutting down +2024/08/16 17:14:13 [notice] 80#80: exiting +2024/08/16 17:14:13 [notice] 79#79: exiting +2024/08/16 17:14:13 [notice] 82#82: exiting +2024/08/16 17:14:13 [notice] 83#83: exiting +2024/08/16 17:14:13 [notice] 86#86: gracefully shutting down +2024/08/16 17:14:13 [notice] 74#74: exiting +2024/08/16 17:14:13 [notice] 85#85: exiting +2024/08/16 17:14:13 [notice] 84#84: exiting +2024/08/16 17:14:13 [notice] 87#87: exiting +2024/08/16 17:14:13 [notice] 88#88: gracefully shutting down +2024/08/16 17:14:13 [notice] 86#86: exiting +2024/08/16 17:14:13 [notice] 88#88: exiting +2024/08/16 17:14:13 [notice] 81#81: exit +2024/08/16 17:14:13 [notice] 82#82: exit +2024/08/16 17:14:13 [notice] 80#80: exit +2024/08/16 17:14:13 [notice] 78#78: exit +2024/08/16 17:14:13 [notice] 77#77: exit +2024/08/16 17:14:13 [notice] 85#85: exit +2024/08/16 17:14:13 [notice] 76#76: exit +2024/08/16 17:14:13 [notice] 84#84: exit +2024/08/16 17:14:13 [notice] 83#83: exit +2024/08/16 17:14:13 [notice] 87#87: exit +2024/08/16 17:14:13 [notice] 88#88: exit +2024/08/16 17:14:13 [notice] 79#79: exit +2024/08/16 17:14:13 [notice] 74#74: exit +2024/08/16 17:14:13 [notice] 86#86: exit +2024/08/16 17:14:13 [notice] 75#75: exit +2024/08/16 17:14:13 [notice] 25#25: signal 17 (SIGCHLD) received from 35 +2024/08/16 17:14:13 [notice] 89#89: gracefully shutting down +2024/08/16 17:14:13 [notice] 89#89: exiting +2024/08/16 17:14:13 [notice] 25#25: worker process 32 exited with code 0 +2024/08/16 17:14:13 [notice] 25#25: worker process 33 exited with code 0 +2024/08/16 17:14:13 [notice] 25#25: worker process 34 exited with code 0 +2024/08/16 17:14:13 [notice] 25#25: worker process 35 exited with code 0 +2024/08/16 17:14:13 [notice] 25#25: worker process 36 exited with code 0 +2024/08/16 17:14:13 [notice] 25#25: worker process 37 exited with code 0 +2024/08/16 17:14:13 [notice] 25#25: worker process 38 exited with code 0 +2024/08/16 17:14:13 [notice] 25#25: worker process 39 exited with code 0 +2024/08/16 17:14:13 [notice] 25#25: worker process 40 exited with code 0 +2024/08/16 17:14:13 [notice] 25#25: worker process 41 exited with code 0 +2024/08/16 17:14:13 [notice] 25#25: worker process 42 exited with code 0 +2024/08/16 17:14:13 [notice] 25#25: worker process 43 exited with code 0 +2024/08/16 17:14:13 [notice] 25#25: worker process 44 exited with code 0 +2024/08/16 17:14:13 [notice] 25#25: worker process 45 exited with code 0 +2024/08/16 17:14:13 [notice] 25#25: worker process 46 exited with code 0 +2024/08/16 17:14:13 [notice] 25#25: worker process 47 exited with code 0 +2024/08/16 17:14:13 [notice] 89#89: exit +2024/08/16 17:14:13 [notice] 25#25: signal 29 (SIGIO) received +2024/08/16 17:14:13 [notice] 25#25: signal 17 (SIGCHLD) received from 79 +2024/08/16 17:14:13 [notice] 25#25: worker process 79 exited with code 0 +2024/08/16 17:14:13 [notice] 25#25: signal 29 (SIGIO) received +2024/08/16 17:14:13 [notice] 25#25: signal 17 (SIGCHLD) received from 81 +2024/08/16 17:14:13 [notice] 25#25: worker process 81 exited with code 0 +2024/08/16 17:14:13 [notice] 25#25: signal 29 (SIGIO) received +2024/08/16 17:14:13 [notice] 25#25: signal 17 (SIGCHLD) received from 82 +2024/08/16 17:14:13 [notice] 25#25: worker process 82 exited with code 0 +2024/08/16 17:14:13 [notice] 25#25: signal 29 (SIGIO) received +2024/08/16 17:14:13 [notice] 25#25: signal 17 (SIGCHLD) received from 76 +2024/08/16 17:14:13 [notice] 25#25: worker process 76 exited with code 0 +2024/08/16 17:14:13 [notice] 25#25: worker process 84 exited with code 0 +2024/08/16 17:14:13 [notice] 25#25: signal 29 (SIGIO) received +2024/08/16 17:14:13 [notice] 25#25: signal 17 (SIGCHLD) received from 86 +2024/08/16 17:14:13 [notice] 25#25: worker process 86 exited with code 0 +2024/08/16 17:14:13 [notice] 25#25: signal 29 (SIGIO) received +2024/08/16 17:14:13 [notice] 25#25: signal 17 (SIGCHLD) received from 88 +2024/08/16 17:14:13 [notice] 25#25: worker process 80 exited with code 0 +2024/08/16 17:14:13 [notice] 25#25: worker process 83 exited with code 0 +2024/08/16 17:14:13 [notice] 25#25: worker process 87 exited with code 0 +2024/08/16 17:14:13 [notice] 25#25: worker process 88 exited with code 0 +2024/08/16 17:14:13 [notice] 25#25: worker process 75 exited with code 0 +2024/08/16 17:14:13 [notice] 25#25: worker process 89 exited with code 0 +2024/08/16 17:14:13 [notice] 25#25: signal 29 (SIGIO) received +2024/08/16 17:14:13 [notice] 25#25: signal 17 (SIGCHLD) received from 87 +2024/08/16 17:14:13 [notice] 25#25: worker process 74 exited with code 0 +2024/08/16 17:14:13 [notice] 25#25: worker process 85 exited with code 0 +2024/08/16 17:14:13 [notice] 25#25: signal 29 (SIGIO) received +2024/08/16 17:14:13 [notice] 25#25: signal 17 (SIGCHLD) received from 77 +2024/08/16 17:14:13 [notice] 25#25: worker process 77 exited with code 0 +2024/08/16 17:14:13 [notice] 25#25: signal 29 (SIGIO) received +2024/08/16 17:14:13 [notice] 25#25: signal 17 (SIGCHLD) received from 78 +2024/08/16 17:14:13 [notice] 25#25: worker process 78 exited with code 0 +2024/08/16 17:14:13 [notice] 25#25: signal 29 (SIGIO) received +2024/08/16 17:14:47 [notice] 25#25: signal 1 (SIGHUP) received from 48, reconfiguring +2024/08/16 17:14:47 [notice] 25#25: reconfiguring +2024/08/16 17:14:47 [notice] 25#25: using the "epoll" event method +2024/08/16 17:14:47 [notice] 25#25: start worker processes +2024/08/16 17:14:47 [notice] 25#25: start worker process 106 +2024/08/16 17:14:47 [notice] 25#25: start worker process 107 +2024/08/16 17:14:47 [notice] 25#25: start worker process 108 +2024/08/16 17:14:47 [notice] 25#25: start worker process 109 +2024/08/16 17:14:47 [notice] 25#25: start worker process 110 +2024/08/16 17:14:47 [notice] 25#25: start worker process 111 +2024/08/16 17:14:47 [notice] 25#25: start worker process 112 +2024/08/16 17:14:47 [notice] 25#25: start worker process 113 +2024/08/16 17:14:47 [notice] 25#25: start worker process 114 +2024/08/16 17:14:47 [notice] 25#25: start worker process 115 +2024/08/16 17:14:47 [notice] 25#25: start worker process 116 +2024/08/16 17:14:47 [notice] 25#25: start worker process 117 +2024/08/16 17:14:47 [notice] 25#25: start worker process 118 +2024/08/16 17:14:47 [notice] 25#25: start worker process 119 +2024/08/16 17:14:47 [notice] 25#25: start worker process 120 +2024/08/16 17:14:47 [notice] 25#25: start worker process 121 +2024/08/16 17:14:47 [notice] 92#92: gracefully shutting down +2024/08/16 17:14:47 [notice] 91#91: gracefully shutting down +2024/08/16 17:14:47 [notice] 90#90: gracefully shutting down +2024/08/16 17:14:47 [notice] 93#93: gracefully shutting down +2024/08/16 17:14:47 [notice] 92#92: exiting +2024/08/16 17:14:47 [notice] 91#91: exiting +2024/08/16 17:14:47 [notice] 95#95: gracefully shutting down +2024/08/16 17:14:47 [notice] 96#96: gracefully shutting down +2024/08/16 17:14:47 [notice] 94#94: gracefully shutting down +2024/08/16 17:14:47 [notice] 93#93: exiting +2024/08/16 17:14:47 [notice] 97#97: gracefully shutting down +2024/08/16 17:14:47 [notice] 98#98: gracefully shutting down +2024/08/16 17:14:47 [notice] 99#99: gracefully shutting down +2024/08/16 17:14:47 [notice] 90#90: exiting +2024/08/16 17:14:47 [notice] 95#95: exiting +2024/08/16 17:14:47 [notice] 100#100: gracefully shutting down +2024/08/16 17:14:47 [notice] 96#96: exiting +2024/08/16 17:14:47 [notice] 94#94: exiting +2024/08/16 17:14:47 [notice] 97#97: exiting +2024/08/16 17:14:47 [notice] 104#104: gracefully shutting down +2024/08/16 17:14:47 [notice] 100#100: exiting +2024/08/16 17:14:47 [notice] 99#99: exiting +2024/08/16 17:14:47 [notice] 98#98: exiting +2024/08/16 17:14:47 [notice] 101#101: gracefully shutting down +2024/08/16 17:14:47 [notice] 103#103: gracefully shutting down +2024/08/16 17:14:47 [notice] 104#104: exiting +2024/08/16 17:14:47 [notice] 103#103: exiting +2024/08/16 17:14:47 [notice] 101#101: exiting +2024/08/16 17:14:47 [notice] 105#105: gracefully shutting down +2024/08/16 17:14:47 [notice] 105#105: exiting +2024/08/16 17:14:47 [notice] 102#102: gracefully shutting down +2024/08/16 17:14:47 [notice] 102#102: exiting +2024/08/16 17:14:47 [notice] 92#92: exit +2024/08/16 17:14:47 [notice] 91#91: exit +2024/08/16 17:14:47 [notice] 95#95: exit +2024/08/16 17:14:47 [notice] 93#93: exit +2024/08/16 17:14:47 [notice] 97#97: exit +2024/08/16 17:14:47 [notice] 94#94: exit +2024/08/16 17:14:47 [notice] 100#100: exit +2024/08/16 17:14:47 [notice] 101#101: exit +2024/08/16 17:14:47 [notice] 104#104: exit +2024/08/16 17:14:47 [notice] 90#90: exit +2024/08/16 17:14:47 [notice] 103#103: exit +2024/08/16 17:14:47 [notice] 96#96: exit +2024/08/16 17:14:47 [notice] 99#99: exit +2024/08/16 17:14:47 [notice] 98#98: exit +2024/08/16 17:14:47 [notice] 105#105: exit +2024/08/16 17:14:47 [notice] 102#102: exit +2024/08/16 17:14:47 [notice] 25#25: signal 17 (SIGCHLD) received from 102 +2024/08/16 17:14:47 [notice] 25#25: worker process 102 exited with code 0 +2024/08/16 17:14:47 [notice] 25#25: signal 29 (SIGIO) received +2024/08/16 17:14:47 [notice] 25#25: signal 1 (SIGHUP) received from 48, reconfiguring +2024/08/16 17:14:47 [notice] 25#25: reconfiguring +2024/08/16 17:14:47 [notice] 25#25: using the "epoll" event method +2024/08/16 17:14:47 [notice] 25#25: start worker processes +2024/08/16 17:14:47 [notice] 25#25: start worker process 122 +2024/08/16 17:14:47 [notice] 25#25: start worker process 123 +2024/08/16 17:14:47 [notice] 25#25: start worker process 124 +2024/08/16 17:14:47 [notice] 25#25: start worker process 125 +2024/08/16 17:14:47 [notice] 25#25: start worker process 126 +2024/08/16 17:14:47 [notice] 25#25: start worker process 127 +2024/08/16 17:14:47 [notice] 25#25: start worker process 128 +2024/08/16 17:14:47 [notice] 25#25: start worker process 129 +2024/08/16 17:14:47 [notice] 25#25: start worker process 130 +2024/08/16 17:14:47 [notice] 25#25: start worker process 131 +2024/08/16 17:14:47 [notice] 25#25: start worker process 132 +2024/08/16 17:14:47 [notice] 25#25: start worker process 133 +2024/08/16 17:14:47 [notice] 25#25: start worker process 134 +2024/08/16 17:14:47 [notice] 25#25: start worker process 135 +2024/08/16 17:14:47 [notice] 25#25: start worker process 136 +2024/08/16 17:14:47 [notice] 25#25: start worker process 137 +2024/08/16 17:14:47 [notice] 106#106: gracefully shutting down +2024/08/16 17:14:47 [notice] 107#107: gracefully shutting down +2024/08/16 17:14:47 [notice] 109#109: gracefully shutting down +2024/08/16 17:14:47 [notice] 110#110: gracefully shutting down +2024/08/16 17:14:47 [notice] 107#107: exiting +2024/08/16 17:14:47 [notice] 111#111: gracefully shutting down +2024/08/16 17:14:47 [notice] 106#106: exiting +2024/08/16 17:14:47 [notice] 112#112: gracefully shutting down +2024/08/16 17:14:47 [notice] 108#108: gracefully shutting down +2024/08/16 17:14:47 [notice] 113#113: gracefully shutting down +2024/08/16 17:14:47 [notice] 109#109: exiting +2024/08/16 17:14:47 [notice] 110#110: exiting +2024/08/16 17:14:47 [notice] 112#112: exiting +2024/08/16 17:14:47 [notice] 115#115: gracefully shutting down +2024/08/16 17:14:47 [notice] 111#111: exiting +2024/08/16 17:14:47 [notice] 108#108: exiting +2024/08/16 17:14:47 [notice] 114#114: gracefully shutting down +2024/08/16 17:14:47 [notice] 113#113: exiting +2024/08/16 17:14:47 [notice] 118#118: gracefully shutting down +2024/08/16 17:14:47 [notice] 116#116: gracefully shutting down +2024/08/16 17:14:47 [notice] 119#119: gracefully shutting down +2024/08/16 17:14:47 [notice] 25#25: signal 17 (SIGCHLD) received from 92 +2024/08/16 17:14:47 [notice] 117#117: gracefully shutting down +2024/08/16 17:14:47 [notice] 115#115: exiting +2024/08/16 17:14:47 [notice] 114#114: exiting +2024/08/16 17:14:47 [notice] 118#118: exiting +2024/08/16 17:14:47 [notice] 116#116: exiting +2024/08/16 17:14:47 [notice] 119#119: exiting +2024/08/16 17:14:47 [notice] 117#117: exiting +2024/08/16 17:14:47 [notice] 25#25: worker process 90 exited with code 0 +2024/08/16 17:14:47 [notice] 25#25: worker process 91 exited with code 0 +2024/08/16 17:14:47 [notice] 25#25: worker process 92 exited with code 0 +2024/08/16 17:14:47 [notice] 25#25: worker process 93 exited with code 0 +2024/08/16 17:14:47 [notice] 25#25: worker process 94 exited with code 0 +2024/08/16 17:14:47 [notice] 25#25: worker process 95 exited with code 0 +2024/08/16 17:14:47 [notice] 25#25: worker process 96 exited with code 0 +2024/08/16 17:14:47 [notice] 25#25: worker process 97 exited with code 0 +2024/08/16 17:14:47 [notice] 25#25: worker process 98 exited with code 0 +2024/08/16 17:14:47 [notice] 25#25: worker process 99 exited with code 0 +2024/08/16 17:14:47 [notice] 25#25: worker process 100 exited with code 0 +2024/08/16 17:14:47 [notice] 25#25: worker process 101 exited with code 0 +2024/08/16 17:14:47 [notice] 25#25: worker process 103 exited with code 0 +2024/08/16 17:14:47 [notice] 25#25: worker process 104 exited with code 0 +2024/08/16 17:14:47 [notice] 25#25: worker process 105 exited with code 0 +2024/08/16 17:14:47 [notice] 121#121: gracefully shutting down +2024/08/16 17:14:47 [notice] 121#121: exiting +2024/08/16 17:14:47 [notice] 107#107: exit +2024/08/16 17:14:47 [notice] 106#106: exit +2024/08/16 17:14:47 [notice] 118#118: exit +2024/08/16 17:14:47 [notice] 114#114: exit +2024/08/16 17:14:47 [notice] 112#112: exit +2024/08/16 17:14:47 [notice] 109#109: exit +2024/08/16 17:14:47 [notice] 108#108: exit +2024/08/16 17:14:47 [notice] 120#120: gracefully shutting down +2024/08/16 17:14:47 [notice] 120#120: exiting +2024/08/16 17:14:47 [notice] 113#113: exit +2024/08/16 17:14:47 [notice] 110#110: exit +2024/08/16 17:14:47 [notice] 117#117: exit +2024/08/16 17:14:47 [notice] 111#111: exit +2024/08/16 17:14:47 [notice] 116#116: exit +2024/08/16 17:14:47 [notice] 119#119: exit +2024/08/16 17:14:47 [notice] 115#115: exit +2024/08/16 17:14:47 [notice] 25#25: signal 29 (SIGIO) received +2024/08/16 17:14:47 [notice] 120#120: exit +2024/08/16 17:14:47 [notice] 121#121: exit +2024/08/16 17:14:47 [notice] 25#25: signal 17 (SIGCHLD) received from 113 +2024/08/16 17:14:47 [notice] 25#25: worker process 113 exited with code 0 +2024/08/16 17:14:47 [notice] 25#25: signal 29 (SIGIO) received +2024/08/16 17:14:47 [notice] 25#25: signal 1 (SIGHUP) received from 48, reconfiguring +2024/08/16 17:14:47 [notice] 25#25: reconfiguring +2024/08/16 17:14:47 [notice] 25#25: using the "epoll" event method +2024/08/16 17:14:47 [notice] 25#25: start worker processes +2024/08/16 17:14:47 [notice] 25#25: start worker process 138 +2024/08/16 17:14:47 [notice] 25#25: start worker process 139 +2024/08/16 17:14:47 [notice] 25#25: start worker process 140 +2024/08/16 17:14:47 [notice] 25#25: start worker process 141 +2024/08/16 17:14:47 [notice] 25#25: start worker process 142 +2024/08/16 17:14:47 [notice] 25#25: start worker process 143 +2024/08/16 17:14:47 [notice] 25#25: start worker process 144 +2024/08/16 17:14:47 [notice] 25#25: start worker process 145 +2024/08/16 17:14:47 [notice] 25#25: start worker process 146 +2024/08/16 17:14:47 [notice] 25#25: start worker process 147 +2024/08/16 17:14:47 [notice] 25#25: start worker process 148 +2024/08/16 17:14:47 [notice] 25#25: start worker process 149 +2024/08/16 17:14:47 [notice] 25#25: start worker process 150 +2024/08/16 17:14:47 [notice] 25#25: start worker process 151 +2024/08/16 17:14:47 [notice] 25#25: start worker process 152 +2024/08/16 17:14:47 [notice] 25#25: start worker process 153 +2024/08/16 17:14:47 [notice] 122#122: gracefully shutting down +2024/08/16 17:14:47 [notice] 123#123: gracefully shutting down +2024/08/16 17:14:47 [notice] 123#123: exiting +2024/08/16 17:14:47 [notice] 124#124: gracefully shutting down +2024/08/16 17:14:47 [notice] 127#127: gracefully shutting down +2024/08/16 17:14:47 [notice] 125#125: gracefully shutting down +2024/08/16 17:14:47 [notice] 130#130: gracefully shutting down +2024/08/16 17:14:47 [notice] 122#122: exiting +2024/08/16 17:14:47 [notice] 132#132: gracefully shutting down +2024/08/16 17:14:47 [notice] 128#128: gracefully shutting down +2024/08/16 17:14:47 [notice] 131#131: gracefully shutting down +2024/08/16 17:14:47 [notice] 129#129: gracefully shutting down +2024/08/16 17:14:47 [notice] 124#124: exiting +2024/08/16 17:14:47 [notice] 135#135: gracefully shutting down +2024/08/16 17:14:47 [notice] 125#125: exiting +2024/08/16 17:14:47 [notice] 127#127: exiting +2024/08/16 17:14:47 [notice] 130#130: exiting +2024/08/16 17:14:47 [notice] 25#25: signal 17 (SIGCHLD) received from 119 +2024/08/16 17:14:47 [notice] 136#136: gracefully shutting down +2024/08/16 17:14:47 [notice] 134#134: gracefully shutting down +2024/08/16 17:14:47 [notice] 128#128: exiting +2024/08/16 17:14:47 [notice] 132#132: exiting +2024/08/16 17:14:47 [notice] 131#131: exiting +2024/08/16 17:14:47 [notice] 25#25: worker process 106 exited with code 0 +2024/08/16 17:14:47 [notice] 129#129: exiting +2024/08/16 17:14:47 [notice] 25#25: worker process 107 exited with code 0 +2024/08/16 17:14:47 [notice] 135#135: exiting +2024/08/16 17:14:47 [notice] 25#25: worker process 108 exited with code 0 +2024/08/16 17:14:47 [notice] 136#136: exiting +2024/08/16 17:14:47 [notice] 134#134: exiting +2024/08/16 17:14:47 [notice] 25#25: worker process 109 exited with code 0 +2024/08/16 17:14:47 [notice] 25#25: worker process 110 exited with code 0 +2024/08/16 17:14:47 [notice] 25#25: worker process 111 exited with code 0 +2024/08/16 17:14:47 [notice] 25#25: worker process 112 exited with code 0 +2024/08/16 17:14:47 [notice] 25#25: worker process 114 exited with code 0 +2024/08/16 17:14:47 [notice] 25#25: worker process 115 exited with code 0 +2024/08/16 17:14:47 [notice] 25#25: worker process 116 exited with code 0 +2024/08/16 17:14:47 [notice] 25#25: worker process 117 exited with code 0 +2024/08/16 17:14:47 [notice] 25#25: worker process 118 exited with code 0 +2024/08/16 17:14:47 [notice] 25#25: worker process 119 exited with code 0 +2024/08/16 17:14:47 [notice] 25#25: worker process 120 exited with code 0 +2024/08/16 17:14:47 [notice] 25#25: worker process 121 exited with code 0 +2024/08/16 17:14:47 [notice] 126#126: gracefully shutting down +2024/08/16 17:14:47 [notice] 126#126: exiting +2024/08/16 17:14:47 [notice] 137#137: gracefully shutting down +2024/08/16 17:14:47 [notice] 137#137: exiting +2024/08/16 17:14:47 [notice] 130#130: exit +2024/08/16 17:14:47 [notice] 125#125: exit +2024/08/16 17:14:47 [notice] 122#122: exit +2024/08/16 17:14:47 [notice] 131#131: exit +2024/08/16 17:14:47 [notice] 132#132: exit +2024/08/16 17:14:47 [notice] 128#128: exit +2024/08/16 17:14:47 [notice] 127#127: exit +2024/08/16 17:14:47 [notice] 134#134: exit +2024/08/16 17:14:47 [notice] 135#135: exit +2024/08/16 17:14:47 [notice] 136#136: exit +2024/08/16 17:14:47 [notice] 129#129: exit +2024/08/16 17:14:47 [notice] 124#124: exit +2024/08/16 17:14:47 [notice] 126#126: exit +2024/08/16 17:14:47 [notice] 133#133: gracefully shutting down +2024/08/16 17:14:47 [notice] 25#25: signal 29 (SIGIO) received +2024/08/16 17:14:47 [notice] 133#133: exiting +2024/08/16 17:14:47 [notice] 123#123: exit +2024/08/16 17:14:47 [notice] 133#133: exit +2024/08/16 17:14:47 [notice] 137#137: exit +2024/08/16 17:14:47 [notice] 25#25: signal 17 (SIGCHLD) received from 125 +2024/08/16 17:14:47 [notice] 25#25: worker process 125 exited with code 0 +2024/08/16 17:14:47 [notice] 25#25: worker process 135 exited with code 0 +2024/08/16 17:14:47 [notice] 25#25: signal 29 (SIGIO) received +2024/08/16 17:14:47 [notice] 25#25: signal 17 (SIGCHLD) received from 124 +2024/08/16 17:14:47 [notice] 25#25: worker process 124 exited with code 0 +2024/08/16 17:14:47 [notice] 25#25: signal 29 (SIGIO) received +2024/08/16 17:14:47 [notice] 25#25: signal 17 (SIGCHLD) received from 131 +2024/08/16 17:14:47 [notice] 25#25: worker process 131 exited with code 0 +2024/08/16 17:14:47 [notice] 25#25: signal 29 (SIGIO) received +2024/08/16 17:14:47 [notice] 25#25: signal 17 (SIGCHLD) received from 130 +2024/08/16 17:14:47 [notice] 25#25: worker process 128 exited with code 0 +2024/08/16 17:14:47 [notice] 25#25: worker process 129 exited with code 0 +2024/08/16 17:14:47 [notice] 25#25: worker process 130 exited with code 0 +2024/08/16 17:14:47 [notice] 25#25: worker process 132 exited with code 0 +2024/08/16 17:14:47 [notice] 25#25: worker process 134 exited with code 0 +2024/08/16 17:14:47 [notice] 25#25: signal 29 (SIGIO) received +2024/08/16 17:14:47 [notice] 25#25: signal 17 (SIGCHLD) received from 133 +2024/08/16 17:14:47 [notice] 25#25: worker process 122 exited with code 0 +2024/08/16 17:14:47 [notice] 25#25: worker process 126 exited with code 0 +2024/08/16 17:14:47 [notice] 25#25: worker process 123 exited with code 0 +2024/08/16 17:14:47 [notice] 25#25: worker process 127 exited with code 0 +2024/08/16 17:14:47 [notice] 25#25: worker process 133 exited with code 0 +2024/08/16 17:14:47 [notice] 25#25: signal 29 (SIGIO) received +2024/08/16 17:14:47 [notice] 25#25: signal 17 (SIGCHLD) received from 122 +2024/08/16 17:14:47 [notice] 25#25: worker process 136 exited with code 0 +2024/08/16 17:14:47 [notice] 25#25: signal 29 (SIGIO) received +2024/08/16 17:14:47 [notice] 25#25: signal 17 (SIGCHLD) received from 137 +2024/08/16 17:14:47 [notice] 25#25: worker process 137 exited with code 0 +2024/08/16 17:14:47 [notice] 25#25: signal 29 (SIGIO) received +2024/08/16 17:14:48 [info] 138#138: *9 client unix: closed keepalive connection +2024/08/16 17:14:48 [info] 139#139: *10 client unix: closed keepalive connection +10.138.15.194 - - [16/Aug/2024:17:14:48 +0000] "GET / HTTP/1.1" 200 156 "-" "Go-http-client/1.1" +2024/08/16 17:14:48 [info] 138#138: *11 client 10.138.15.194 closed keepalive connection +10.138.15.194 - - [16/Aug/2024:17:14:48 +0000] "GET / HTTP/1.1" 200 156 "-" "Go-http-client/1.1" +2024/08/16 17:14:48 [info] 139#139: *13 client 10.138.15.194 closed keepalive connection +2024/08/16 17:14:49 [info] 140#140: *15 client unix: closed keepalive connection +2024/08/16 17:14:49 [info] 141#141: *16 client unix: closed keepalive connection +2024/08/16 17:14:49 [info] 142#142: *17 client unix: closed keepalive connection +2024/08/16 17:14:49 [info] 143#143: *18 client unix: closed keepalive connection +2024/08/16 17:14:49 [info] 144#144: *19 client unix: closed keepalive connection +2024/08/16 17:14:49 [info] 145#145: *20 client unix: closed keepalive connection +2024/08/16 17:14:49 [info] 146#146: *21 client unix: closed keepalive connection +2024/08/16 17:14:49 [info] 147#147: *22 client unix: closed keepalive connection +2024/08/16 17:14:49 [info] 148#148: *23 client unix: closed keepalive connection +2024/08/16 17:14:50 [info] 149#149: *24 client unix: closed keepalive connection +2024/08/16 17:14:50 [info] 150#150: *25 client unix: closed keepalive connection +2024/08/16 17:14:50 [info] 151#151: *26 client unix: closed keepalive connection +2024/08/16 17:14:50 [info] 152#152: *27 client unix: closed keepalive connection +2024/08/16 17:14:50 [info] 153#153: *28 client unix: closed keepalive connection +2024/08/16 17:14:50 [info] 138#138: *29 client unix: closed keepalive connection +2024/08/16 17:14:50 [info] 138#138: *30 client unix: closed keepalive connection +2024/08/16 17:14:50 [info] 138#138: *31 client unix: closed keepalive connection +2024/08/16 17:14:50 [info] 138#138: *32 client unix: closed keepalive connection +2024/08/16 17:14:50 [info] 138#138: *33 client unix: closed keepalive connection +2024/08/16 17:14:50 [info] 138#138: *34 client unix: closed keepalive connection +2024/08/16 17:14:50 [info] 138#138: *35 client unix: closed keepalive connection +2024/08/16 17:14:50 [info] 138#138: *36 client unix: closed keepalive connection +2024/08/16 17:14:50 [info] 138#138: *37 client unix: closed keepalive connection +2024/08/16 17:14:50 [info] 138#138: *38 client unix: closed keepalive connection +2024/08/16 17:14:50 [info] 138#138: *39 client unix: closed keepalive connection +2024/08/16 17:14:50 [info] 138#138: *40 client unix: closed keepalive connection +2024/08/16 17:14:50 [info] 138#138: *41 client unix: closed keepalive connection +2024/08/16 17:14:50 [info] 138#138: *42 client unix: closed keepalive connection +2024/08/16 17:14:50 [info] 138#138: *43 client unix: closed keepalive connection +2024/08/16 17:14:50 [info] 138#138: *44 client unix: closed keepalive connection +2024/08/16 17:14:50 [info] 139#139: *45 client unix: closed keepalive connection +2024/08/16 17:14:50 [info] 139#139: *46 client unix: closed keepalive connection +2024/08/16 17:14:50 [info] 139#139: *47 client unix: closed keepalive connection +2024/08/16 17:14:50 [info] 139#139: *48 client unix: closed keepalive connection +2024/08/16 17:14:50 [info] 139#139: *49 client unix: closed keepalive connection +2024/08/16 17:14:50 [info] 139#139: *50 client unix: closed keepalive connection +2024/08/16 17:14:50 [info] 139#139: *51 client unix: closed keepalive connection +2024/08/16 17:14:50 [info] 139#139: *52 client unix: closed keepalive connection +2024/08/16 17:14:50 [info] 139#139: *53 client unix: closed keepalive connection +2024/08/16 17:14:50 [info] 139#139: *54 client unix: closed keepalive connection +2024/08/16 17:14:51 [info] 139#139: *55 client unix: closed keepalive connection +2024/08/16 17:14:51 [info] 139#139: *56 client unix: closed keepalive connection +2024/08/16 17:14:51 [info] 139#139: *57 client unix: closed keepalive connection +2024/08/16 17:14:51 [info] 139#139: *58 client unix: closed keepalive connection +2024/08/16 17:14:51 [info] 139#139: *59 client unix: closed keepalive connection +2024/08/16 17:14:51 [info] 139#139: *60 client unix: closed keepalive connection +2024/08/16 17:14:51 [info] 140#140: *61 client unix: closed keepalive connection +2024/08/16 17:14:51 [info] 140#140: *62 client unix: closed keepalive connection +2024/08/16 17:14:51 [info] 140#140: *63 client unix: closed keepalive connection +2024/08/16 17:14:51 [info] 140#140: *64 client unix: closed keepalive connection +2024/08/16 17:14:51 [info] 140#140: *65 client unix: closed keepalive connection +2024/08/16 17:14:51 [info] 140#140: *66 client unix: closed keepalive connection +2024/08/16 17:14:51 [info] 140#140: *67 client unix: closed keepalive connection +2024/08/16 17:14:51 [info] 140#140: *68 client unix: closed keepalive connection +2024/08/16 17:14:51 [info] 140#140: *69 client unix: closed keepalive connection +2024/08/16 17:14:51 [info] 140#140: *70 client unix: closed keepalive connection +2024/08/16 17:14:51 [info] 140#140: *71 client unix: closed keepalive connection +2024/08/16 17:14:51 [info] 140#140: *72 client unix: closed keepalive connection +2024/08/16 17:14:51 [info] 140#140: *73 client unix: closed keepalive connection +2024/08/16 17:14:52 [info] 140#140: *74 client unix: closed keepalive connection +2024/08/16 17:14:52 [info] 140#140: *75 client unix: closed keepalive connection +2024/08/16 17:14:52 [info] 140#140: *76 client unix: closed keepalive connection +2024/08/16 17:14:52 [info] 141#141: *77 client unix: closed keepalive connection +2024/08/16 17:14:52 [info] 141#141: *78 client unix: closed keepalive connection +2024/08/16 17:14:52 [info] 141#141: *79 client unix: closed keepalive connection +2024/08/16 17:14:52 [info] 141#141: *80 client unix: closed keepalive connection +2024/08/16 17:14:52 [info] 141#141: *81 client unix: closed keepalive connection +2024/08/16 17:14:52 [info] 141#141: *82 client unix: closed keepalive connection +2024/08/16 17:14:52 [info] 141#141: *83 client unix: closed keepalive connection +2024/08/16 17:14:52 [info] 141#141: *84 client unix: closed keepalive connection +2024/08/16 17:14:52 [info] 141#141: *85 client unix: closed keepalive connection +2024/08/16 17:14:52 [info] 141#141: *86 client unix: closed keepalive connection +2024/08/16 17:14:52 [info] 141#141: *87 client unix: closed keepalive connection +2024/08/16 17:14:52 [info] 141#141: *88 client unix: closed keepalive connection +2024/08/16 17:14:52 [info] 141#141: *89 client unix: closed keepalive connection +2024/08/16 17:14:52 [info] 141#141: *90 client unix: closed keepalive connection +2024/08/16 17:14:52 [info] 141#141: *91 client unix: closed keepalive connection +2024/08/16 17:14:52 [info] 141#141: *92 client unix: closed keepalive connection +2024/08/16 17:14:52 [info] 142#142: *93 client unix: closed keepalive connection +2024/08/16 17:14:53 [info] 142#142: *94 client unix: closed keepalive connection +2024/08/16 17:14:53 [info] 142#142: *95 client unix: closed keepalive connection +2024/08/16 17:14:53 [info] 142#142: *96 client unix: closed keepalive connection +2024/08/16 17:14:53 [info] 142#142: *97 client unix: closed keepalive connection +2024/08/16 17:14:53 [info] 142#142: *98 client unix: closed keepalive connection +2024/08/16 17:14:53 [info] 142#142: *99 client unix: closed keepalive connection +2024/08/16 17:14:53 [info] 142#142: *100 client unix: closed keepalive connection +2024/08/16 17:14:53 [info] 142#142: *101 client unix: closed keepalive connection +2024/08/16 17:14:53 [info] 142#142: *102 client unix: closed keepalive connection +2024/08/16 17:14:53 [info] 142#142: *103 client unix: closed keepalive connection +2024/08/16 17:14:53 [info] 142#142: *104 client unix: closed keepalive connection +2024/08/16 17:14:53 [info] 142#142: *105 client unix: closed keepalive connection +2024/08/16 17:14:53 [info] 142#142: *106 client unix: closed keepalive connection +2024/08/16 17:14:53 [info] 142#142: *107 client unix: closed keepalive connection +2024/08/16 17:14:53 [info] 142#142: *108 client unix: closed keepalive connection +2024/08/16 17:14:53 [info] 143#143: *109 client unix: closed keepalive connection +2024/08/16 17:14:53 [info] 143#143: *110 client unix: closed keepalive connection +2024/08/16 17:14:53 [info] 143#143: *111 client unix: closed keepalive connection +2024/08/16 17:14:53 [info] 143#143: *112 client unix: closed keepalive connection +2024/08/16 17:14:53 [info] 143#143: *113 client unix: closed keepalive connection +2024/08/16 17:14:53 [info] 143#143: *114 client unix: closed keepalive connection +2024/08/16 17:14:53 [info] 143#143: *115 client unix: closed keepalive connection +2024/08/16 17:14:54 [info] 143#143: *116 client unix: closed keepalive connection +2024/08/16 17:14:54 [info] 143#143: *117 client unix: closed keepalive connection +2024/08/16 17:14:54 [info] 143#143: *118 client unix: closed keepalive connection +2024/08/16 17:14:54 [info] 143#143: *119 client unix: closed keepalive connection +2024/08/16 17:14:54 [info] 143#143: *120 client unix: closed keepalive connection +2024/08/16 17:14:54 [info] 143#143: *121 client unix: closed keepalive connection +2024/08/16 17:14:54 [info] 143#143: *122 client unix: closed keepalive connection +2024/08/16 17:14:54 [info] 143#143: *123 client unix: closed keepalive connection +2024/08/16 17:14:54 [info] 143#143: *124 client unix: closed keepalive connection +2024/08/16 17:14:54 [info] 144#144: *125 client unix: closed keepalive connection +2024/08/16 17:14:54 [info] 144#144: *126 client unix: closed keepalive connection +2024/08/16 17:14:54 [info] 144#144: *127 client unix: closed keepalive connection +2024/08/16 17:14:54 [info] 144#144: *128 client unix: closed keepalive connection +2024/08/16 17:14:54 [info] 144#144: *129 client unix: closed keepalive connection +2024/08/16 17:14:54 [info] 144#144: *130 client unix: closed keepalive connection +2024/08/16 17:14:54 [info] 144#144: *131 client unix: closed keepalive connection +2024/08/16 17:14:55 [info] 144#144: *132 client unix: closed keepalive connection +2024/08/16 17:14:55 [info] 144#144: *133 client unix: closed keepalive connection +2024/08/16 17:14:55 [info] 144#144: *134 client unix: closed keepalive connection +2024/08/16 17:14:55 [info] 144#144: *135 client unix: closed keepalive connection +2024/08/16 17:14:55 [info] 144#144: *136 client unix: closed keepalive connection +2024/08/16 17:14:55 [info] 144#144: *137 client unix: closed keepalive connection +2024/08/16 17:14:55 [info] 144#144: *138 client unix: closed keepalive connection +2024/08/16 17:14:55 [info] 144#144: *139 client unix: closed keepalive connection +2024/08/16 17:14:55 [info] 144#144: *140 client unix: closed keepalive connection +2024/08/16 17:14:55 [info] 145#145: *141 client unix: closed keepalive connection +2024/08/16 17:14:55 [info] 145#145: *142 client unix: closed keepalive connection +2024/08/16 17:14:55 [info] 145#145: *143 client unix: closed keepalive connection +2024/08/16 17:14:55 [info] 145#145: *144 client unix: closed keepalive connection +2024/08/16 17:14:55 [info] 145#145: *145 client unix: closed keepalive connection +2024/08/16 17:14:55 [info] 145#145: *146 client unix: closed keepalive connection +2024/08/16 17:14:55 [info] 145#145: *147 client unix: closed keepalive connection +2024/08/16 17:14:55 [info] 145#145: *148 client unix: closed keepalive connection +2024/08/16 17:14:55 [info] 145#145: *149 client unix: closed keepalive connection +2024/08/16 17:14:55 [info] 145#145: *150 client unix: closed keepalive connection +2024/08/16 17:14:55 [info] 145#145: *151 client unix: closed keepalive connection +2024/08/16 17:14:56 [info] 145#145: *152 client unix: closed keepalive connection +2024/08/16 17:14:56 [info] 145#145: *153 client unix: closed keepalive connection +2024/08/16 17:14:56 [info] 145#145: *154 client unix: closed keepalive connection +2024/08/16 17:14:56 [info] 145#145: *155 client unix: closed keepalive connection +2024/08/16 17:14:56 [info] 145#145: *156 client unix: closed keepalive connection +2024/08/16 17:14:56 [info] 146#146: *157 client unix: closed keepalive connection +2024/08/16 17:14:56 [info] 146#146: *158 client unix: closed keepalive connection +2024/08/16 17:14:56 [info] 146#146: *159 client unix: closed keepalive connection +2024/08/16 17:14:56 [info] 146#146: *160 client unix: closed keepalive connection +2024/08/16 17:14:56 [info] 146#146: *161 client unix: closed keepalive connection +2024/08/16 17:14:56 [info] 146#146: *162 client unix: closed keepalive connection +2024/08/16 17:14:56 [info] 146#146: *163 client unix: closed keepalive connection +2024/08/16 17:14:56 [info] 146#146: *164 client unix: closed keepalive connection +2024/08/16 17:14:56 [info] 146#146: *165 client unix: closed keepalive connection +2024/08/16 17:14:57 [info] 146#146: *166 client unix: closed keepalive connection +2024/08/16 17:14:57 [info] 146#146: *167 client unix: closed keepalive connection +2024/08/16 17:14:57 [info] 146#146: *168 client unix: closed keepalive connection +2024/08/16 17:14:57 [info] 146#146: *169 client unix: closed keepalive connection +2024/08/16 17:14:57 [info] 146#146: *170 client unix: closed keepalive connection +2024/08/16 17:14:57 [info] 146#146: *171 client unix: closed keepalive connection +2024/08/16 17:14:57 [info] 146#146: *172 client unix: closed keepalive connection +2024/08/16 17:14:57 [info] 147#147: *173 client unix: closed keepalive connection +2024/08/16 17:14:57 [info] 147#147: *174 client unix: closed keepalive connection +2024/08/16 17:14:57 [info] 147#147: *175 client unix: closed keepalive connection +2024/08/16 17:14:57 [info] 147#147: *176 client unix: closed keepalive connection +2024/08/16 17:14:57 [info] 147#147: *177 client unix: closed keepalive connection +2024/08/16 17:14:58 [info] 147#147: *178 client unix: closed keepalive connection +2024/08/16 17:14:58 [info] 147#147: *179 client unix: closed keepalive connection +2024/08/16 17:14:58 [info] 147#147: *180 client unix: closed keepalive connection +2024/08/16 17:14:58 [info] 147#147: *181 client unix: closed keepalive connection +2024/08/16 17:14:58 [info] 147#147: *182 client unix: closed keepalive connection +2024/08/16 17:14:58 [info] 147#147: *183 client unix: closed keepalive connection +2024/08/16 17:14:58 [info] 147#147: *184 client unix: closed keepalive connection +2024/08/16 17:14:58 [info] 147#147: *185 client unix: closed keepalive connection +2024/08/16 17:14:58 [info] 147#147: *186 client unix: closed keepalive connection +2024/08/16 17:14:58 [info] 147#147: *187 client unix: closed keepalive connection +2024/08/16 17:14:58 [info] 147#147: *188 client unix: closed keepalive connection +2024/08/16 17:14:59 [info] 148#148: *189 client unix: closed keepalive connection +2024/08/16 17:14:59 [info] 148#148: *190 client unix: closed keepalive connection +2024/08/16 17:14:59 [info] 148#148: *191 client unix: closed keepalive connection +2024/08/16 17:14:59 [info] 148#148: *192 client unix: closed keepalive connection +2024/08/16 17:14:59 [info] 148#148: *193 client unix: closed keepalive connection +2024/08/16 17:14:59 [info] 148#148: *194 client unix: closed keepalive connection +2024/08/16 17:14:59 [info] 148#148: *195 client unix: closed keepalive connection +2024/08/16 17:14:59 [info] 148#148: *196 client unix: closed keepalive connection +2024/08/16 17:14:59 [info] 148#148: *197 client unix: closed keepalive connection +2024/08/16 17:14:59 [info] 148#148: *198 client unix: closed keepalive connection +2024/08/16 17:14:59 [info] 148#148: *199 client unix: closed keepalive connection +2024/08/16 17:14:59 [info] 148#148: *200 client unix: closed keepalive connection +2024/08/16 17:15:00 [info] 148#148: *201 client unix: closed keepalive connection +2024/08/16 17:15:00 [info] 148#148: *202 client unix: closed keepalive connection +2024/08/16 17:15:00 [info] 148#148: *203 client unix: closed keepalive connection +2024/08/16 17:15:00 [info] 148#148: *204 client unix: closed keepalive connection +2024/08/16 17:15:00 [info] 149#149: *205 client unix: closed keepalive connection +2024/08/16 17:15:00 [info] 149#149: *206 client unix: closed keepalive connection +2024/08/16 17:15:00 [info] 149#149: *207 client unix: closed keepalive connection +2024/08/16 17:15:00 [info] 149#149: *208 client unix: closed keepalive connection +2024/08/16 17:15:00 [info] 149#149: *209 client unix: closed keepalive connection +2024/08/16 17:15:00 [info] 149#149: *210 client unix: closed keepalive connection +2024/08/16 17:15:00 [info] 149#149: *211 client unix: closed keepalive connection +2024/08/16 17:15:00 [info] 149#149: *212 client unix: closed keepalive connection +2024/08/16 17:15:00 [info] 149#149: *213 client unix: closed keepalive connection +2024/08/16 17:15:00 [info] 149#149: *214 client unix: closed keepalive connection +2024/08/16 17:15:00 [info] 149#149: *215 client unix: closed keepalive connection +2024/08/16 17:15:01 [info] 149#149: *216 client unix: closed keepalive connection +2024/08/16 17:15:01 [info] 149#149: *217 client unix: closed keepalive connection +2024/08/16 17:15:01 [info] 149#149: *218 client unix: closed keepalive connection +2024/08/16 17:15:01 [info] 149#149: *219 client unix: closed keepalive connection +2024/08/16 17:15:01 [info] 149#149: *220 client unix: closed keepalive connection +2024/08/16 17:15:01 [info] 150#150: *221 client unix: closed keepalive connection +2024/08/16 17:15:01 [info] 150#150: *222 client unix: closed keepalive connection +2024/08/16 17:15:01 [info] 150#150: *223 client unix: closed keepalive connection +2024/08/16 17:15:01 [info] 150#150: *224 client unix: closed keepalive connection +2024/08/16 17:15:01 [info] 150#150: *225 client unix: closed keepalive connection +2024/08/16 17:15:01 [info] 150#150: *226 client unix: closed keepalive connection +2024/08/16 17:15:01 [info] 150#150: *227 client unix: closed keepalive connection +2024/08/16 17:15:01 [info] 150#150: *228 client unix: closed keepalive connection +2024/08/16 17:15:01 [info] 150#150: *229 client unix: closed keepalive connection +2024/08/16 17:15:01 [info] 150#150: *230 client unix: closed keepalive connection +2024/08/16 17:15:01 [info] 150#150: *231 client unix: closed keepalive connection +2024/08/16 17:15:01 [info] 150#150: *232 client unix: closed keepalive connection +2024/08/16 17:15:01 [info] 150#150: *233 client unix: closed keepalive connection +2024/08/16 17:15:01 [info] 150#150: *234 client unix: closed keepalive connection +2024/08/16 17:15:01 [info] 150#150: *235 client unix: closed keepalive connection +2024/08/16 17:15:01 [info] 150#150: *236 client unix: closed keepalive connection +2024/08/16 17:15:01 [info] 151#151: *237 client unix: closed keepalive connection +2024/08/16 17:15:01 [info] 151#151: *238 client unix: closed keepalive connection +2024/08/16 17:15:01 [info] 151#151: *239 client unix: closed keepalive connection +2024/08/16 17:15:01 [info] 151#151: *240 client unix: closed keepalive connection +2024/08/16 17:15:01 [info] 151#151: *241 client unix: closed keepalive connection +2024/08/16 17:15:01 [info] 151#151: *242 client unix: closed keepalive connection +2024/08/16 17:15:01 [info] 151#151: *243 client unix: closed keepalive connection +2024/08/16 17:15:01 [info] 151#151: *244 client unix: closed keepalive connection +2024/08/16 17:15:02 [info] 151#151: *245 client unix: closed keepalive connection +2024/08/16 17:15:02 [info] 151#151: *246 client unix: closed keepalive connection +2024/08/16 17:15:02 [info] 151#151: *247 client unix: closed keepalive connection +2024/08/16 17:15:02 [info] 151#151: *248 client unix: closed keepalive connection +2024/08/16 17:15:02 [info] 151#151: *249 client unix: closed keepalive connection +2024/08/16 17:15:02 [info] 151#151: *250 client unix: closed keepalive connection +2024/08/16 17:15:02 [info] 151#151: *251 client unix: closed keepalive connection +2024/08/16 17:15:02 [info] 151#151: *252 client unix: closed keepalive connection +2024/08/16 17:15:02 [info] 152#152: *253 client unix: closed keepalive connection +2024/08/16 17:15:02 [info] 152#152: *254 client unix: closed keepalive connection +2024/08/16 17:15:02 [info] 152#152: *255 client unix: closed keepalive connection +2024/08/16 17:15:02 [info] 152#152: *256 client unix: closed keepalive connection +2024/08/16 17:15:02 [info] 152#152: *257 client unix: closed keepalive connection +2024/08/16 17:15:02 [info] 152#152: *258 client unix: closed keepalive connection +2024/08/16 17:15:02 [info] 152#152: *259 client unix: closed keepalive connection +2024/08/16 17:15:02 [info] 152#152: *260 client unix: closed keepalive connection +2024/08/16 17:15:02 [info] 152#152: *261 client unix: closed keepalive connection +2024/08/16 17:15:02 [info] 152#152: *262 client unix: closed keepalive connection +2024/08/16 17:15:02 [info] 152#152: *263 client unix: closed keepalive connection +2024/08/16 17:15:02 [info] 152#152: *264 client unix: closed keepalive connection +2024/08/16 17:15:02 [info] 152#152: *265 client unix: closed keepalive connection +2024/08/16 17:15:02 [info] 152#152: *266 client unix: closed keepalive connection +2024/08/16 17:15:03 [info] 152#152: *267 client unix: closed keepalive connection +2024/08/16 17:15:03 [info] 152#152: *268 client unix: closed keepalive connection +2024/08/16 17:15:03 [info] 153#153: *269 client unix: closed keepalive connection +2024/08/16 17:15:03 [info] 153#153: *270 client unix: closed keepalive connection +2024/08/16 17:15:03 [info] 153#153: *271 client unix: closed keepalive connection +2024/08/16 17:15:03 [info] 153#153: *272 client unix: closed keepalive connection +2024/08/16 17:15:03 [info] 153#153: *273 client unix: closed keepalive connection +2024/08/16 17:15:03 [info] 153#153: *274 client unix: closed keepalive connection +2024/08/16 17:15:03 [info] 153#153: *275 client unix: closed keepalive connection +2024/08/16 17:15:03 [info] 153#153: *276 client unix: closed keepalive connection +2024/08/16 17:15:03 [info] 153#153: *277 client unix: closed keepalive connection +2024/08/16 17:15:03 [info] 153#153: *278 client unix: closed keepalive connection +2024/08/16 17:15:03 [info] 153#153: *279 client unix: closed keepalive connection +2024/08/16 17:15:03 [info] 153#153: *280 client unix: closed keepalive connection +2024/08/16 17:15:03 [info] 153#153: *281 client unix: closed keepalive connection +2024/08/16 17:15:03 [info] 153#153: *282 client unix: closed keepalive connection +2024/08/16 17:15:03 [info] 153#153: *283 client unix: closed keepalive connection +2024/08/16 17:15:03 [info] 153#153: *284 client unix: closed keepalive connection +2024/08/16 17:15:03 [info] 138#138: *285 client unix: closed keepalive connection +2024/08/16 17:15:03 [info] 138#138: *286 client unix: closed keepalive connection +2024/08/16 17:15:03 [info] 138#138: *287 client unix: closed keepalive connection +2024/08/16 17:15:04 [info] 138#138: *288 client unix: closed keepalive connection +2024/08/16 17:15:04 [info] 138#138: *289 client unix: closed keepalive connection +2024/08/16 17:15:04 [info] 138#138: *290 client unix: closed keepalive connection +2024/08/16 17:15:04 [info] 138#138: *291 client unix: closed keepalive connection +2024/08/16 17:15:04 [info] 138#138: *292 client unix: closed keepalive connection +2024/08/16 17:15:04 [info] 138#138: *293 client unix: closed keepalive connection +2024/08/16 17:15:04 [info] 138#138: *294 client unix: closed keepalive connection +2024/08/16 17:15:04 [info] 138#138: *295 client unix: closed keepalive connection +2024/08/16 17:15:04 [info] 138#138: *296 client unix: closed keepalive connection +2024/08/16 17:15:04 [info] 138#138: *297 client unix: closed keepalive connection +2024/08/16 17:15:04 [info] 138#138: *298 client unix: closed keepalive connection +2024/08/16 17:15:04 [info] 138#138: *299 client unix: closed keepalive connection +2024/08/16 17:15:04 [info] 138#138: *300 client unix: closed keepalive connection +2024/08/16 17:15:04 [info] 139#139: *301 client unix: closed keepalive connection +2024/08/16 17:15:04 [info] 139#139: *302 client unix: closed keepalive connection +2024/08/16 17:15:04 [info] 139#139: *303 client unix: closed keepalive connection +2024/08/16 17:15:04 [info] 139#139: *304 client unix: closed keepalive connection +2024/08/16 17:15:04 [info] 139#139: *305 client unix: closed keepalive connection +2024/08/16 17:15:04 [info] 139#139: *306 client unix: closed keepalive connection +2024/08/16 17:15:04 [info] 139#139: *307 client unix: closed keepalive connection +2024/08/16 17:15:04 [info] 139#139: *308 client unix: closed keepalive connection +2024/08/16 17:15:04 [info] 139#139: *309 client unix: closed keepalive connection +2024/08/16 17:15:05 [info] 139#139: *310 client unix: closed keepalive connection +2024/08/16 17:15:05 [info] 139#139: *311 client unix: closed keepalive connection +2024/08/16 17:15:05 [info] 139#139: *312 client unix: closed keepalive connection +2024/08/16 17:15:05 [info] 139#139: *313 client unix: closed keepalive connection +2024/08/16 17:15:05 [info] 139#139: *314 client unix: closed keepalive connection +2024/08/16 17:15:05 [info] 139#139: *315 client unix: closed keepalive connection +2024/08/16 17:15:05 [info] 139#139: *316 client unix: closed keepalive connection +2024/08/16 17:15:05 [info] 140#140: *317 client unix: closed keepalive connection +2024/08/16 17:15:05 [info] 140#140: *318 client unix: closed keepalive connection +2024/08/16 17:15:05 [info] 140#140: *319 client unix: closed keepalive connection +2024/08/16 17:15:05 [info] 140#140: *320 client unix: closed keepalive connection +2024/08/16 17:15:05 [info] 140#140: *321 client unix: closed keepalive connection +2024/08/16 17:15:05 [info] 140#140: *322 client unix: closed keepalive connection +2024/08/16 17:15:05 [info] 140#140: *323 client unix: closed keepalive connection +2024/08/16 17:15:05 [info] 140#140: *324 client unix: closed keepalive connection +2024/08/16 17:15:05 [info] 140#140: *325 client unix: closed keepalive connection +2024/08/16 17:15:05 [info] 140#140: *326 client unix: closed keepalive connection +2024/08/16 17:15:05 [info] 140#140: *327 client unix: closed keepalive connection +2024/08/16 17:15:05 [info] 140#140: *328 client unix: closed keepalive connection +2024/08/16 17:15:05 [info] 140#140: *329 client unix: closed keepalive connection +2024/08/16 17:15:05 [info] 140#140: *330 client unix: closed keepalive connection +2024/08/16 17:15:05 [info] 140#140: *331 client unix: closed keepalive connection +2024/08/16 17:15:05 [info] 140#140: *332 client unix: closed keepalive connection +2024/08/16 17:15:05 [info] 141#141: *333 client unix: closed keepalive connection +2024/08/16 17:15:05 [info] 141#141: *334 client unix: closed keepalive connection +2024/08/16 17:15:06 [info] 141#141: *335 client unix: closed keepalive connection +2024/08/16 17:15:06 [info] 141#141: *336 client unix: closed keepalive connection +2024/08/16 17:15:06 [info] 141#141: *337 client unix: closed keepalive connection +2024/08/16 17:15:06 [info] 141#141: *338 client unix: closed keepalive connection +2024/08/16 17:15:06 [info] 141#141: *339 client unix: closed keepalive connection +2024/08/16 17:15:06 [info] 141#141: *340 client unix: closed keepalive connection +2024/08/16 17:15:06 [info] 141#141: *341 client unix: closed keepalive connection +2024/08/16 17:15:06 [info] 141#141: *342 client unix: closed keepalive connection +2024/08/16 17:15:06 [info] 141#141: *343 client unix: closed keepalive connection +2024/08/16 17:15:06 [info] 141#141: *344 client unix: closed keepalive connection +2024/08/16 17:15:06 [info] 141#141: *345 client unix: closed keepalive connection +2024/08/16 17:15:06 [info] 141#141: *346 client unix: closed keepalive connection +2024/08/16 17:15:06 [info] 141#141: *347 client unix: closed keepalive connection +2024/08/16 17:15:06 [info] 141#141: *348 client unix: closed keepalive connection +2024/08/16 17:15:06 [info] 142#142: *349 client unix: closed keepalive connection +2024/08/16 17:15:06 [info] 142#142: *350 client unix: closed keepalive connection +2024/08/16 17:15:06 [info] 142#142: *351 client unix: closed keepalive connection +2024/08/16 17:15:06 [info] 142#142: *352 client unix: closed keepalive connection +2024/08/16 17:15:06 [info] 142#142: *353 client unix: closed keepalive connection +2024/08/16 17:15:06 [info] 142#142: *354 client unix: closed keepalive connection +2024/08/16 17:15:07 [info] 142#142: *355 client unix: closed keepalive connection +2024/08/16 17:15:07 [info] 142#142: *356 client unix: closed keepalive connection +2024/08/16 17:15:07 [info] 142#142: *357 client unix: closed keepalive connection +2024/08/16 17:15:07 [info] 142#142: *358 client unix: closed keepalive connection +2024/08/16 17:15:07 [info] 142#142: *359 client unix: closed keepalive connection +2024/08/16 17:15:07 [info] 143#143: *360 client unix: closed keepalive connection +2024/08/16 17:15:07 [info] 142#142: *361 client unix: closed keepalive connection +2024/08/16 17:15:07 [info] 142#142: *362 client unix: closed keepalive connection +2024/08/16 17:15:07 [info] 142#142: *363 client unix: closed keepalive connection +2024/08/16 17:15:07 [info] 142#142: *364 client unix: closed keepalive connection +2024/08/16 17:15:07 [info] 142#142: *365 client unix: closed keepalive connection +2024/08/16 17:15:07 [info] 143#143: *366 client unix: closed keepalive connection +2024/08/16 17:15:07 [info] 143#143: *367 client unix: closed keepalive connection +2024/08/16 17:15:07 [info] 143#143: *368 client unix: closed keepalive connection +2024/08/16 17:15:07 [info] 143#143: *369 client unix: closed keepalive connection +2024/08/16 17:15:07 [info] 143#143: *370 client unix: closed keepalive connection +2024/08/16 17:15:07 [info] 143#143: *371 client unix: closed keepalive connection +2024/08/16 17:15:07 [info] 143#143: *372 client unix: closed keepalive connection +2024/08/16 17:15:07 [info] 143#143: *373 client unix: closed keepalive connection +2024/08/16 17:15:07 [info] 143#143: *374 client unix: closed keepalive connection +2024/08/16 17:15:07 [info] 143#143: *375 client unix: closed keepalive connection +2024/08/16 17:15:07 [info] 143#143: *376 client unix: closed keepalive connection +2024/08/16 17:15:08 [info] 143#143: *377 client unix: closed keepalive connection +2024/08/16 17:15:08 [info] 143#143: *378 client unix: closed keepalive connection +2024/08/16 17:15:08 [info] 143#143: *379 client unix: closed keepalive connection +2024/08/16 17:15:08 [info] 143#143: *380 client unix: closed keepalive connection +2024/08/16 17:15:08 [info] 144#144: *381 client unix: closed keepalive connection +2024/08/16 17:15:08 [info] 144#144: *382 client unix: closed keepalive connection +2024/08/16 17:15:08 [info] 144#144: *383 client unix: closed keepalive connection +2024/08/16 17:15:08 [info] 144#144: *384 client unix: closed keepalive connection +2024/08/16 17:15:08 [info] 144#144: *385 client unix: closed keepalive connection +2024/08/16 17:15:08 [info] 144#144: *386 client unix: closed keepalive connection +2024/08/16 17:15:08 [info] 144#144: *387 client unix: closed keepalive connection +2024/08/16 17:15:08 [info] 144#144: *388 client unix: closed keepalive connection +2024/08/16 17:15:08 [info] 144#144: *389 client unix: closed keepalive connection +2024/08/16 17:15:08 [info] 144#144: *390 client unix: closed keepalive connection +2024/08/16 17:15:08 [info] 144#144: *391 client unix: closed keepalive connection +2024/08/16 17:15:08 [info] 144#144: *392 client unix: closed keepalive connection +2024/08/16 17:15:08 [info] 144#144: *393 client unix: closed keepalive connection +2024/08/16 17:15:08 [info] 144#144: *394 client unix: closed keepalive connection +2024/08/16 17:15:08 [info] 144#144: *395 client unix: closed keepalive connection +2024/08/16 17:15:08 [info] 144#144: *396 client unix: closed keepalive connection +2024/08/16 17:15:08 [info] 145#145: *397 client unix: closed keepalive connection +2024/08/16 17:15:08 [info] 145#145: *398 client unix: closed keepalive connection +2024/08/16 17:15:09 [info] 145#145: *399 client unix: closed keepalive connection +2024/08/16 17:15:09 [info] 145#145: *400 client unix: closed keepalive connection +2024/08/16 17:15:09 [info] 145#145: *401 client unix: closed keepalive connection +2024/08/16 17:15:09 [info] 145#145: *402 client unix: closed keepalive connection +2024/08/16 17:15:09 [info] 145#145: *403 client unix: closed keepalive connection +2024/08/16 17:15:09 [info] 145#145: *404 client unix: closed keepalive connection +2024/08/16 17:15:09 [info] 145#145: *405 client unix: closed keepalive connection +2024/08/16 17:15:09 [info] 145#145: *406 client unix: closed keepalive connection +2024/08/16 17:15:09 [info] 145#145: *407 client unix: closed keepalive connection +2024/08/16 17:15:09 [info] 145#145: *408 client unix: closed keepalive connection +2024/08/16 17:15:09 [info] 145#145: *409 client unix: closed keepalive connection +2024/08/16 17:15:09 [info] 145#145: *410 client unix: closed keepalive connection +2024/08/16 17:15:09 [info] 145#145: *411 client unix: closed keepalive connection +2024/08/16 17:15:09 [info] 145#145: *412 client unix: closed keepalive connection +2024/08/16 17:15:09 [info] 146#146: *413 client unix: closed keepalive connection +2024/08/16 17:15:09 [info] 146#146: *414 client unix: closed keepalive connection +2024/08/16 17:15:09 [info] 146#146: *415 client unix: closed keepalive connection +2024/08/16 17:15:09 [info] 146#146: *416 client unix: closed keepalive connection +2024/08/16 17:15:09 [info] 146#146: *417 client unix: closed keepalive connection +2024/08/16 17:15:09 [info] 146#146: *418 client unix: closed keepalive connection +2024/08/16 17:15:09 [info] 146#146: *419 client unix: closed keepalive connection +2024/08/16 17:15:09 [info] 146#146: *420 client unix: closed keepalive connection +2024/08/16 17:15:09 [info] 146#146: *421 client unix: closed keepalive connection +2024/08/16 17:15:10 [info] 146#146: *422 client unix: closed keepalive connection +2024/08/16 17:15:10 [info] 146#146: *423 client unix: closed keepalive connection +2024/08/16 17:15:10 [info] 146#146: *424 client unix: closed keepalive connection +2024/08/16 17:15:10 [info] 146#146: *425 client unix: closed keepalive connection +2024/08/16 17:15:10 [info] 146#146: *426 client unix: closed keepalive connection +2024/08/16 17:15:10 [info] 146#146: *427 client unix: closed keepalive connection +2024/08/16 17:15:10 [info] 146#146: *428 client unix: closed keepalive connection +2024/08/16 17:15:10 [info] 147#147: *429 client unix: closed keepalive connection +2024/08/16 17:15:10 [info] 147#147: *430 client unix: closed keepalive connection +2024/08/16 17:15:10 [info] 147#147: *431 client unix: closed keepalive connection +2024/08/16 17:15:10 [info] 147#147: *432 client unix: closed keepalive connection +2024/08/16 17:15:10 [info] 147#147: *433 client unix: closed keepalive connection +2024/08/16 17:15:10 [info] 147#147: *434 client unix: closed keepalive connection +2024/08/16 17:15:10 [info] 147#147: *435 client unix: closed keepalive connection +2024/08/16 17:15:10 [info] 147#147: *436 client unix: closed keepalive connection +2024/08/16 17:15:10 [info] 147#147: *437 client unix: closed keepalive connection +2024/08/16 17:15:10 [info] 147#147: *438 client unix: closed keepalive connection +2024/08/16 17:15:10 [info] 147#147: *439 client unix: closed keepalive connection +2024/08/16 17:15:10 [info] 147#147: *440 client unix: closed keepalive connection +2024/08/16 17:15:10 [info] 147#147: *441 client unix: closed keepalive connection +2024/08/16 17:15:11 [info] 147#147: *442 client unix: closed keepalive connection +2024/08/16 17:15:11 [info] 147#147: *443 client unix: closed keepalive connection +2024/08/16 17:15:11 [info] 147#147: *444 client unix: closed keepalive connection +2024/08/16 17:15:11 [info] 148#148: *445 client unix: closed keepalive connection +2024/08/16 17:15:11 [info] 148#148: *446 client unix: closed keepalive connection +2024/08/16 17:15:11 [info] 148#148: *447 client unix: closed keepalive connection +2024/08/16 17:15:11 [info] 148#148: *448 client unix: closed keepalive connection +2024/08/16 17:15:11 [info] 148#148: *449 client unix: closed keepalive connection +2024/08/16 17:15:11 [info] 148#148: *450 client unix: closed keepalive connection +2024/08/16 17:15:11 [info] 148#148: *451 client unix: closed keepalive connection +2024/08/16 17:15:11 [info] 148#148: *452 client unix: closed keepalive connection +2024/08/16 17:15:11 [info] 148#148: *453 client unix: closed keepalive connection +2024/08/16 17:15:11 [info] 148#148: *454 client unix: closed keepalive connection +2024/08/16 17:15:11 [info] 148#148: *455 client unix: closed keepalive connection +2024/08/16 17:15:11 [info] 148#148: *456 client unix: closed keepalive connection +2024/08/16 17:15:11 [info] 148#148: *457 client unix: closed keepalive connection +2024/08/16 17:15:11 [info] 148#148: *458 client unix: closed keepalive connection +2024/08/16 17:15:12 [info] 148#148: *459 client unix: closed keepalive connection +2024/08/16 17:15:12 [info] 148#148: *460 client unix: closed keepalive connection +2024/08/16 17:15:12 [info] 149#149: *461 client unix: closed keepalive connection +2024/08/16 17:15:12 [info] 149#149: *462 client unix: closed keepalive connection +2024/08/16 17:15:12 [info] 149#149: *463 client unix: closed keepalive connection +2024/08/16 17:15:12 [info] 149#149: *464 client unix: closed keepalive connection +2024/08/16 17:15:12 [info] 149#149: *465 client unix: closed keepalive connection +2024/08/16 17:15:12 [info] 149#149: *466 client unix: closed keepalive connection +2024/08/16 17:15:12 [info] 149#149: *467 client unix: closed keepalive connection +2024/08/16 17:15:12 [info] 149#149: *468 client unix: closed keepalive connection +2024/08/16 17:15:12 [info] 149#149: *469 client unix: closed keepalive connection +2024/08/16 17:15:12 [info] 149#149: *470 client unix: closed keepalive connection +2024/08/16 17:15:12 [info] 149#149: *471 client unix: closed keepalive connection +2024/08/16 17:15:12 [info] 149#149: *472 client unix: closed keepalive connection +2024/08/16 17:15:12 [info] 149#149: *473 client unix: closed keepalive connection +2024/08/16 17:15:12 [info] 149#149: *474 client unix: closed keepalive connection +2024/08/16 17:15:12 [info] 149#149: *475 client unix: closed keepalive connection +2024/08/16 17:15:12 [info] 149#149: *476 client unix: closed keepalive connection +2024/08/16 17:15:12 [info] 150#150: *477 client unix: closed keepalive connection +2024/08/16 17:15:12 [info] 150#150: *478 client unix: closed keepalive connection +2024/08/16 17:15:12 [info] 150#150: *479 client unix: closed keepalive connection +2024/08/16 17:15:13 [info] 150#150: *480 client unix: closed keepalive connection +2024/08/16 17:15:13 [info] 150#150: *481 client unix: closed keepalive connection +2024/08/16 17:15:13 [info] 150#150: *482 client unix: closed keepalive connection +2024/08/16 17:15:13 [info] 150#150: *483 client unix: closed keepalive connection +2024/08/16 17:15:13 [info] 150#150: *484 client unix: closed keepalive connection +2024/08/16 17:15:13 [info] 150#150: *485 client unix: closed keepalive connection +2024/08/16 17:15:13 [info] 150#150: *486 client unix: closed keepalive connection +2024/08/16 17:15:13 [info] 150#150: *487 client unix: closed keepalive connection +2024/08/16 17:15:13 [info] 150#150: *488 client unix: closed keepalive connection +2024/08/16 17:15:13 [info] 150#150: *489 client unix: closed keepalive connection +2024/08/16 17:15:13 [info] 150#150: *490 client unix: closed keepalive connection +2024/08/16 17:15:13 [info] 150#150: *491 client unix: closed keepalive connection +2024/08/16 17:15:13 [info] 150#150: *492 client unix: closed keepalive connection +2024/08/16 17:15:13 [info] 151#151: *493 client unix: closed keepalive connection +2024/08/16 17:15:13 [info] 151#151: *494 client unix: closed keepalive connection +2024/08/16 17:15:13 [info] 151#151: *495 client unix: closed keepalive connection +2024/08/16 17:15:13 [info] 151#151: *496 client unix: closed keepalive connection +2024/08/16 17:15:13 [info] 151#151: *497 client unix: closed keepalive connection +2024/08/16 17:15:13 [info] 151#151: *498 client unix: closed keepalive connection +2024/08/16 17:15:13 [info] 151#151: *499 client unix: closed keepalive connection +2024/08/16 17:15:13 [info] 151#151: *500 client unix: closed keepalive connection +2024/08/16 17:15:13 [info] 151#151: *501 client unix: closed keepalive connection +2024/08/16 17:15:14 [info] 151#151: *502 client unix: closed keepalive connection +2024/08/16 17:15:14 [info] 151#151: *503 client unix: closed keepalive connection +2024/08/16 17:15:14 [info] 151#151: *504 client unix: closed keepalive connection +2024/08/16 17:15:14 [info] 151#151: *505 client unix: closed keepalive connection +2024/08/16 17:15:14 [info] 151#151: *506 client unix: closed keepalive connection +2024/08/16 17:15:14 [info] 151#151: *507 client unix: closed keepalive connection +2024/08/16 17:15:14 [info] 151#151: *508 client unix: closed keepalive connection +2024/08/16 17:15:15 [info] 152#152: *509 client unix: closed keepalive connection +2024/08/16 17:15:15 [info] 152#152: *510 client unix: closed keepalive connection +2024/08/16 17:15:15 [info] 152#152: *511 client unix: closed keepalive connection +2024/08/16 17:15:15 [info] 152#152: *512 client unix: closed keepalive connection +2024/08/16 17:15:15 [info] 152#152: *513 client unix: closed keepalive connection +2024/08/16 17:15:15 [info] 152#152: *514 client unix: closed keepalive connection +2024/08/16 17:15:15 [info] 152#152: *515 client unix: closed keepalive connection +2024/08/16 17:15:15 [info] 152#152: *516 client unix: closed keepalive connection +2024/08/16 17:15:15 [info] 152#152: *517 client unix: closed keepalive connection +2024/08/16 17:15:15 [info] 152#152: *518 client unix: closed keepalive connection +2024/08/16 17:15:15 [info] 152#152: *519 client unix: closed keepalive connection +2024/08/16 17:15:15 [info] 152#152: *520 client unix: closed keepalive connection +2024/08/16 17:15:15 [info] 152#152: *521 client unix: closed keepalive connection +2024/08/16 17:15:15 [info] 152#152: *522 client unix: closed keepalive connection +2024/08/16 17:15:15 [info] 152#152: *523 client unix: closed keepalive connection +2024/08/16 17:15:15 [info] 152#152: *524 client unix: closed keepalive connection +2024/08/16 17:15:15 [info] 153#153: *525 client unix: closed keepalive connection +2024/08/16 17:15:15 [info] 153#153: *526 client unix: closed keepalive connection +2024/08/16 17:15:15 [info] 153#153: *527 client unix: closed keepalive connection +2024/08/16 17:15:15 [info] 153#153: *528 client unix: closed keepalive connection +2024/08/16 17:15:15 [info] 153#153: *529 client unix: closed keepalive connection +2024/08/16 17:15:15 [info] 153#153: *530 client unix: closed keepalive connection +2024/08/16 17:15:15 [info] 153#153: *531 client unix: closed keepalive connection +2024/08/16 17:15:16 [info] 153#153: *532 client unix: closed keepalive connection +2024/08/16 17:15:16 [info] 153#153: *533 client unix: closed keepalive connection +2024/08/16 17:15:16 [info] 153#153: *534 client unix: closed keepalive connection +2024/08/16 17:15:16 [info] 153#153: *535 client unix: closed keepalive connection +2024/08/16 17:15:16 [info] 153#153: *536 client unix: closed keepalive connection +2024/08/16 17:15:16 [info] 153#153: *537 client unix: closed keepalive connection +2024/08/16 17:15:16 [info] 153#153: *538 client unix: closed keepalive connection +2024/08/16 17:15:16 [info] 153#153: *539 client unix: closed keepalive connection +2024/08/16 17:15:16 [info] 153#153: *540 client unix: closed keepalive connection +2024/08/16 17:15:16 [info] 138#138: *541 client unix: closed keepalive connection +2024/08/16 17:15:16 [info] 138#138: *542 client unix: closed keepalive connection +2024/08/16 17:15:16 [info] 138#138: *543 client unix: closed keepalive connection +2024/08/16 17:15:16 [info] 138#138: *544 client unix: closed keepalive connection +2024/08/16 17:15:17 [info] 138#138: *545 client unix: closed keepalive connection +2024/08/16 17:15:17 [info] 138#138: *546 client unix: closed keepalive connection +2024/08/16 17:15:17 [info] 138#138: *547 client unix: closed keepalive connection +2024/08/16 17:15:17 [info] 138#138: *548 client unix: closed keepalive connection +2024/08/16 17:15:17 [info] 138#138: *549 client unix: closed keepalive connection +2024/08/16 17:15:17 [info] 138#138: *550 client unix: closed keepalive connection +2024/08/16 17:15:17 [info] 138#138: *551 client unix: closed keepalive connection +2024/08/16 17:15:17 [info] 138#138: *552 client unix: closed keepalive connection +2024/08/16 17:15:17 [info] 138#138: *553 client unix: closed keepalive connection +2024/08/16 17:15:17 [info] 138#138: *554 client unix: closed keepalive connection +2024/08/16 17:15:17 [info] 138#138: *555 client unix: closed keepalive connection +2024/08/16 17:15:17 [info] 138#138: *556 client unix: closed keepalive connection +2024/08/16 17:15:17 [info] 139#139: *557 client unix: closed keepalive connection +2024/08/16 17:15:17 [info] 139#139: *558 client unix: closed keepalive connection +2024/08/16 17:15:17 [info] 139#139: *559 client unix: closed keepalive connection +2024/08/16 17:15:17 [info] 139#139: *560 client unix: closed keepalive connection +2024/08/16 17:15:17 [info] 139#139: *561 client unix: closed keepalive connection +2024/08/16 17:15:17 [info] 139#139: *562 client unix: closed keepalive connection +2024/08/16 17:15:17 [info] 139#139: *563 client unix: closed keepalive connection +2024/08/16 17:15:17 [info] 139#139: *564 client unix: closed keepalive connection +2024/08/16 17:15:17 [info] 139#139: *565 client unix: closed keepalive connection +2024/08/16 17:15:17 [info] 139#139: *566 client unix: closed keepalive connection +2024/08/16 17:15:17 [info] 139#139: *567 client unix: closed keepalive connection +2024/08/16 17:15:17 [info] 139#139: *568 client unix: closed keepalive connection +2024/08/16 17:15:17 [info] 139#139: *569 client unix: closed keepalive connection +2024/08/16 17:15:17 [crit] 139#139: ngx_slab_alloc() failed: no memory in upstream zone "scale_backend_80" +2024/08/16 17:15:17 [notice] 25#25: signal 1 (SIGHUP) received from 48, reconfiguring +2024/08/16 17:15:17 [notice] 25#25: reconfiguring +2024/08/16 17:15:17 [crit] 25#25: ngx_slab_alloc() failed: no memory in upstream zone "scale_backend_80" diff --git a/tests/results/zero-downtime-scale/1.4.0/1.4.0-oss.md b/tests/results/zero-downtime-scale/1.4.0/1.4.0-oss.md new file mode 100644 index 000000000..8dfe4dd07 --- /dev/null +++ b/tests/results/zero-downtime-scale/1.4.0/1.4.0-oss.md @@ -0,0 +1,286 @@ +# Results + +## Test environment + +NGINX Plus: false + +NGINX Gateway Fabric: + +- Commit: 16a95222a968aef46277a77070f79bea9b87da12 +- Date: 2024-08-16T15:29:44Z +- Dirty: false + +GKE Cluster: + +- Node count: 12 +- k8s version: v1.29.7-gke.1008000 +- vCPUs per node: 16 +- RAM per node: 65855012Ki +- Max pods per node: 110 +- Zone: us-west1-b +- Instance Type: n2d-standard-16 + +## Summary: + +- Results are going to look different this time due to automating this test. +- No errors seen + +## One NGF Pod runs per node Test Results + +### Scale Up Gradually + +#### Test: Send https /tea traffic + +```text +Requests [total, rate, throughput] 30000, 100.00, 100.00 +Duration [total, attack, wait] 5m0s, 5m0s, 902.053µs +Latencies [min, mean, 50, 90, 95, 99, max] 506.199µs, 971.444µs, 964.757µs, 1.107ms, 1.164ms, 1.38ms, 11.651ms +Bytes In [total, mean] 4625971, 154.20 +Bytes Out [total, mean] 0, 0.00 +Success [ratio] 100.00% +Status Codes [code:count] 200:30000 +Error Set: +``` + +![gradual-scale-up-affinity-https-oss.png](gradual-scale-up-affinity-https-oss.png) + +#### Test: Send http /coffee traffic + +```text +Requests [total, rate, throughput] 30000, 100.00, 100.00 +Duration [total, attack, wait] 5m0s, 5m0s, 836.881µs +Latencies [min, mean, 50, 90, 95, 99, max] 480.426µs, 944.842µs, 943.443µs, 1.082ms, 1.136ms, 1.371ms, 12.265ms +Bytes In [total, mean] 4835922, 161.20 +Bytes Out [total, mean] 0, 0.00 +Success [ratio] 100.00% +Status Codes [code:count] 200:30000 +Error Set: +``` + +![gradual-scale-up-affinity-http-oss.png](gradual-scale-up-affinity-http-oss.png) + +### Scale Down Gradually + +#### Test: Send https /tea traffic + +```text +Requests [total, rate, throughput] 48000, 100.00, 100.00 +Duration [total, attack, wait] 8m0s, 8m0s, 974.009µs +Latencies [min, mean, 50, 90, 95, 99, max] 505.207µs, 950.261µs, 946.638µs, 1.069ms, 1.117ms, 1.306ms, 11.516ms +Bytes In [total, mean] 7401713, 154.20 +Bytes Out [total, mean] 0, 0.00 +Success [ratio] 100.00% +Status Codes [code:count] 200:48000 +Error Set: +``` + +![gradual-scale-down-affinity-https-oss.png](gradual-scale-down-affinity-https-oss.png) + +#### Test: Send http /coffee traffic + +```text +Requests [total, rate, throughput] 48000, 100.00, 100.00 +Duration [total, attack, wait] 8m0s, 8m0s, 941.959µs +Latencies [min, mean, 50, 90, 95, 99, max] 477.995µs, 924.815µs, 927.873µs, 1.045ms, 1.087ms, 1.297ms, 10.334ms +Bytes In [total, mean] 7737532, 161.20 +Bytes Out [total, mean] 0, 0.00 +Success [ratio] 100.00% +Status Codes [code:count] 200:48000 +Error Set: +``` + +![gradual-scale-down-affinity-http-oss.png](gradual-scale-down-affinity-http-oss.png) + +### Scale Up Abruptly + +#### Test: Send https /tea traffic + +```text +Requests [total, rate, throughput] 12000, 100.01, 100.01 +Duration [total, attack, wait] 2m0s, 2m0s, 1.129ms +Latencies [min, mean, 50, 90, 95, 99, max] 558.902µs, 961.652µs, 956.724µs, 1.079ms, 1.125ms, 1.307ms, 8.716ms +Bytes In [total, mean] 1850359, 154.20 +Bytes Out [total, mean] 0, 0.00 +Success [ratio] 100.00% +Status Codes [code:count] 200:12000 +Error Set: +``` + +![abrupt-scale-up-affinity-https-oss.png](abrupt-scale-up-affinity-https-oss.png) + +#### Test: Send http /coffee traffic + +```text +Requests [total, rate, throughput] 12000, 100.01, 100.01 +Duration [total, attack, wait] 2m0s, 2m0s, 1.129ms +Latencies [min, mean, 50, 90, 95, 99, max] 536.485µs, 937.929µs, 936.882µs, 1.058ms, 1.105ms, 1.273ms, 9.489ms +Bytes In [total, mean] 1934397, 161.20 +Bytes Out [total, mean] 0, 0.00 +Success [ratio] 100.00% +Status Codes [code:count] 200:12000 +Error Set: +``` + +![abrupt-scale-up-affinity-http-oss.png](abrupt-scale-up-affinity-http-oss.png) + +### Scale Down Abruptly + +#### Test: Send https /tea traffic + +```text +Requests [total, rate, throughput] 12000, 100.01, 100.01 +Duration [total, attack, wait] 2m0s, 2m0s, 984.749µs +Latencies [min, mean, 50, 90, 95, 99, max] 509.834µs, 960.864µs, 956.885µs, 1.095ms, 1.143ms, 1.287ms, 5.948ms +Bytes In [total, mean] 1850461, 154.21 +Bytes Out [total, mean] 0, 0.00 +Success [ratio] 100.00% +Status Codes [code:count] 200:12000 +Error Set: +``` + +![abrupt-scale-down-affinity-https-oss.png](abrupt-scale-down-affinity-https-oss.png) + +#### Test: Send http /coffee traffic + +```text +Requests [total, rate, throughput] 12000, 100.01, 100.01 +Duration [total, attack, wait] 2m0s, 2m0s, 957.855µs +Latencies [min, mean, 50, 90, 95, 99, max] 513.691µs, 939.826µs, 942.697µs, 1.074ms, 1.125ms, 1.261ms, 6.953ms +Bytes In [total, mean] 1934384, 161.20 +Bytes Out [total, mean] 0, 0.00 +Success [ratio] 100.00% +Status Codes [code:count] 200:12000 +Error Set: +``` + +![abrupt-scale-down-affinity-http-oss.png](abrupt-scale-down-affinity-http-oss.png) + +## Multiple NGF Pods run per node Test Results + +### Scale Up Gradually + +#### Test: Send http /coffee traffic + +```text +Requests [total, rate, throughput] 30000, 100.00, 100.00 +Duration [total, attack, wait] 5m0s, 5m0s, 837.709µs +Latencies [min, mean, 50, 90, 95, 99, max] 471.832µs, 944.124µs, 940.377µs, 1.064ms, 1.115ms, 1.384ms, 16.213ms +Bytes In [total, mean] 4835768, 161.19 +Bytes Out [total, mean] 0, 0.00 +Success [ratio] 100.00% +Status Codes [code:count] 200:30000 +Error Set: +``` + +![gradual-scale-up-http-oss.png](gradual-scale-up-http-oss.png) + +#### Test: Send https /tea traffic + +```text +Requests [total, rate, throughput] 30000, 100.00, 100.00 +Duration [total, attack, wait] 5m0s, 5m0s, 932.757µs +Latencies [min, mean, 50, 90, 95, 99, max] 525.989µs, 969.247µs, 961.393µs, 1.093ms, 1.145ms, 1.413ms, 9.794ms +Bytes In [total, mean] 4625994, 154.20 +Bytes Out [total, mean] 0, 0.00 +Success [ratio] 100.00% +Status Codes [code:count] 200:30000 +Error Set: +``` + +![gradual-scale-up-https-oss.png](gradual-scale-up-https-oss.png) + +### Scale Down Gradually + +#### Test: Send http /coffee traffic + +```text +Requests [total, rate, throughput] 96000, 100.00, 100.00 +Duration [total, attack, wait] 16m0s, 16m0s, 1.031ms +Latencies [min, mean, 50, 90, 95, 99, max] 463.473µs, 918.692µs, 919.296µs, 1.037ms, 1.081ms, 1.306ms, 11.984ms +Bytes In [total, mean] 15475122, 161.20 +Bytes Out [total, mean] 0, 0.00 +Success [ratio] 100.00% +Status Codes [code:count] 200:96000 +Error Set: +``` + +![gradual-scale-down-http-oss.png](gradual-scale-down-http-oss.png) + +#### Test: Send https /tea traffic + +```text +Requests [total, rate, throughput] 96000, 100.00, 100.00 +Duration [total, attack, wait] 16m0s, 16m0s, 925.491µs +Latencies [min, mean, 50, 90, 95, 99, max] 495.684µs, 941.688µs, 936.431µs, 1.058ms, 1.107ms, 1.337ms, 23.817ms +Bytes In [total, mean] 14803423, 154.20 +Bytes Out [total, mean] 0, 0.00 +Success [ratio] 100.00% +Status Codes [code:count] 200:96000 +Error Set: +``` + +![gradual-scale-down-https-oss.png](gradual-scale-down-https-oss.png) + +### Scale Up Abruptly + +#### Test: Send http /coffee traffic + +```text +Requests [total, rate, throughput] 12000, 100.01, 100.01 +Duration [total, attack, wait] 2m0s, 2m0s, 700.716µs +Latencies [min, mean, 50, 90, 95, 99, max] 471.013µs, 921.398µs, 924.082µs, 1.046ms, 1.091ms, 1.25ms, 8.123ms +Bytes In [total, mean] 1934379, 161.20 +Bytes Out [total, mean] 0, 0.00 +Success [ratio] 100.00% +Status Codes [code:count] 200:12000 +Error Set: +``` + +![abrupt-scale-up-http-oss.png](abrupt-scale-up-http-oss.png) + +#### Test: Send https /tea traffic + +```text +Requests [total, rate, throughput] 12000, 100.01, 100.01 +Duration [total, attack, wait] 2m0s, 2m0s, 662.899µs +Latencies [min, mean, 50, 90, 95, 99, max] 472.835µs, 935.5µs, 935.142µs, 1.058ms, 1.107ms, 1.312ms, 8.081ms +Bytes In [total, mean] 1850425, 154.20 +Bytes Out [total, mean] 0, 0.00 +Success [ratio] 100.00% +Status Codes [code:count] 200:12000 +Error Set: +``` + +![abrupt-scale-up-https-oss.png](abrupt-scale-up-https-oss.png) + +### Scale Down Abruptly + +#### Test: Send https /tea traffic + +```text +Requests [total, rate, throughput] 12000, 100.01, 100.01 +Duration [total, attack, wait] 2m0s, 2m0s, 829.541µs +Latencies [min, mean, 50, 90, 95, 99, max] 439.527µs, 941.985µs, 941.659µs, 1.07ms, 1.113ms, 1.241ms, 6.466ms +Bytes In [total, mean] 1850388, 154.20 +Bytes Out [total, mean] 0, 0.00 +Success [ratio] 100.00% +Status Codes [code:count] 200:12000 +Error Set: +``` + +![abrupt-scale-down-https-oss.png](abrupt-scale-down-https-oss.png) + +#### Test: Send http /coffee traffic + +```text +Requests [total, rate, throughput] 12000, 100.01, 100.01 +Duration [total, attack, wait] 2m0s, 2m0s, 934.561µs +Latencies [min, mean, 50, 90, 95, 99, max] 491.245µs, 917.259µs, 921.304µs, 1.047ms, 1.09ms, 1.21ms, 4.294ms +Bytes In [total, mean] 1934387, 161.20 +Bytes Out [total, mean] 0, 0.00 +Success [ratio] 100.00% +Status Codes [code:count] 200:12000 +Error Set: +``` + +![abrupt-scale-down-http-oss.png](abrupt-scale-down-http-oss.png) diff --git a/tests/results/zero-downtime-scale/1.4.0/1.4.0-plus.md b/tests/results/zero-downtime-scale/1.4.0/1.4.0-plus.md new file mode 100644 index 000000000..147363aa6 --- /dev/null +++ b/tests/results/zero-downtime-scale/1.4.0/1.4.0-plus.md @@ -0,0 +1,286 @@ +# Results + +## Test environment + +NGINX Plus: true + +NGINX Gateway Fabric: + +- Commit: 16a95222a968aef46277a77070f79bea9b87da12 +- Date: 2024-08-16T15:29:44Z +- Dirty: false + +GKE Cluster: + +- Node count: 12 +- k8s version: v1.29.7-gke.1008000 +- vCPUs per node: 16 +- RAM per node: 65855012Ki +- Max pods per node: 110 +- Zone: us-west1-b +- Instance Type: n2d-standard-16 + +## Summary: + +- Results are going to look different this time due to automating this test. +- No errors seen + +## One NGF Pod runs per node Test Results + +### Scale Up Gradually + +#### Test: Send https /tea traffic + +```text +Requests [total, rate, throughput] 30000, 100.00, 100.00 +Duration [total, attack, wait] 5m0s, 5m0s, 997.429µs +Latencies [min, mean, 50, 90, 95, 99, max] 487.981µs, 917.751µs, 916.807µs, 1.03ms, 1.075ms, 1.288ms, 11.558ms +Bytes In [total, mean] 4652931, 155.10 +Bytes Out [total, mean] 0, 0.00 +Success [ratio] 100.00% +Status Codes [code:count] 200:30000 +Error Set: +``` + +![gradual-scale-up-affinity-https-plus.png](gradual-scale-up-affinity-https-plus.png) + +#### Test: Send http /coffee traffic + +```text +Requests [total, rate, throughput] 30000, 100.00, 100.00 +Duration [total, attack, wait] 5m0s, 5m0s, 1.167ms +Latencies [min, mean, 50, 90, 95, 99, max] 455.747µs, 907.009µs, 906.441µs, 1.018ms, 1.061ms, 1.338ms, 13.555ms +Bytes In [total, mean] 4862949, 162.10 +Bytes Out [total, mean] 0, 0.00 +Success [ratio] 100.00% +Status Codes [code:count] 200:30000 +Error Set: +``` + +![gradual-scale-up-affinity-http-plus.png](gradual-scale-up-affinity-http-plus.png) + +### Scale Down Gradually + +#### Test: Send http /coffee traffic + +```text +Requests [total, rate, throughput] 48000, 100.00, 100.00 +Duration [total, attack, wait] 8m0s, 8m0s, 826.387µs +Latencies [min, mean, 50, 90, 95, 99, max] 452.094µs, 912.773µs, 911.561µs, 1.032ms, 1.077ms, 1.313ms, 35.906ms +Bytes In [total, mean] 7780873, 162.10 +Bytes Out [total, mean] 0, 0.00 +Success [ratio] 100.00% +Status Codes [code:count] 200:48000 +Error Set: +``` + +![gradual-scale-down-affinity-http-plus.png](gradual-scale-down-affinity-http-plus.png) + +#### Test: Send https /tea traffic + +```text +Requests [total, rate, throughput] 48000, 100.00, 100.00 +Duration [total, attack, wait] 8m0s, 8m0s, 934.651µs +Latencies [min, mean, 50, 90, 95, 99, max] 483.458µs, 939.72µs, 933.477µs, 1.06ms, 1.11ms, 1.343ms, 12.382ms +Bytes In [total, mean] 7444826, 155.10 +Bytes Out [total, mean] 0, 0.00 +Success [ratio] 100.00% +Status Codes [code:count] 200:48000 +Error Set: +``` + +![gradual-scale-down-affinity-https-plus.png](gradual-scale-down-affinity-https-plus.png) + +### Scale Up Abruptly + +#### Test: Send https /tea traffic + +```text +Requests [total, rate, throughput] 12000, 100.01, 100.01 +Duration [total, attack, wait] 2m0s, 2m0s, 787.928µs +Latencies [min, mean, 50, 90, 95, 99, max] 503.486µs, 916.519µs, 914.367µs, 1.033ms, 1.083ms, 1.286ms, 6.45ms +Bytes In [total, mean] 1861240, 155.10 +Bytes Out [total, mean] 0, 0.00 +Success [ratio] 100.00% +Status Codes [code:count] 200:12000 +Error Set: +``` + +![abrupt-scale-up-affinity-https-plus.png](abrupt-scale-up-affinity-https-plus.png) + +#### Test: Send http /coffee traffic + +```text +Requests [total, rate, throughput] 12000, 100.01, 100.01 +Duration [total, attack, wait] 2m0s, 2m0s, 808.614µs +Latencies [min, mean, 50, 90, 95, 99, max] 482.502µs, 881.536µs, 885.899µs, 999.696µs, 1.04ms, 1.235ms, 5.311ms +Bytes In [total, mean] 1945219, 162.10 +Bytes Out [total, mean] 0, 0.00 +Success [ratio] 100.00% +Status Codes [code:count] 200:12000 +Error Set: +``` + +![abrupt-scale-up-affinity-http-plus.png](abrupt-scale-up-affinity-http-plus.png) + +### Scale Down Abruptly + +#### Test: Send https /tea traffic + +```text +Requests [total, rate, throughput] 12000, 100.01, 100.01 +Duration [total, attack, wait] 2m0s, 2m0s, 884.416µs +Latencies [min, mean, 50, 90, 95, 99, max] 520.845µs, 934.391µs, 934.513µs, 1.062ms, 1.107ms, 1.259ms, 7.428ms +Bytes In [total, mean] 1861200, 155.10 +Bytes Out [total, mean] 0, 0.00 +Success [ratio] 100.00% +Status Codes [code:count] 200:12000 +Error Set: +``` + +![abrupt-scale-down-affinity-https-plus.png](abrupt-scale-down-affinity-https-plus.png) + +#### Test: Send http /coffee traffic + +```text +Requests [total, rate, throughput] 12000, 100.01, 100.01 +Duration [total, attack, wait] 2m0s, 2m0s, 854.529µs +Latencies [min, mean, 50, 90, 95, 99, max] 501.951µs, 914.937µs, 919.559µs, 1.041ms, 1.086ms, 1.236ms, 10.345ms +Bytes In [total, mean] 1945212, 162.10 +Bytes Out [total, mean] 0, 0.00 +Success [ratio] 100.00% +Status Codes [code:count] 200:12000 +Error Set: +``` + +![abrupt-scale-down-affinity-http-plus.png](abrupt-scale-down-affinity-http-plus.png) + +## Multiple NGF Pods run per node Test Results + +### Scale Up Gradually + +#### Test: Send http /coffee traffic + +```text +Requests [total, rate, throughput] 30000, 100.00, 100.00 +Duration [total, attack, wait] 5m0s, 5m0s, 878.612µs +Latencies [min, mean, 50, 90, 95, 99, max] 458.789µs, 898.195µs, 898.053µs, 1.019ms, 1.065ms, 1.343ms, 13.466ms +Bytes In [total, mean] 4862959, 162.10 +Bytes Out [total, mean] 0, 0.00 +Success [ratio] 100.00% +Status Codes [code:count] 200:30000 +Error Set: +``` + +![gradual-scale-up-http-plus.png](gradual-scale-up-http-plus.png) + +#### Test: Send https /tea traffic + +```text +Requests [total, rate, throughput] 30000, 100.00, 100.00 +Duration [total, attack, wait] 5m0s, 5m0s, 902.591µs +Latencies [min, mean, 50, 90, 95, 99, max] 473.201µs, 929.404µs, 921.051µs, 1.042ms, 1.092ms, 1.398ms, 13.013ms +Bytes In [total, mean] 4652995, 155.10 +Bytes Out [total, mean] 0, 0.00 +Success [ratio] 100.00% +Status Codes [code:count] 200:30000 +Error Set: +``` + +![gradual-scale-up-https-plus.png](gradual-scale-up-https-plus.png) + +### Scale Down Gradually + +#### Test: Send http /coffee traffic + +```text +Requests [total, rate, throughput] 96000, 100.00, 100.00 +Duration [total, attack, wait] 16m0s, 16m0s, 874.918µs +Latencies [min, mean, 50, 90, 95, 99, max] 416.818µs, 872.886µs, 875.578µs, 990.461µs, 1.032ms, 1.293ms, 12.454ms +Bytes In [total, mean] 15561692, 162.10 +Bytes Out [total, mean] 0, 0.00 +Success [ratio] 100.00% +Status Codes [code:count] 200:96000 +Error Set: +``` + +![gradual-scale-down-http-plus.png](gradual-scale-down-http-plus.png) + +#### Test: Send https /tea traffic + +```text +Requests [total, rate, throughput] 96000, 100.00, 100.00 +Duration [total, attack, wait] 16m0s, 16m0s, 883.348µs +Latencies [min, mean, 50, 90, 95, 99, max] 458.398µs, 901.365µs, 897.244µs, 1.015ms, 1.061ms, 1.323ms, 10.932ms +Bytes In [total, mean] 14889455, 155.10 +Bytes Out [total, mean] 0, 0.00 +Success [ratio] 100.00% +Status Codes [code:count] 200:96000 +Error Set: +``` + +![gradual-scale-down-https-plus.png](gradual-scale-down-https-plus.png) + +### Scale Up Abruptly + +#### Test: Send http /coffee traffic + +```text +Requests [total, rate, throughput] 12000, 100.01, 100.01 +Duration [total, attack, wait] 2m0s, 2m0s, 874.976µs +Latencies [min, mean, 50, 90, 95, 99, max] 448.611µs, 874.103µs, 874.924µs, 992.459µs, 1.032ms, 1.265ms, 5.75ms +Bytes In [total, mean] 1945215, 162.10 +Bytes Out [total, mean] 0, 0.00 +Success [ratio] 100.00% +Status Codes [code:count] 200:12000 +Error Set: +``` + +![abrupt-scale-up-http-plus.png](abrupt-scale-up-http-plus.png) + +#### Test: Send https /tea traffic + +```text +Requests [total, rate, throughput] 12000, 100.01, 100.01 +Duration [total, attack, wait] 2m0s, 2m0s, 867.934µs +Latencies [min, mean, 50, 90, 95, 99, max] 471.009µs, 897.833µs, 892.857µs, 1.008ms, 1.057ms, 1.295ms, 12.271ms +Bytes In [total, mean] 1861225, 155.10 +Bytes Out [total, mean] 0, 0.00 +Success [ratio] 100.00% +Status Codes [code:count] 200:12000 +Error Set: +``` + +![abrupt-scale-up-https-plus.png](abrupt-scale-up-https-plus.png) + +### Scale Down Abruptly + +#### Test: Send https /tea traffic + +```text +Requests [total, rate, throughput] 12000, 100.01, 100.01 +Duration [total, attack, wait] 2m0s, 2m0s, 996.012µs +Latencies [min, mean, 50, 90, 95, 99, max] 475.971µs, 891.505µs, 889.265µs, 1.017ms, 1.063ms, 1.245ms, 5.751ms +Bytes In [total, mean] 1861175, 155.10 +Bytes Out [total, mean] 0, 0.00 +Success [ratio] 100.00% +Status Codes [code:count] 200:12000 +Error Set: +``` + +![abrupt-scale-down-https-plus.png](abrupt-scale-down-https-plus.png) + +#### Test: Send http /coffee traffic + +```text +Requests [total, rate, throughput] 12000, 100.01, 100.01 +Duration [total, attack, wait] 2m0s, 2m0s, 1.016ms +Latencies [min, mean, 50, 90, 95, 99, max] 461.369µs, 871.683µs, 870.518µs, 993.054µs, 1.036ms, 1.182ms, 23.12ms +Bytes In [total, mean] 1945180, 162.10 +Bytes Out [total, mean] 0, 0.00 +Success [ratio] 100.00% +Status Codes [code:count] 200:12000 +Error Set: +``` + +![abrupt-scale-down-http-plus.png](abrupt-scale-down-http-plus.png) diff --git a/tests/results/zero-downtime-scale/1.4.0/abrupt-scale-down-affinity-http-oss.png b/tests/results/zero-downtime-scale/1.4.0/abrupt-scale-down-affinity-http-oss.png new file mode 100644 index 000000000..f423a8a14 Binary files /dev/null and b/tests/results/zero-downtime-scale/1.4.0/abrupt-scale-down-affinity-http-oss.png differ diff --git a/tests/results/zero-downtime-scale/1.4.0/abrupt-scale-down-affinity-http-plus.png b/tests/results/zero-downtime-scale/1.4.0/abrupt-scale-down-affinity-http-plus.png new file mode 100644 index 000000000..7768f90b8 Binary files /dev/null and b/tests/results/zero-downtime-scale/1.4.0/abrupt-scale-down-affinity-http-plus.png differ diff --git a/tests/results/zero-downtime-scale/1.4.0/abrupt-scale-down-affinity-https-oss.png b/tests/results/zero-downtime-scale/1.4.0/abrupt-scale-down-affinity-https-oss.png new file mode 100644 index 000000000..f423a8a14 Binary files /dev/null and b/tests/results/zero-downtime-scale/1.4.0/abrupt-scale-down-affinity-https-oss.png differ diff --git a/tests/results/zero-downtime-scale/1.4.0/abrupt-scale-down-affinity-https-plus.png b/tests/results/zero-downtime-scale/1.4.0/abrupt-scale-down-affinity-https-plus.png new file mode 100644 index 000000000..7768f90b8 Binary files /dev/null and b/tests/results/zero-downtime-scale/1.4.0/abrupt-scale-down-affinity-https-plus.png differ diff --git a/tests/results/zero-downtime-scale/1.4.0/abrupt-scale-down-http-oss.png b/tests/results/zero-downtime-scale/1.4.0/abrupt-scale-down-http-oss.png new file mode 100644 index 000000000..80d0261b4 Binary files /dev/null and b/tests/results/zero-downtime-scale/1.4.0/abrupt-scale-down-http-oss.png differ diff --git a/tests/results/zero-downtime-scale/1.4.0/abrupt-scale-down-http-plus.png b/tests/results/zero-downtime-scale/1.4.0/abrupt-scale-down-http-plus.png new file mode 100644 index 000000000..ee3f2b0a1 Binary files /dev/null and b/tests/results/zero-downtime-scale/1.4.0/abrupt-scale-down-http-plus.png differ diff --git a/tests/results/zero-downtime-scale/1.4.0/abrupt-scale-down-https-oss.png b/tests/results/zero-downtime-scale/1.4.0/abrupt-scale-down-https-oss.png new file mode 100644 index 000000000..80d0261b4 Binary files /dev/null and b/tests/results/zero-downtime-scale/1.4.0/abrupt-scale-down-https-oss.png differ diff --git a/tests/results/zero-downtime-scale/1.4.0/abrupt-scale-down-https-plus.png b/tests/results/zero-downtime-scale/1.4.0/abrupt-scale-down-https-plus.png new file mode 100644 index 000000000..ee3f2b0a1 Binary files /dev/null and b/tests/results/zero-downtime-scale/1.4.0/abrupt-scale-down-https-plus.png differ diff --git a/tests/results/zero-downtime-scale/1.4.0/abrupt-scale-up-affinity-http-oss.png b/tests/results/zero-downtime-scale/1.4.0/abrupt-scale-up-affinity-http-oss.png new file mode 100644 index 000000000..d88f5c043 Binary files /dev/null and b/tests/results/zero-downtime-scale/1.4.0/abrupt-scale-up-affinity-http-oss.png differ diff --git a/tests/results/zero-downtime-scale/1.4.0/abrupt-scale-up-affinity-http-plus.png b/tests/results/zero-downtime-scale/1.4.0/abrupt-scale-up-affinity-http-plus.png new file mode 100644 index 000000000..ac55da1a0 Binary files /dev/null and b/tests/results/zero-downtime-scale/1.4.0/abrupt-scale-up-affinity-http-plus.png differ diff --git a/tests/results/zero-downtime-scale/1.4.0/abrupt-scale-up-affinity-https-oss.png b/tests/results/zero-downtime-scale/1.4.0/abrupt-scale-up-affinity-https-oss.png new file mode 100644 index 000000000..d88f5c043 Binary files /dev/null and b/tests/results/zero-downtime-scale/1.4.0/abrupt-scale-up-affinity-https-oss.png differ diff --git a/tests/results/zero-downtime-scale/1.4.0/abrupt-scale-up-affinity-https-plus.png b/tests/results/zero-downtime-scale/1.4.0/abrupt-scale-up-affinity-https-plus.png new file mode 100644 index 000000000..ac55da1a0 Binary files /dev/null and b/tests/results/zero-downtime-scale/1.4.0/abrupt-scale-up-affinity-https-plus.png differ diff --git a/tests/results/zero-downtime-scale/1.4.0/abrupt-scale-up-http-oss.png b/tests/results/zero-downtime-scale/1.4.0/abrupt-scale-up-http-oss.png new file mode 100644 index 000000000..140fd718e Binary files /dev/null and b/tests/results/zero-downtime-scale/1.4.0/abrupt-scale-up-http-oss.png differ diff --git a/tests/results/zero-downtime-scale/1.4.0/abrupt-scale-up-http-plus.png b/tests/results/zero-downtime-scale/1.4.0/abrupt-scale-up-http-plus.png new file mode 100644 index 000000000..eba8b17dc Binary files /dev/null and b/tests/results/zero-downtime-scale/1.4.0/abrupt-scale-up-http-plus.png differ diff --git a/tests/results/zero-downtime-scale/1.4.0/abrupt-scale-up-https-oss.png b/tests/results/zero-downtime-scale/1.4.0/abrupt-scale-up-https-oss.png new file mode 100644 index 000000000..140fd718e Binary files /dev/null and b/tests/results/zero-downtime-scale/1.4.0/abrupt-scale-up-https-oss.png differ diff --git a/tests/results/zero-downtime-scale/1.4.0/abrupt-scale-up-https-plus.png b/tests/results/zero-downtime-scale/1.4.0/abrupt-scale-up-https-plus.png new file mode 100644 index 000000000..eba8b17dc Binary files /dev/null and b/tests/results/zero-downtime-scale/1.4.0/abrupt-scale-up-https-plus.png differ diff --git a/tests/results/zero-downtime-scale/1.4.0/gradual-scale-down-affinity-http-oss.png b/tests/results/zero-downtime-scale/1.4.0/gradual-scale-down-affinity-http-oss.png new file mode 100644 index 000000000..f74c65fee Binary files /dev/null and b/tests/results/zero-downtime-scale/1.4.0/gradual-scale-down-affinity-http-oss.png differ diff --git a/tests/results/zero-downtime-scale/1.4.0/gradual-scale-down-affinity-http-plus.png b/tests/results/zero-downtime-scale/1.4.0/gradual-scale-down-affinity-http-plus.png new file mode 100644 index 000000000..f24073910 Binary files /dev/null and b/tests/results/zero-downtime-scale/1.4.0/gradual-scale-down-affinity-http-plus.png differ diff --git a/tests/results/zero-downtime-scale/1.4.0/gradual-scale-down-affinity-https-oss.png b/tests/results/zero-downtime-scale/1.4.0/gradual-scale-down-affinity-https-oss.png new file mode 100644 index 000000000..f74c65fee Binary files /dev/null and b/tests/results/zero-downtime-scale/1.4.0/gradual-scale-down-affinity-https-oss.png differ diff --git a/tests/results/zero-downtime-scale/1.4.0/gradual-scale-down-affinity-https-plus.png b/tests/results/zero-downtime-scale/1.4.0/gradual-scale-down-affinity-https-plus.png new file mode 100644 index 000000000..f24073910 Binary files /dev/null and b/tests/results/zero-downtime-scale/1.4.0/gradual-scale-down-affinity-https-plus.png differ diff --git a/tests/results/zero-downtime-scale/1.4.0/gradual-scale-down-http-oss.png b/tests/results/zero-downtime-scale/1.4.0/gradual-scale-down-http-oss.png new file mode 100644 index 000000000..d2a952642 Binary files /dev/null and b/tests/results/zero-downtime-scale/1.4.0/gradual-scale-down-http-oss.png differ diff --git a/tests/results/zero-downtime-scale/1.4.0/gradual-scale-down-http-plus.png b/tests/results/zero-downtime-scale/1.4.0/gradual-scale-down-http-plus.png new file mode 100644 index 000000000..5e8386c2f Binary files /dev/null and b/tests/results/zero-downtime-scale/1.4.0/gradual-scale-down-http-plus.png differ diff --git a/tests/results/zero-downtime-scale/1.4.0/gradual-scale-down-https-oss.png b/tests/results/zero-downtime-scale/1.4.0/gradual-scale-down-https-oss.png new file mode 100644 index 000000000..d2a952642 Binary files /dev/null and b/tests/results/zero-downtime-scale/1.4.0/gradual-scale-down-https-oss.png differ diff --git a/tests/results/zero-downtime-scale/1.4.0/gradual-scale-down-https-plus.png b/tests/results/zero-downtime-scale/1.4.0/gradual-scale-down-https-plus.png new file mode 100644 index 000000000..5e8386c2f Binary files /dev/null and b/tests/results/zero-downtime-scale/1.4.0/gradual-scale-down-https-plus.png differ diff --git a/tests/results/zero-downtime-scale/1.4.0/gradual-scale-up-affinity-http-oss.png b/tests/results/zero-downtime-scale/1.4.0/gradual-scale-up-affinity-http-oss.png new file mode 100644 index 000000000..99d742fe4 Binary files /dev/null and b/tests/results/zero-downtime-scale/1.4.0/gradual-scale-up-affinity-http-oss.png differ diff --git a/tests/results/zero-downtime-scale/1.4.0/gradual-scale-up-affinity-http-plus.png b/tests/results/zero-downtime-scale/1.4.0/gradual-scale-up-affinity-http-plus.png new file mode 100644 index 000000000..76a49633b Binary files /dev/null and b/tests/results/zero-downtime-scale/1.4.0/gradual-scale-up-affinity-http-plus.png differ diff --git a/tests/results/zero-downtime-scale/1.4.0/gradual-scale-up-affinity-https-oss.png b/tests/results/zero-downtime-scale/1.4.0/gradual-scale-up-affinity-https-oss.png new file mode 100644 index 000000000..99d742fe4 Binary files /dev/null and b/tests/results/zero-downtime-scale/1.4.0/gradual-scale-up-affinity-https-oss.png differ diff --git a/tests/results/zero-downtime-scale/1.4.0/gradual-scale-up-affinity-https-plus.png b/tests/results/zero-downtime-scale/1.4.0/gradual-scale-up-affinity-https-plus.png new file mode 100644 index 000000000..76a49633b Binary files /dev/null and b/tests/results/zero-downtime-scale/1.4.0/gradual-scale-up-affinity-https-plus.png differ diff --git a/tests/results/zero-downtime-scale/1.4.0/gradual-scale-up-http-oss.png b/tests/results/zero-downtime-scale/1.4.0/gradual-scale-up-http-oss.png new file mode 100644 index 000000000..11dce795a Binary files /dev/null and b/tests/results/zero-downtime-scale/1.4.0/gradual-scale-up-http-oss.png differ diff --git a/tests/results/zero-downtime-scale/1.4.0/gradual-scale-up-http-plus.png b/tests/results/zero-downtime-scale/1.4.0/gradual-scale-up-http-plus.png new file mode 100644 index 000000000..cb154e467 Binary files /dev/null and b/tests/results/zero-downtime-scale/1.4.0/gradual-scale-up-http-plus.png differ diff --git a/tests/results/zero-downtime-scale/1.4.0/gradual-scale-up-https-oss.png b/tests/results/zero-downtime-scale/1.4.0/gradual-scale-up-https-oss.png new file mode 100644 index 000000000..11dce795a Binary files /dev/null and b/tests/results/zero-downtime-scale/1.4.0/gradual-scale-up-https-oss.png differ diff --git a/tests/results/zero-downtime-scale/1.4.0/gradual-scale-up-https-plus.png b/tests/results/zero-downtime-scale/1.4.0/gradual-scale-up-https-plus.png new file mode 100644 index 000000000..cb154e467 Binary files /dev/null and b/tests/results/zero-downtime-scale/1.4.0/gradual-scale-up-https-plus.png differ