You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: cmd/access/main.go
+3
Original file line number
Diff line number
Diff line change
@@ -45,6 +45,7 @@ func main() {
45
45
receiptLimituint
46
46
collectionGRPCPortuint
47
47
pingEnabledbool
48
+
nodeInfoFilestring
48
49
ingestEng*ingestion.Engine
49
50
requestEng*requester.Engine
50
51
followerEng*followereng.Engine
@@ -82,6 +83,7 @@ func main() {
82
83
flags.BoolVar(&logTxTimeToFinalizedExecuted, "log-tx-time-to-finalized-executed", false, "log transaction time to finalized and executed")
83
84
flags.BoolVar(&pingEnabled, "ping-enabled", false, "whether to enable the ping process that pings all other peers and report the connectivity to metrics")
84
85
flags.BoolVar(&retryEnabled, "retry-enabled", false, "whether to enable the retry mechanism at the access node level")
86
+
flags.StringVarP(&nodeInfoFile, "node-info-file", "", "", "full path to a json file which provides more details about nodes when reporting its reachability metrics")
0 commit comments