Documentation > System Stored Procedures > @ResetProfiling

@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:

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