Hi
@Nagesh Bansal
1. yes. I have prometheus running in my cluster which is scrapping infra metrics and it has integration with db as well, so planning to use that.
2. CORS config. I had individual endpoints for origin, but switched to wildcard since everyone started to report CORS when hitting /v1/logs. Primarily I had CORS when sending traces but below config had fix that error. CORS is a domain specific error, and trace and logs are being sent on the same endpoint so it should not generate CORS error. I understand that I can use k8s infra and have my EKS services send logs to Signoz but my frontend does not run on EKS.
otelCollector:
config:
receivers:
otlp:
protocols:
http:
cors:
allowed_origins:
- "*"