Skip to content

Commit 3c11e5b

Browse files
Allow to customize the metrics port of the ServiceMonitor (#228)
fixes #221 Signed-off-by: Philipp Eckel <[email protected]>
1 parent 963ffa5 commit 3c11e5b

File tree

6 files changed

+32
-5
lines changed

6 files changed

+32
-5
lines changed

charts/backstage/Chart.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,4 +38,4 @@ sources:
3838
# This is the chart version. This version number should be incremented each time you make changes
3939
# to the chart and its templates, including the app version.
4040
# Versions are expected to follow Semantic Versioning (https://semver.org/)
41-
version: 2.0.0
41+
version: 2.1.0

charts/backstage/README.md

+4-3
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# Backstage Helm Chart
33

44
[![Artifact Hub](https://img.shields.io/endpoint?url=https://artifacthub.io/badge/repository/backstage)](https://artifacthub.io/packages/search?repo=backstage)
5-
![Version: 2.0.0](https://img.shields.io/badge/Version-2.0.0-informational?style=flat-square)
5+
![Version: 2.1.0](https://img.shields.io/badge/Version-2.1.0-informational?style=flat-square)
66
![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square)
77

88
A Helm chart for deploying a Backstage application
@@ -171,13 +171,14 @@ Kubernetes: `>= 1.19.0-0`
171171
| ingress.tls.enabled | Enable TLS configuration for the host defined at `ingress.host` parameter | bool | `false` |
172172
| ingress.tls.secretName | The name to which the TLS Secret will be called | string | `""` |
173173
| kubeVersion | Override Kubernetes version | string | `""` |
174-
| metrics | Metrics configuration | object | `{"serviceMonitor":{"annotations":{},"enabled":false,"interval":null,"labels":{},"path":"/metrics"}}` |
175-
| metrics.serviceMonitor | ServiceMonitor configuration <br /> Allows configuring your backstage instance as a scrape target for [Prometheus](https://github.com/prometheus/prometheus) using a ServiceMonitor custom resource that [Prometheus Operator](https://github.com/prometheus-operator/prometheus-operator) can understand. | object | `{"annotations":{},"enabled":false,"interval":null,"labels":{},"path":"/metrics"}` |
174+
| metrics | Metrics configuration | object | `{"serviceMonitor":{"annotations":{},"enabled":false,"interval":null,"labels":{},"path":"/metrics","port":"http-backend"}}` |
175+
| metrics.serviceMonitor | ServiceMonitor configuration <br /> Allows configuring your backstage instance as a scrape target for [Prometheus](https://github.com/prometheus/prometheus) using a ServiceMonitor custom resource that [Prometheus Operator](https://github.com/prometheus-operator/prometheus-operator) can understand. | object | `{"annotations":{},"enabled":false,"interval":null,"labels":{},"path":"/metrics","port":"http-backend"}` |
176176
| metrics.serviceMonitor.annotations | ServiceMonitor annotations | object | `{}` |
177177
| metrics.serviceMonitor.enabled | If enabled, a ServiceMonitor resource for Prometheus Operator is created <br /> Prometheus Operator must be installed in your cluster prior to enabling. | bool | `false` |
178178
| metrics.serviceMonitor.interval | ServiceMonitor scrape interval | string | `nil` |
179179
| metrics.serviceMonitor.labels | Additional ServiceMonitor labels | object | `{}` |
180180
| metrics.serviceMonitor.path | ServiceMonitor endpoint path <br /> Note that the /metrics endpoint is NOT present in a freshly scaffolded Backstage app. To setup, follow the [Prometheus metrics tutorial](https://github.com/backstage/backstage/blob/master/contrib/docs/tutorials/prometheus-metrics.md). | string | `"/metrics"` |
181+
| metrics.serviceMonitor.port | ServiceMonitor endpoint port <br /> The port where the metrics are exposed. If using OpenTelemetry as [documented here](https://backstage.io/docs/tutorials/setup-opentelemetry/), then the port needs to be explicitely specificed. OpenTelemetry's default port is 9464. | string | `"http-backend"` |
181182
| nameOverride | String to partially override common.names.fullname | string | `""` |
182183
| networkPolicy.egressRules.customRules | Additional custom egress rules | list | `[]` |
183184
| networkPolicy.egressRules.denyConnectionsToExternal | Deny external connections. Should not be enabled when working with an external database. | bool | `false` |

charts/backstage/templates/servicemonitor.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ spec:
2929
matchLabels: {{ include "common.labels.standard" . | nindent 6 }}
3030
app.kubernetes.io/component: backstage
3131
endpoints:
32-
- port: http-backend
32+
- port: {{ .Values.metrics.serviceMonitor.port }}
3333
path: {{ .Values.metrics.serviceMonitor.path }}
3434
{{- with .Values.metrics.serviceMonitor.interval }}
3535
interval: {{ . }}

charts/backstage/values.schema.json

+13
Original file line numberDiff line numberDiff line change
@@ -6352,6 +6352,19 @@
63526352
"description": "ote that the /metrics endpoint is NOT present in a freshly scaffolded Backstage app. To setup, follow the Prometheus metrics tutorial. https://github.com/backstage/backstage/blob/master/contrib/docs/tutorials/prometheus-metrics.md",
63536353
"title": "ServiceMonitor endpoint path",
63546354
"type": "string"
6355+
},
6356+
"port": {
6357+
"anyOf": [
6358+
{
6359+
"type": "string"
6360+
},
6361+
{
6362+
"type": "integer"
6363+
}
6364+
],
6365+
"default": "http-backend",
6366+
"description": "The port where the metrics are exposed. If using OpenTelemetry as [documented here](https://backstage.io/docs/tutorials/setup-opentelemetry/), then the port needs to be explicitely specificed. OpenTelemetry's default port is 9464.",
6367+
"title": "ServiceMonitor endpoint port"
63556368
}
63566369
},
63576370
"title": "ServiceMonitor configuration",

charts/backstage/values.schema.tmpl.json

+9
Original file line numberDiff line numberDiff line change
@@ -864,6 +864,15 @@
864864
"description": "ote that the /metrics endpoint is NOT present in a freshly scaffolded Backstage app. To setup, follow the Prometheus metrics tutorial. https://github.com/backstage/backstage/blob/master/contrib/docs/tutorials/prometheus-metrics.md",
865865
"type": "string",
866866
"default": "/metrics"
867+
},
868+
"port": {
869+
"default": "http-backend",
870+
"description": "The port where the metrics are exposed. If using OpenTelemetry as [documented here](https://backstage.io/docs/tutorials/setup-opentelemetry/), then the port needs to be explicitely specificed. OpenTelemetry's default port is 9464.",
871+
"title": "ServiceMonitor endpoint port",
872+
"anyOf": [
873+
{ "type": "string" },
874+
{ "type": "integer" }
875+
]
867876
}
868877
}
869878
}

charts/backstage/values.yaml

+4
Original file line numberDiff line numberDiff line change
@@ -460,3 +460,7 @@ metrics:
460460
# -- ServiceMonitor endpoint path
461461
# <br /> Note that the /metrics endpoint is NOT present in a freshly scaffolded Backstage app. To setup, follow the [Prometheus metrics tutorial](https://github.com/backstage/backstage/blob/master/contrib/docs/tutorials/prometheus-metrics.md).
462462
path: /metrics
463+
464+
# -- ServiceMonitor endpoint port
465+
# <br /> The port where the metrics are exposed. If using OpenTelemetry as [documented here](https://backstage.io/docs/tutorials/setup-opentelemetry/), then the port needs to be explicitely specificed. OpenTelemetry's default port is 9464.
466+
port: http-backend

0 commit comments

Comments
 (0)