This message was deleted.
# support
s
This message was deleted.
s
This is my
ingress
spec
Copy code
spec:
  ingressClassName: nginx
  rules:
  - host: <http://otelcollector.mydomain.com|otelcollector.mydomain.com>
    http:
      paths:
      - backend:
          service:
            name: rollstack-signoz-otel-collector
            port:
              number: 4317
        path: /
        pathType: ImplementationSpecific
I am using port
4317
which should be the
grpc
port, right? so it’s a grpc to grpc connection but I don’t get why it’s failing anyone knows ?
v
In cases of some SDKs, you would have to include
https://
prefix for
OTEL_EXPORTER_OTLP_ENDPOINT
@Saad Bahir Please try with appending
https
in host URL
s
thank you!!! it worked!!!
🙌 1