Skip to content

Commit df3f9bc

Browse files
authored
Merge branch 'main' into main
2 parents b8b90f7 + abb5ca3 commit df3f9bc

File tree

4 files changed

+8
-5
lines changed

4 files changed

+8
-5
lines changed

docs/reference/monitoring.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,17 +45,20 @@ Given below is the current implementation overview of flagd telemetry internals,
4545

4646
## Metrics
4747

48-
flagd expose following metrics,
48+
flagd exposes the following metrics:
4949

5050
- `http.server.duration`
5151
- `http.server.response.size`
5252
- `http.server.active_requests`
5353
- `feature_flag.flagd.impression`
5454
- `feature_flag.flagd.evaluation.reason`
5555

56+
> Please note that metric names may vary based on the consuming monitoring tool naming requirements.
57+
> For example, the transformation of OTLP metrics to Prometheus is described [here](https://github.com/open-telemetry/opentelemetry-specification/blob/main/specification/compatibility/prometheus_and_openmetrics.md#otlp-metric-points-to-prometheus).
58+
5659
## Traces
5760

58-
flagd expose following traces,
61+
flagd creates the following spans as part of a trace:
5962

6063
- `flagEvaluationService(resolveX)` - SpanKind server
6164
- `jsonEvaluator(resolveX)` - SpanKind internal

flagd-proxy/build.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Main Dockerfile for flagd builds
22
# Build the manager binary
3-
FROM --platform=$BUILDPLATFORM golang:1.22-alpine AS builder
3+
FROM --platform=$BUILDPLATFORM golang:1.23-alpine AS builder
44

55
WORKDIR /src
66

flagd/build.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Main Dockerfile for flagd builds
22
# Build the manager binary
3-
FROM --platform=$BUILDPLATFORM golang:1.22-alpine AS builder
3+
FROM --platform=$BUILDPLATFORM golang:1.23-alpine AS builder
44

55
WORKDIR /src
66

flagd/profile.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Dockerfile with pprof profiler
22
# Build the manager binary
3-
FROM --platform=$BUILDPLATFORM golang:1.22-alpine AS builder
3+
FROM --platform=$BUILDPLATFORM golang:1.23-alpine AS builder
44

55
WORKDIR /src
66

0 commit comments

Comments
 (0)