Description

Reset runtime metrics of the session manager.

For more information, see Collect runtime metrics .

HTTP Operation

DELETE

URI


    //host_name:port/oemanager/applications/
    
     ABL_app_name
    /metrics
   

Media type


    application/vnd.progress+json
   

Response codes


    200 Success 500 Unexpected Server Error
   

Command-line example


       curl -X DELETE -u 
       
        username
       :
       
        password
        -v http://localhost:16680/oemanager/applications/oepas1/metrics 
      

ABL HTTP client example


       define variable resp as OpenEdge.Net.HTTP.IHttpResponse. resp = OpenEdge.Net.HTTP.ClientBuilder:Build():Client :Execute(OpenEdge.Net.HTTP.RequestBuilder :Delete('http://localhost:16680/oemanager/applications/oepas1/metrics') :UsingCredentials(new OpenEdge.Net.HTTP.Credentials('', 'username', 'password')) :Request ).
      

Request body example

NA

Response body example


       { "operation":"RESET SESSION-MGR METRICS", "outcome":"SUCCESS", "result":"", "errmsg":"", "versionStr":"v12.1.0 ( 2019-08-07 )", "versionNo":1 }