Documentation > System Stored Procedures > @ResetProfiling
« @Quiesce
@ResetProfiling
Reset all internal statistics and counters collected in the HStoreSite. It will only reset the profilers that are enabled at the time that the stored procedure is invoked. This procedure will reset the following profiling information:
- site.commandlog_profiling
- site.exec_profiling
- site.specexec_profiling
- site.markov_profiling
- site.queue_profiling
Input Parameters
None
Return Values
Name | Type | Description |
---|---|---|
HOST_ID | Integer | The id of the node that this procedure was executed on. |
HOSTNAME | String | The hostname of the node that this procedure was executed on. |
PARTITION | Integer | The hostname of the node that this procedure was executed on. |
STATUS | String | The status code of this procedure. |
CREATED | Timestamp | The timestamp of when the profiling information was reset at this partition. |
Java Example
Client client = ClientFactory.createClient(); client = client.createConnection(hostname, port); ClientResponse cresponse = client.callProcedure("@ResetProfiling"); |
Command-Line Example
hstore> EXEC @ResetProfiling |
« @Quiesce