Skip to content

Latest commit

 

History

History
49 lines (35 loc) · 1.24 KB

File metadata and controls

49 lines (35 loc) · 1.24 KB

Jetty Metrics

The JMX Metric Gatherer provides built in Jetty metric gathering capabilities. Details about using JMX with WildFly can be found here: https://jetty.org/docs/jetty/11/operations-guide/jmx/index.html

Metrics

jetty.select.count

  • Name: jetty.select.count
  • Description: The number of select calls.
  • Unit: {operations}
  • Instrument Type: longCounterCallback

jetty.session.count

  • Name: jetty.session.count
  • Description: The number of sessions created.
  • Unit: {sessions}
  • Instrument Type: LongCounterCallback

jetty.session.time.total

  • Name: jetty.session.time.total
  • Description: The total time sessions have been active.
  • Unit: s
  • Instrument Type: longUpDownCounterCallback

jetty.session.time.max

  • Name: jetty.session.time.max
  • Description: The maximum amount of time a session has been active.
  • Unit: s
  • Instrument Type: longValueCallback

jetty.thread.count

  • Name: jetty.thread.count
  • Description: The current number of threads.
  • Unit: {threads}
  • Labels: state
  • Instrument Type: longValueCallback

jetty.thread.queue.count

  • Name: jetty.thread.queue.count
  • Description: The current number of threads in the queue.
  • Unit: {threads}
  • Instrument Type: longValueCallback