Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for ProfilerType (0.1 sec)

  1. cmd/admin-handlers.go

    type StartProfilingResult struct {
    	NodeName string `json:"nodeName"`
    	Success  bool   `json:"success"`
    	Error    string `json:"error"`
    }
    
    // StartProfilingHandler - POST /minio/admin/v3/profiling/start?profilerType={profilerType}
    // ----------
    // Enable server profiling
    func (a adminAPIHandlers) StartProfilingHandler(w http.ResponseWriter, r *http.Request) {
    	ctx := r.Context()
    
    	// Validate request signature.
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Fri Oct 04 11:32:32 UTC 2024
    - 99.7K bytes
    - Viewed (0)
  2. cmd/admin-router.go

    		// Profiling operations - deprecated API
    		adminRouter.Methods(http.MethodPost).Path(adminVersion+"/profiling/start").HandlerFunc(adminMiddleware(adminAPI.StartProfilingHandler, traceAllFlag, noObjLayerFlag)).
    			Queries("profilerType", "{profilerType:.*}")
    		adminRouter.Methods(http.MethodGet).Path(adminVersion + "/profiling/download").HandlerFunc(adminMiddleware(adminAPI.DownloadProfilingHandler, traceHdrsS3HFlag, noObjLayerFlag))
    		// Profiling operations
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Sat Sep 21 11:35:40 UTC 2024
    - 26.2K bytes
    - Viewed (0)
Back to top