Skip to content

Commit e907365

Browse files
author
popagruia
committed
merge main
1 parent df65d94 commit e907365

File tree

1 file changed

+39
-0
lines changed

1 file changed

+39
-0
lines changed

charts/mcp-stack/values.schema.json

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -132,6 +132,45 @@
132132
"maximum": 65535,
133133
"default": 4444
134134
},
135+
"metrics": {
136+
"type": "object",
137+
"description": "Metrics configuration",
138+
"properties": {
139+
"enabled": {
140+
"type": "boolean",
141+
"description": "Enable metrics collection",
142+
"default": true
143+
},
144+
"port": {
145+
"type": "integer",
146+
"description": "Metrics port",
147+
"minimum": 1,
148+
"maximum": 65535,
149+
"default": 8000
150+
},
151+
"serviceMonitor": {
152+
"type": "object",
153+
"description": "ServiceMonitor configuration for Prometheus",
154+
"properties": {
155+
"enabled": {
156+
"type": "boolean",
157+
"description": "Enable ServiceMonitor",
158+
"default": true
159+
}
160+
},
161+
"additionalProperties": false
162+
},
163+
"customLabels": {
164+
"type": "object",
165+
"description": "Custom labels for metrics",
166+
"additionalProperties": {
167+
"type": "string"
168+
},
169+
"default": {}
170+
}
171+
},
172+
"additionalProperties": false
173+
},
135174
"probes": {
136175
"type": "object",
137176
"description": "Health probe configuration",

0 commit comments

Comments
 (0)