SigNoz / dashboards

A collection of SigNoz dashboard templates in JSON format for monitoring popular services such as MySQL, MongoDB, APM, JVM, and more. Easily import and customize these dashboards to visualize your application’s performance and metrics with SigNoz.
Apache License 2.0
36 stars 49 forks source link

Added jenkins-metrics.json #73

Closed theadarshsaxena closed 3 months ago

theadarshsaxena commented 3 months ago

Collecting metrics from prometheus plugin in jenkins. Note: Create a user (to use in scrape config with basic auth) and give it the necessary permission to view metrics/health Then, scrape the metrics, use the following scrape config in signoz.

- job_name: 'jenkins'
metrics_path: /prometheus
scheme: http
tls_config:
  insecure_skip_verify: true
static_configs:
  - targets: ['company.jenkins.com:8080']
basic_auth:
  username: 'JohnDoe@gmail.com'
  password: 'abc123'
prashant-shahi commented 3 months ago

@Calm-Rock Can you include Jenkins Monitoring task for docs?