我不太明白 prometheus 中直方图函数中的 bucket 是什么意思
LATENCY = Histogram('hello_world_latency_seconds',
'Time for a request Hello World.',
buckets=[0.0001, 0.0002, 0.0005, 0.001, 0.01, 0.1])
和
@LATENCY.time()
例如,桶 0.0001 代表什么意思?
我不太明白 prometheus 中直方图函数中的 bucket 是什么意思
LATENCY = Histogram('hello_world_latency_seconds',
'Time for a request Hello World.',
buckets=[0.0001, 0.0002, 0.0005, 0.001, 0.01, 0.1])
和
@LATENCY.time()
例如,桶 0.0001 代表什么意思?
我有一个变量 ($line),它在 bash/shell 脚本中定义为
$line = "abc:123:def:345"
我需要将此 column2 =“123” 放入变量而不打印它
该命令提取列,但也打印变量
FILE=$1
while read line
do
awk -F: '{print $2}' <<< "$line"
done < $FILE
谢谢。