mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-18 02:46:40 +00:00

This patch includes the script that pulls information from Github and pushes it to Grafana. This is currently running in the cluster and pushes information to https://llvm.grafana.net/public-dashboards/6a1c1969b6794e0a8ee5d494c72ce2cd. This script is designed to accept other jobs relatively easily and can be easily modified to look at other metrics.
8 lines
165 B
Docker
8 lines
165 B
Docker
FROM docker.io/python:3.12
|
|
|
|
COPY requirements.lock.txt ./
|
|
RUN pip3 install --no-cache-dir -r requirements.lock.txt
|
|
COPY metrics.py ./
|
|
|
|
CMD ["python3", "metrics.py"]
|