bash 썸네일형 리스트형 kafka 의 특정 topic 에 지연이 발생하는 지 확인 하는 script (check_kafka_lag) code linkhttps://gist.github.com/starblood/79f3a6af00bd9e3473a1d8ffbef0b248 #!/bin/bash kafka_home=$1zookeeper=$2group_name=$3lag_threshold=$4lag_data_sampling_count=$5if [ ! -z $6 ] ; thenlag_data_file=$6elselag_data_file=/tmp/kafka_lag.datafi function init_lag_data() {local sample_count=$1local result=()# initialize lag data array for a given sampling counti=0while [[ i -lt $sample_count ]]dor.. 더보기 이전 1 다음