Remove Connections from SysProcess struct (#11373)

The connections info of the processes takes up a huge amount of space,
and is not important for adding any useful health checks. Removing it
will significantly reduce the size of the subnet health report.
This commit is contained in:
Shireesh Anjal
2021-02-06 11:02:28 +05:30
committed by GitHub
parent 88c1bb0720
commit 97fe57bba9
2 changed files with 31 additions and 31 deletions

View File

@@ -202,7 +202,7 @@ func getLocalProcInfo(ctx context.Context, r *http.Request) madmin.ServerProcInf
if err != nil {
return errProcInfo("conns", err)
}
sysProc.Connections = conns
sysProc.ConnectionCount = len(conns)
createTime, err := proc.CreateTimeWithContext(ctx)
if err != nil {