Skip to content

Instantly share code, notes, and snippets.

@dynamicguy
Created June 12, 2020 14:21
Show Gist options
  • Save dynamicguy/7757b8580530b68419328ac94a3e3331 to your computer and use it in GitHub Desktop.
Save dynamicguy/7757b8580530b68419328ac94a3e3331 to your computer and use it in GitHub Desktop.

Nginx Basic Stub status Explanation:

  • Active connections - Open connections in total. One user can have several concurrent connections to a server.
  • Three figures are shown:
    • All accepted connections.
    • All handled connections, which normally equals to the total number of accepted connections.
    • Total number of handled requests.
  • Reading: Nginx reads request headers
  • Writing: Nginx reads request bodies, processes requests, or writes responses to a client
  • Waiting: Keep-Alive connections. This number depends on the keepalive_timeout.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment