github.com/google/syzkaller@v0.0.0-20240517125934-c0f1611a36d6/docs/prometheus.md (about)

     1  # Prometheus metrics
     2  
     3  syz-manager metrics are exposed at the URI `/metrics` on the http endpoint.
     4  Currently exported prometheus metrics from the manager are `syz_exec_total`, `syz_corpus_cover` and `syz_crash_total`.
     5  
     6  These metrics can be ingested using following prometheus client configuration:
     7  ```
     8  scrape_configs:
     9  - job_name: syzkaller
    10    scrape_interval: 10s
    11    static_configs:
    12    - targets:
    13      - localhost:56741
    14  ```
    15  
    16  Values are reset to zero at syz-manager restart and only reflect for current execution of syz-manager.