Skip to content

How to install it and integrate with prometheus? #336

Closed Answered by Karaatin
Vijaygawate asked this question in Q&A
Discussion options

You must be logged in to vote

Hi there :)

I faced a similar challenge and wanted to share the steps that worked for me:

  1. Install Prometheus
    Use the following command:

    sudo apt install prometheus
  2. Install the latest version of the nvidia_gpu_exporter
    Download the package and install it via:

    sudo dpkg -i <your-package-name>
  3. Verify that Prometheus and the nvidia_gpu_exporter are running
    Check their status with:

    sudo systemctl status prometheus
    sudo systemctl status nvidia_gpu_exporter
  4. Update Prometheus configuration
    Add the following job to your /etc/prometheus/prometheus.yml file:

    - job_name: 'nvidia_gpu_exporter'
      scrape_interval: 5s
      scrape_timeout: 5s
      static_configs:
        - targets: ['localhost:9835']

    Note: …

Replies: 1 comment

Comment options

You must be logged in to vote
0 replies
Answer selected by utkuozdemir
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants
Converted from issue

This discussion was converted from issue #235 on June 20, 2025 13:11.