use lazy_static::lazy_static;
use prometheus::*;
pub const LOGSTORE_LABEL: &str = "logstore";
pub const OPTYPE_LABEL: &str = "optype";
pub const TOPIC_LABEL: &str = "topic";
pub const PARTITION_LABEL: &str = "partition";
lazy_static! {
pub static ref METRIC_LOGSTORE_OP_BYTES_TOTAL: IntCounterVec = register_int_counter_vec!(
"greptime_logstore_op_bytes_total",
"logstore operation bytes total",
&[LOGSTORE_LABEL, OPTYPE_LABEL],
)
.unwrap();
pub static ref METRIC_KAFKA_APPEND_BATCH_BYTES_TOTAL: IntCounter = METRIC_LOGSTORE_OP_BYTES_TOTAL.with_label_values(
&["kafka", "append_batch"],
);
pub static ref METRIC_KAFKA_READ_BYTES_TOTAL: IntCounter = METRIC_LOGSTORE_OP_BYTES_TOTAL.with_label_values(
&["kafka", "read"],
);
pub static ref METRIC_RAFT_ENGINE_APPEND_BATCH_BYTES_TOTAL: IntCounter = METRIC_LOGSTORE_OP_BYTES_TOTAL.with_label_values(
&["raft-engine", "append_batch"],
);
pub static ref METRIC_RAFT_ENGINE_READ_BYTES_TOTAL: IntCounter = METRIC_LOGSTORE_OP_BYTES_TOTAL.with_label_values(
&["raft-engine", "read"],
);
pub static ref METRIC_LOGSTORE_OP_ELAPSED: HistogramVec = register_histogram_vec!(
"greptime_logstore_op_elapsed",
"logstore operation elapsed",
&[LOGSTORE_LABEL, OPTYPE_LABEL],
)
.unwrap();
pub static ref METRIC_KAFKA_APPEND_BATCH_ELAPSED: Histogram = METRIC_LOGSTORE_OP_ELAPSED.with_label_values(&["kafka", "append_batch"]);
pub static ref METRIC_KAFKA_READ_ELAPSED: Histogram = METRIC_LOGSTORE_OP_ELAPSED.with_label_values(&["kafka", "read"]);
pub static ref METRIC_RAFT_ENGINE_APPEND_BATCH_ELAPSED: Histogram = METRIC_LOGSTORE_OP_ELAPSED.with_label_values(&["raft-engine", "append_batch"]);
pub static ref METRIC_RAFT_ENGINE_READ_ELAPSED: Histogram = METRIC_LOGSTORE_OP_ELAPSED.with_label_values(&["raft-engine", "read"]);
pub static ref METRIC_KAFKA_CLIENT_BYTES_TOTAL: IntCounterVec = register_int_counter_vec!(
"greptime_logstore_kafka_client_bytes_total",
"kafka logstore's bytes traffic total",
&[LOGSTORE_LABEL, PARTITION_LABEL],
)
.unwrap();
pub static ref METRIC_KAFKA_CLIENT_TRAFFIC_TOTAL: IntCounterVec = register_int_counter_vec!(
"greptime_logstore_kafka_client_traffic_total",
"kafka logstore's request count traffic total",
&[LOGSTORE_LABEL, PARTITION_LABEL],
)
.unwrap();
pub static ref METRIC_KAFKA_CLIENT_PRODUCE_ELAPSED: HistogramVec = register_histogram_vec!(
"greptime_logstore_kafka_client_produce_elapsed",
"kafka logstore produce operation elapsed",
&[LOGSTORE_LABEL, PARTITION_LABEL],
)
.unwrap();
}