wu-sheng commented on code in PR #99:
URL:
https://github.com/apache/skywalking-data-collect-protocol/pull/99#discussion_r1759635822
##########
ebpf/accesslog.proto:
##########
@@ -80,6 +80,21 @@ message AccessLogConnection {
AccessLogConnectionTLSMode tlsMode = 4;
// application protocol type
AccessLogProtocolType protocol = 5;
+ // the attachment information about the connection
+ ConnectionAttachment attachment = 6;
+}
+
+message ConnectionAttachment {
+ // detect contains the environment information
+ oneof environment {
+ // detect the connection have a zTunnel environment(ambient istio)
+ ZTunnelAttachmentEnvironment zTunnel = 1;
+ }
+}
+
+message ZTunnelAttachmentEnvironment {
+ // the real destination ip address of the connection
+ string real_destination_ip = 1;
Review Comment:
We don't, but we can tell which part of the logic made this. Helpful for
debug only.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]