We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c139809 commit 5131038Copy full SHA for 5131038
1 file changed
common/setup_monitoring.sh
@@ -39,6 +39,14 @@ cp /tmp/postgres_exporter-0.15.0.linux-${PROM_ARCH}/postgres_exporter /usr/bin/p
39
chown ubi_monitoring:ubi_monitoring /usr/bin/postgres_exporter
40
chmod 100 /usr/bin/postgres_exporter
41
42
+# Install otelcol-contrib
43
+OTEL_VERSION="0.146.0"
44
+echo "[setup_monitoring.sh] Downloading otelcol-contrib v${OTEL_VERSION}..."
45
+curl -L -o otelcol-contrib.deb "https://github.com/open-telemetry/opentelemetry-collector-releases/releases/download/v${OTEL_VERSION}/otelcol-contrib_${OTEL_VERSION}_linux_${PROM_ARCH}.deb"
46
+dpkg -i otelcol-contrib.deb
47
+rm -f otelcol-contrib.deb
48
+apt-get install -y acl
49
+
50
echo "=== [setup_monitoring.sh] Installing systemd service files ==="
51
52
# Copy systemd unit files
0 commit comments