| 1107 | } |
| 1108 | |
| 1109 | void |
| 1110 | Http2Stream::increment_transactions_stat() |
| 1111 | { |
| 1112 | if (this->is_outbound_connection()) { |
| 1113 | Metrics::Gauge::increment(http2_rsb.current_server_stream_count); |
| 1114 | Metrics::Counter::increment(http2_rsb.total_server_stream_count); |
| 1115 | } else { |
| 1116 | Metrics::Gauge::increment(http2_rsb.current_client_stream_count); |
| 1117 | Metrics::Counter::increment(http2_rsb.total_client_stream_count); |
| 1118 | } |
| 1119 | } |
| 1120 | |
| 1121 | void |
| 1122 | Http2Stream::decrement_transactions_stat() |
no test coverage detected