admin管理员组文章数量:1350631
I have a CSV file imported into Datadog that contains date (DD.MM.YYYY
) and timestamp (hh.mm.ss.mmm
) in 2 adjacent columns as follows:
01.03.2025 | 12.00.35.524 |
01.03.2025 | 12.00.49.334 |
01.03.2025 | 15.58.51.402 |
01.03.2025 | 15.59.56.402 |
01.03.2025 | 16.00.12.936 |
01.03.2025 | 18.06.18.531 |
03.03.2025 | 16.49.47.989 |
03.03.2025 | 17.57.01.947 |
03.03.2025 | 17.57.16.800 |
I have a CSV file imported into Datadog that contains date (DD.MM.YYYY
) and timestamp (hh.mm.ss.mmm
) in 2 adjacent columns as follows:
01.03.2025 | 12.00.35.524 |
01.03.2025 | 12.00.49.334 |
01.03.2025 | 15.58.51.402 |
01.03.2025 | 15.59.56.402 |
01.03.2025 | 16.00.12.936 |
01.03.2025 | 18.06.18.531 |
03.03.2025 | 16.49.47.989 |
03.03.2025 | 17.57.01.947 |
03.03.2025 | 17.57.16.800 |
Using Datadog, how do I combine these into a a single, sortable date and time format (e.g. YYYY-MM-DD hh:mm:ss
)?
1 Answer
Reset to default 1To what i understood basically, you can use a Log Pipeline Processor by navigating to your data log configuration and create one, after that you can add a Groq Parser to extract and reformat the date and time fields.
Once you do that you can reformat the Data and Time, by using a Date Remapper
processor to combine and convert the fields. Since your data has separate columns for date (DD.MM.YYYY
) and time (hh.mm.ss.mmm
), you need to combine them into one field and reformat it.
Here is an example, to give an idea:
groq {
let date = parse_date("dd.MM.yyyy", @date_column)
let time = parse_time("hh.mm.ss.mmm", @time_column)
set_field("combined_datetime", format_date("yyyy-MM-dd HH:mm:ss", date + time))
}
本文标签: Combine date and time from two columns in DatadogStack Overflow
版权声明:本文标题:Combine date and time from two columns in Datadog - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743881610a2555299.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论