From cf435d44aa5cef2968e10ab9d88ec572fafca9fa Mon Sep 17 00:00:00 2001 From: Kenneth Giusti Date: Wed, 20 Nov 2024 09:25:43 -0500 Subject: [PATCH] Issue #1621: additional fix: remove HTTP/1 octet rate attribute --- src/observers/http1/http1_observer.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/observers/http1/http1_observer.c b/src/observers/http1/http1_observer.c index 64fc6a5fc..d35762d98 100644 --- a/src/observers/http1/http1_observer.c +++ b/src/observers/http1/http1_observer.c @@ -59,8 +59,6 @@ static int rx_request(qd_http1_decoder_connection_t *hconn, const char *method, vflow_set_string(hreq->vflow, VFLOW_ATTRIBUTE_METHOD, method); vflow_set_uint64(hreq->vflow, VFLOW_ATTRIBUTE_OCTETS, 0); vflow_set_uint64(hreq->vflow, VFLOW_ATTRIBUTE_OCTETS_REVERSE, 0); - vflow_add_rate(hreq->vflow, VFLOW_ATTRIBUTE_OCTETS, VFLOW_ATTRIBUTE_OCTET_RATE); - vflow_add_rate(hreq->vflow, VFLOW_ATTRIBUTE_OCTETS_REVERSE, VFLOW_ATTRIBUTE_OCTET_RATE_REVERSE); vflow_latency_start(hreq->vflow); hreq->latency_done = false; DEQ_INSERT_TAIL(th->http1.requests, hreq);