Slackbot
08/18/2023, 8:33 AMShivanshu Raj Shrivastava
08/18/2023, 10:20 AMsignoz collector
?
AFAIK, by default it is configured as ClusterIP
(see charts)
In your case, you're trying to access the collector out of the same Kubernetes Cluster.
I'd suggest configuring the collector service as either loadBalancer
or nodePort
, if you're sending huge data, I'd recommend configuring as loadBalancer
See https://kubernetes.io/docs/concepts/services-networking/service/#loadbalancer on how to configure your service.Avinash Bhawnani
08/18/2023, 10:23 AM# OtelCollector service
service:
# -- Annotations to use by service associated to OtelCollector
annotations: {}
# -- Service Type: LoadBalancer (allows external access) or NodePort (more secure, no extra cost)
type: NodePort
Shivanshu Raj Shrivastava
08/18/2023, 10:26 AMAvinash Bhawnani
08/18/2023, 10:28 AMShivanshu Raj Shrivastava
08/18/2023, 10:31 AMAvinash Bhawnani
08/18/2023, 10:34 AMSiva Kalyan Chintakana
08/20/2023, 8:07 PM