英文:
Grafana, how to transform time column from timestamp to date
问题
我尝试使用“转换字段类型”来从时间戳中去除时间,但似乎不按我期望的方式工作。有没有办法去掉时间?我只需要日期以便按天分组。
英文:
I am trying to use transformation "Convert field type" to strip time from timestamp,
but it seems not to work as I expect. Any idea how to get rid of time?
I need only date in order to group by day
答案1
得分: 2
如果您只想每天一行,您可以在查询中使用 GROUP BY time(1d)
。
要隐藏标签中的时间部分,请定义一个覆盖:
英文:
If you just want to have a single line per day, you can use GROUP BY time(1d)
in your query.
To hide the time part inside of the label, define an Override:
答案2
得分: 0
你需要将时间格式化为字符串,你可以在那里指定你想要的格式。
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论