Jorge Turrado Ferrero
Jorge Turrado Ferrero
Hello, Could you share KEDA operator logs, HTTP add-on interceptor logs? What error do you see in the request?
The interceptor hasn't received any request. Could you double check the connections? If everything looks well, could you share all the related manifests? - ingress - external service - your...
> The interceptor hasn't received any request. Could you double check the connections? If everything looks well, could you share all the related manifests? > > * ingress > *...
I only see 2 request in the interceptor: ```bash {"level":"info","ts":1714551507.0846822,"logger":"LoggingMiddleware","caller":"middleware/logging.go:73","msg":"127.0.0.1:51490 - - [01/May/2024:08:18:27 +0000] \"GET / HTTP/1.1\" 404 9 \"\" \"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko)...
Assuming that you HTTPScaledObject sets `myhost.com` as a host, you can try this: ```bash curl -H `Host: myhost.com` http://127.0.0.1/favicon.ico ``` and that should trigger the scaling out and give you...
Powershell doesn't have a real curl command, that's why you see that error. I'm not a PW expert, but I think that this should be equivalent: ```powershell $headers = @{...
The other option can be [editing the host file](https://docs.digitalocean.com/products/paperspace/machines/how-to/edit-windows-hosts-file/) to include a mapping between your host and 127.0.0.1. Calling directly to the IP address without any host won't work as...
oh, yeah, you should use the port too. About the path, my example was with favicon because I saw that path in logs, but you can use the path that...
Do you want to generate the load from your laptop directly? I suggest using ab within cluster
```yaml apiVersion: batch/v1 kind: Job metadata: name: load-generator namespace: WHERE_YOU_WANT spec: template: spec: containers: - name: apache-ab image: ghcr.io/kedacore/tests-apache-ab imagePullPolicy: Always args: - "-n" - "20000" #Total requests - "-c"...