All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.clickhouse.client.api.metrics.ClientMetrics Maven / Gradle / Ivy

The newest version!
package com.clickhouse.client.api.metrics;

public enum ClientMetrics {

    /**
     * Operation duration in nanoseconds.
     */
    OP_DURATION("client.opDuration"),

    /**
     * Duration of the operation serialization step in nanoseconds.
     */
    OP_SERIALIZATION("client.opSerialization");

    private final String key;

    ClientMetrics(String key) {
        this.key = key;
    }

    public String getKey() {
        return key;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy