Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,10 @@ spec:
app: ai-agent-orchestrator
template:
metadata:
annotations:
prometheus.io/scrape: "true"
prometheus.io/path: "/metrics"
prometheus.io/port: "8080"
labels:
app: ai-agent-orchestrator
workload: ai
Expand Down
4 changes: 4 additions & 0 deletions kustomize/ai-platform/base/ai-agent-orchestrator-service.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,3 +34,7 @@ spec:
- name: http
port: 8080
targetPort: http
- name: http-metrics
port: 15020
protocol: TCP
targetPort: 15020
4 changes: 4 additions & 0 deletions kustomize/ai-platform/base/ai-llm-gateway-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,10 @@ spec:
app: ai-llm-gateway
template:
metadata:
annotations:
prometheus.io/scrape: "true"
prometheus.io/path: "/metrics"
prometheus.io/port: "8080"
labels:
app: ai-llm-gateway
workload: ai
Expand Down
4 changes: 4 additions & 0 deletions kustomize/ai-platform/base/ai-llm-gateway-service.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,3 +34,7 @@ spec:
- name: http
port: 8080
targetPort: http
- name: http-metrics
port: 15020
protocol: TCP
targetPort: 15020
4 changes: 2 additions & 2 deletions kustomize/ai-platform/base/servicemonitor-ai.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,6 @@ spec:
matchNames:
- ai
endpoints:
- port: http
path: /metrics
- port: http-metrics
path: /stats/prometheus
interval: 30s
Loading