From a7df05fc2e1a2eeba4ec8587f1aa3f7cd55d9271 Mon Sep 17 00:00:00 2001 From: tushartathgur <79219394+tushartathgur@users.noreply.github.com> Date: Fri, 29 Sep 2023 12:42:29 -0700 Subject: [PATCH] Adding L7 visibility fields (#315) * L7 Visibility support in Antrea Signed-off-by: Tushar Tathgur * Replaced isL7 bool with l7ProtocolName string Signed-off-by: Tushar Tathgur --------- Signed-off-by: Tushar Tathgur Co-authored-by: Tushar Tathgur --- pkg/registry/registry_antrea.csv | 2 ++ pkg/registry/registry_antrea.go | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkg/registry/registry_antrea.csv b/pkg/registry/registry_antrea.csv index 5819096b..20c9cd81 100644 --- a/pkg/registry/registry_antrea.csv +++ b/pkg/registry/registry_antrea.csv @@ -54,3 +54,5 @@ ElementID,Name,Abstract Data Type,Data Type Semantics,Status,Description,Units,R 152,flowEndSecondsFromDestinationNode,dateTimeSeconds,,current,,,,,,,,56506, 153,egressName,string,,current,,,,,,,,56506, 154,egressIP,string,,current,,,,,,,,56506, +155,l7ProtocolName,string,,current,,,,,,,,56506, +156,httpVals,string,,current,,,,,,,,56506, diff --git a/pkg/registry/registry_antrea.go b/pkg/registry/registry_antrea.go index 38610365..6587d8df 100644 --- a/pkg/registry/registry_antrea.go +++ b/pkg/registry/registry_antrea.go @@ -76,4 +76,6 @@ func loadAntreaRegistry() { registerInfoElement(*entities.NewInfoElement("flowEndSecondsFromDestinationNode", 152, 14, 56506, 4), 56506) registerInfoElement(*entities.NewInfoElement("egressName", 153, 13, 56506, 65535), 56506) registerInfoElement(*entities.NewInfoElement("egressIP", 154, 13, 56506, 65535), 56506) + registerInfoElement(*entities.NewInfoElement("l7ProtocolName", 155, 13, 56506, 65535), 56506) + registerInfoElement(*entities.NewInfoElement("httpVals", 156, 13, 56506, 65535), 56506) }