FROM fedora:40@sha256:d0207dbb078ee261852590b9a8f1ab1f8320547be79a2f39af9f3d23db33735e AS release RUN dnf install -y https://artifacts.elastic.co/downloads/beats/metricbeat/metricbeat-8.9.2-x86_64.rpm COPY debugd/metricbeat/templates/ /usr/share/constellogs/templates/ # -e enables logging to stderr # -E http.enabled=true enables http endpoint as seen in https://github.com/elastic/helm-charts/blob/main/metricbeat/templates/daemonset.yaml # --path.home and --path.data set the paths to the metricbeat binary and data directory ENTRYPOINT [ "/usr/share/metricbeat/bin/metricbeat", \ "-e", \ "-E", "http.enabled=true", \ "--path.home", "/usr/share/metricbeat", \ "--path.data", "/usr/share/metricbeat/data" \ ]