akka/akka-http

Server statistics in Akka HTTP

Open

#107 opened on Sep 8, 2016

View on GitHub
 (15 comments) (1 reaction) (0 assignees)Scala (598 forks)batch import
1 - triagedhelp wantednice-to-have (low-prio)

Repository metrics

Stars
 (1,311 stars)
PR merge metrics
 (Avg merge 1d 10h) (2 merged PRs in 30d)

Description

Issue by RichardBradley Monday Mar 30, 2015 at 10:44 GMT Originally opened as https://github.com/akka/akka/issues/17095


Spray 1.3 had "Server Statistics" that reported on various connection-level stats that are difficult or inefficient to monitor in userland:

case class Stats(
  uptime: FiniteDuration,
  totalRequests: Long,
  openRequests: Long,
  maxOpenRequests: Long,
  totalConnections: Long,
  openConnections: Long,
  maxOpenConnections: Long,
  requestTimeouts: Long)

Please could we add something similar to Akka HTTP 1.0?

Contributor guide