File tree Expand file tree Collapse file tree 1 file changed +6
-0
lines changed
Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,9 @@ FROM ghcr.io/coroot/coroot-cluster-agent:1.2.4 AS cluster-agent
77# Add node exporter to the image
88FROM prom/node-exporter:v1.10.2 AS node-exporter-source
99
10+ # Add postgres exporter to the image
11+ FROM prometheuscommunity/postgres-exporter:v0.18.1 AS postgres-exporter
12+
1013# Add OBI to the image
1114FROM otel/ebpf-instrument:v0.3.0 AS obi-source
1215
@@ -43,6 +46,9 @@ COPY --from=cluster-agent --chmod=755 /usr/bin/coroot-cluster-agent /usr/local/b
4346# Copy Node exporter
4447COPY --from=node-exporter-source --chmod=755 /bin/node_exporter /usr/local/bin/node_exporter
4548
49+ # Copy Postgres exporter
50+ COPY --from=postgres-exporter --chmod=755 /bin/postgres_exporter /usr/local/bin/postgres_exporter
51+
4652COPY beyla/bootstrap_supervisord.conf /bootstrap/supervisord.conf
4753COPY --chmod=755 beyla/run_supervisord.sh /run_supervisord.sh
4854
You can’t perform that action at this time.
0 commit comments