Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: Add Prometheus exporter #834

Open
wants to merge 11 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ commands:
name: Set up Rust
command: |
apt update
apt install build-essential curl libstdc++6 libstdc++-12-dev libssl-dev pkg-config -y
apt install build-essential curl libstdc++6 libstdc++-12-dev clang libssl-dev pkg-config -y
apt install cmake -y
# RUST_VER
curl https://sh.rustup.rs -sSf | sh -s -- --default-toolchain 1.83 -y
Expand Down Expand Up @@ -142,7 +142,7 @@ jobs:
command: |
apt update
apt install git -y
apt install cmake -y
apt install cmake clang -y
- run:
name: Set up Python
command: |
Expand Down Expand Up @@ -286,7 +286,7 @@ jobs:
# Install these packages before checkout because git may not exist or work
- run:
name: Install Docker build dependencies
command: apk add --no-cache openssh-client git
command: apk add --no-cache openssh-client git clang
- checkout
- setup_remote_docker
- docker_login
Expand Down
Loading