Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试在 Grafana Loki 中执行一项简单的任务。Fluentd 已经解析了一个 csv 日志并将其放入 Loki。此 csv 中有四个字段,其中一个是持续时间。持续时间是以纳秒为单位的数字。我想绘制这个值的时间序列而不进行任何聚合。 在上面的示例中,我基本上需要从字符串“287511”中解析一个数字并将其绘制在时间序列图表上。我尝试使用以下查询,但没有奏效。 {job="order_durations"} | unwrap duration. 正确的方法是什么?
{job="order_durations"} | unwrap duration
谢谢