Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add tcpState information element for Antrea registry #145

Merged
merged 1 commit into from
Feb 25, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions pkg/registry/registry_antrea.csv
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
ElementID,Name,Abstract Data Type,Data Type Semantics,Status,Description,Units,Range,References,Requester,Revision,Date,Enterprise ID,
100,sourcePodNamespace,string,,current,,,,,,,,56506,https://www.iana.org/assignments/enterprise-numbers/enterprise-numbers
101,sourcePodName,string,,current,,,,,,,,56506,Picked the enterprise ID that was not reserved yet.
100,sourcePodNamespace,string,,current,,,,,,,,56506,
101,sourcePodName,string,,current,,,,,,,,56506,
102,destinationPodNamespace,string,,current,,,,,,,,56506,
103,destinationPodName,string,,current,,,,,,,,56506,
104,sourceNodeName,string,,current,,,,,,,,56506,
Expand Down Expand Up @@ -35,3 +35,4 @@ ElementID,Name,Abstract Data Type,Data Type Semantics,Status,Description,Units,R
133,reverseOctetTotalCountFromDestinationNode,unsigned64,,current,,,,,,,,56506,
134,reversePacketDeltaCountFromDestinationNode,unsigned64,,current,,,,,,,,56506,
135,reverseOctetDeltaCountFromDestinationNode,unsigned64,,current,,,,,,,,56506,
136,tcpState,string,,current,,,,,,,,56506,
1 change: 1 addition & 0 deletions pkg/registry/registry_antrea.go
Original file line number Diff line number Diff line change
Expand Up @@ -57,4 +57,5 @@ func loadAntreaRegistry() {
registerInfoElement(*entities.NewInfoElement("reverseOctetTotalCountFromDestinationNode", 133, 4, 56506, 8), 56506)
registerInfoElement(*entities.NewInfoElement("reversePacketDeltaCountFromDestinationNode", 134, 4, 56506, 8), 56506)
registerInfoElement(*entities.NewInfoElement("reverseOctetDeltaCountFromDestinationNode", 135, 4, 56506, 8), 56506)
registerInfoElement(*entities.NewInfoElement("tcpState", 136, 13, 56506, 65535), 56506)
}