Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for GetSysErrors (0.05 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. cmd/peer-rest-client.go

    		rt := int32(time.Since(sent).Milliseconds())
    		ti.RoundtripDuration = rt
    		info.Config["time-info"] = ti
    	}
    	return info, err
    }
    
    // GetSysErrors - fetch sys errors for a remote node.
    func (client *peerRESTClient) GetSysErrors(ctx context.Context) (info madmin.SysErrors, err error) {
    	resp, err := getSysErrorsRPC.Call(ctx, client.gridConn(), grid.NewMSS())
    	return resp.ValueOrZero(), err
    }
    
    Created: Sun Dec 28 19:28:13 GMT 2025
    - Last Modified: Sun Sep 28 20:59:21 GMT 2025
    - 26.1K bytes
    - Click Count (0)
  2. cmd/admin-handlers.go

    		if query.Get(string(madmin.HealthDataTypeSysErrors)) == "true" {
    			localSysErrors := madmin.GetSysErrors(healthCtx, globalLocalNodeName)
    			anonymizeAddr(&localSysErrors)
    			healthInfo.Sys.SysErrs = append(healthInfo.Sys.SysErrs, localSysErrors)
    			partialWrite(healthInfo)
    
    			peerSysErrs := globalNotificationSys.GetSysErrors(healthCtx)
    			for _, se := range peerSysErrs {
    				anonymizeAddr(&se)
    Created: Sun Dec 28 19:28:13 GMT 2025
    - Last Modified: Sun Sep 28 20:59:21 GMT 2025
    - 99.7K bytes
    - Click Count (0)
Back to Top