Open AndreiBanaruTakeda opened 2 months ago
Image I'm using: v1.3.0
Issue or Feature Request: In order for the Splunk otel-collector to scrape the metrics from the brupop-controller-deployment pods, the pods need to be annotated:
brupop-controller-deployment
prometheus.io/port: "8080" prometheus.io/scrape: "true"
I see service/brupop-controller-server is annotated with the above, but Splunk looks for those annotations at the pod level.
service/brupop-controller-server
Proposal is to add the annotations in the deployment/brupop-controller-deployment:
deployment/brupop-controller-deployment
spec: template: metadata: annotations: prometheus.io/port: "8080" prometheus.io/scrape: "true"
Testing executed:
deploy/brupop-controller-deployment
kubectl rollout restart deployment brupop-controller-deployment
scheduler_cron_expression
Image I'm using: v1.3.0
Issue or Feature Request: In order for the Splunk otel-collector to scrape the metrics from the
brupop-controller-deployment
pods, the pods need to be annotated:I see
service/brupop-controller-server
is annotated with the above, but Splunk looks for those annotations at the pod level.Proposal is to add the annotations in the
deployment/brupop-controller-deployment
:Testing executed:
deploy/brupop-controller-deployment
and added the above annotationskubectl rollout restart deployment brupop-controller-deployment
scheduler_cron_expression
for metrics to become available