Ari-suhyeon opened a new issue, #11108: URL: https://github.com/apache/apisix/issues/11108
### Description I installed apisix on EKS with helm chart (apisix-2.6.0, APP VERSION 3.8.0). After changing the deployment replicas of apisix from 1 to 10, I noticed that the metrics went up even though I didn't load test them. Why is this happening?  helm values.yaml ```yaml ingress-controller: enabled: true config: apisix: serviceNamespace: apisix apisix: plugins: - prometheus - public-api pluginAttrs: prometheus: export_uri: /apisix/prometheus/metrics metric_prefix: apisix_ enable_export_server: true export_addr: ip: 0.0.0.0 port: 9091 prefer_name: true metrics: serviceMonitor: enabled: true namespace: apisix name: apisix-service-monitor interval: "15s" service: type: LoadBalancer resources: limits: memory: "2Gi" cpu: "2" requests: memory: "2Gi" cpu: "2" ``` resource.yaml ```yaml apiVersion: apps/v1 kind: Deployment metadata: namespace: apisix name: test-dp labels: app: test spec: replicas: 1 selector: matchLabels: app: test template: metadata: labels: app: test spec: containers: ... --- apiVersion: v1 kind: Service metadata: namespace: apisix name: test-svc spec: selector: app: test ports: - protocol: TCP port: 80 targetPort: 3100 --- apiVersion: apisix.apache.org/v2 kind: ApisixRoute metadata: namespace: apisix name: apisix-route spec: http: - name: port-route match: hosts: - XXXXX paths: - /* backends: - serviceName: test-svc servicePort: 80 ``` ### Environment - APISIX version (run `apisix version`): - Operating system (run `uname -a`): - OpenResty / Nginx version (run `openresty -V` or `nginx -V`): - etcd version, if relevant (run `curl http://127.0.0.1:9090/v1/server_info`): - APISIX Dashboard version, if relevant: - Plugin runner version, for issues related to plugin runners: - LuaRocks version, for installation issues (run `luarocks --version`): -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
