Skip to content

Latest commit

 

History

History
32 lines (22 loc) · 819 Bytes

metrics.md

File metadata and controls

32 lines (22 loc) · 819 Bytes

<- Back to Index

Metrics

The xapipe CLI supports prometheus metrics via a push gateway. With a push gateway set up, you can use it like so:

bin/run.sh --source-url http://0.0.0.0:8080/xapi \
           --target-url http://0.0.0.0:8081/xapi \
           --metrics-reporter prometheus \
           --prometheus-push-gateway 0.0.0.0:9091

The following Prometheus metrics are implemented:

Counters

  • xapipe_statements
  • xapipe_attachments
  • xapipe_job_errors
  • xapipe_source_errors
  • xapipe_target_errors
  • xapipe_all_errors

Histograms

  • xapipe_source_request_time
  • xapipe_target_request_time

In addition the prometheus metrics collector provides various metrics under the jvm_ prefix.

<- Back to Index