Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for DownloadProfilingData (0.24 sec)

  1. cmd/peer-rest-common.go

    	peerRESTMethodVerifyBinary          = "/verifybinary"
    	peerRESTMethodCommitBinary          = "/commitbinary"
    	peerRESTMethodStartProfiling        = "/startprofiling"
    	peerRESTMethodDownloadProfilingData = "/downloadprofilingdata"
    	peerRESTMethodSpeedTest             = "/speedtest"
    	peerRESTMethodDriveSpeedTest        = "/drivespeedtest"
    	peerRESTMethodDevNull               = "/devnull"
    	peerRESTMethodNetperf               = "/netperf"
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Fri Mar 08 19:08:18 GMT 2024
    - 2.7K bytes
    - Viewed (0)
  2. cmd/notification.go

    		ng.Go(GlobalContext, func() error {
    			return client.StartProfiling(profiler)
    		}, idx, *client.host)
    	}
    	return ng.Wait()
    }
    
    // DownloadProfilingData - download profiling data from all remote peers.
    func (sys *NotificationSys) DownloadProfilingData(ctx context.Context, writer io.Writer) (profilingDataFound bool) {
    	// Initialize a zip writer which will provide a zipped content
    	// of profiling data of all nodes
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Fri Apr 12 18:13:36 GMT 2024
    - 44.5K bytes
    - Viewed (0)
  3. cmd/admin-handlers.go

    			defer globalProfilerMu.Unlock()
    			for k, v := range globalProfiler {
    				v.Stop()
    				delete(globalProfiler, k)
    			}
    			return
    		case <-timer.C:
    			if !globalNotificationSys.DownloadProfilingData(ctx, w) {
    				writeErrorResponseJSON(ctx, w, errorCodes.ToAPIErr(ErrAdminProfilerNotEnabled), r.URL)
    				return
    			}
    			return
    		}
    	}
    }
    
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Sun Apr 21 11:43:18 GMT 2024
    - 97.3K bytes
    - Viewed (2)
Back to top