Initial commit: add .gitignore and README

This commit is contained in:
defiQUG
2026-02-09 21:51:48 -08:00
commit d4ba3d45e5
174 changed files with 32756 additions and 0 deletions

11
metricbeat/Dockerfile Normal file
View File

@@ -0,0 +1,11 @@
FROM docker.elastic.co/beats/metricbeat:7.14.1
ENV IP_ADDRESS "127.0.0.1"
ENV REDIS_HOST localhost
ENV REDIS_PORT 6379
USER root
ADD ./metricbeat.yml /usr/share/metricbeat/metricbeat.yml
RUN chown root:metricbeat /usr/share/metricbeat/metricbeat.yml && chmod go-w /usr/share/metricbeat/metricbeat.yml
USER metricbeat
CMD ["metricbeat", "-c", "metricbeat.yml"]