@@ -552,6 +552,10 @@ var runCmd = &cobra.Command{
552552 attribute .String ("tcpKeepAlivePeriod" , client .TCPKeepAlivePeriod .String ()),
553553 attribute .String ("localAddress" , client .LocalAddr ()),
554554 attribute .String ("remoteAddress" , client .RemoteAddr ()),
555+ attribute .Int ("retries" , clientConfig .Retries ),
556+ attribute .String ("backoff" , clientConfig .GetBackoff ().String ()),
557+ attribute .Float64 ("backoffMultiplier" , clientConfig .BackoffMultiplier ),
558+ attribute .Bool ("disableBackoffCaps" , clientConfig .DisableBackoffCaps ),
555559 )
556560 if client .ID != "" {
557561 eventOptions = trace .WithAttributes (
@@ -578,6 +582,10 @@ var runCmd = &cobra.Command{
578582 "tcpKeepAlivePeriod" : client .TCPKeepAlivePeriod .String (),
579583 "localAddress" : client .LocalAddr (),
580584 "remoteAddress" : client .RemoteAddr (),
585+ "retries" : clientConfig .Retries ,
586+ "backoff" : clientConfig .GetBackoff ().String (),
587+ "backoffMultiplier" : clientConfig .BackoffMultiplier ,
588+ "disableBackoffCaps" : clientConfig .DisableBackoffCaps ,
581589 }
582590 _ , err := pluginRegistry .Run (
583591 pluginTimeoutCtx , clientCfg , v1 .HookName_HOOK_NAME_ON_NEW_CLIENT )
0 commit comments