Struct fibers_http_server::metrics::ServerMetrics [] [src]

pub struct ServerMetrics { /* fields omitted */ }

HTTP server metrics.

Methods

impl ServerMetrics
[src]

[src]

Number of connected TCP clients.

Metric: fibers_http_server_connected_tcp_clients_total <COUNTER>

[src]

Number of disconnected TCP clients.

Metric: fibers_http_server_disconnected_tcp_clients_total <COUNTER>

[src]

Number of errors occurred while reading the head part of requests.

Metric: fibers_http_server_errors_total { phase="read_request_head" } <COUNTER>

[src]

Number of errors occurred while parsing the path of requests.

Metric: fibers_http_server_errors_total { phase="parse_request_path" } <COUNTER>

[src]

Number of errors occurred while dispatcing requests.

Metric: fibers_http_server_errors_total { phase="dispatch_request" } <COUNTER>

[src]

Number of errors occurred while initializing request handlers.

Metric: fibers_http_server_errors_total { phase="initialize_handler" } <COUNTER>

[src]

Number of errors occurred while decoding the body part of requests.

Metric: fibers_http_server_errors_total { phase="decode_request_body" } <COUNTER>

[src]

Number of errors occurred while writing responses to sockets.

Metric: fibers_http_server_errors_total { phase="write_response" } <COUNTER>

Trait Implementations

impl Debug for ServerMetrics
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for ServerMetrics
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations

impl Send for ServerMetrics

impl Sync for ServerMetrics