Initial commit: Cloudflare infrastructure with WAF Intelligence
- Complete Cloudflare Terraform configuration (DNS, WAF, tunnels, access) - WAF Intelligence MCP server with threat analysis and ML classification - GitOps automation with PR workflows and drift detection - Observatory monitoring stack with Prometheus/Grafana - IDE operator rules for governed development - Security playbooks and compliance frameworks - Autonomous remediation and state reconciliation
This commit is contained in:
19
observatory/Dockerfile.exporter
Normal file
19
observatory/Dockerfile.exporter
Normal file
@@ -0,0 +1,19 @@
|
||||
# Cloudflare Metrics Exporter Container
|
||||
FROM python:3.11-slim
|
||||
|
||||
WORKDIR /app
|
||||
|
||||
# Install dependencies
|
||||
RUN pip install --no-cache-dir requests
|
||||
|
||||
# Copy exporter script
|
||||
COPY metrics-exporter.py /app/
|
||||
|
||||
# Non-root user
|
||||
RUN useradd -r -s /sbin/nologin exporter
|
||||
USER exporter
|
||||
|
||||
EXPOSE 9100
|
||||
|
||||
ENTRYPOINT ["python3", "/app/metrics-exporter.py"]
|
||||
CMD ["--port", "9100"]
|
||||
Reference in New Issue
Block a user