0
私はAzure Application insightsを使用しており、タイムスタンプから時間部分のみを抽出したいと考えています。 EXのためにタイムスタンプから時間部分を抽出する
:
Input : "2017-01-23T20:00:00.2804261Z"; //This is a Timestamp data type
Output : 20:00:00.2804261Z
私はAzure Application insightsを使用しており、タイムスタンプから時間部分のみを抽出したいと考えています。 EXのためにタイムスタンプから時間部分を抽出する
:
Input : "2017-01-23T20:00:00.2804261Z"; //This is a Timestamp data type
Output : 20:00:00.2804261Z
あなたはそれの唯一の "時間" の部分を残すように、既存のタイムスタンプからその日を引くことができます。
QueryHere
| extend date_output = floor(timestamp, 1d)
| extend time_output = timestamp - date_output
出力は
Timestamp: "2017-01-23T20:00:00.2804261Z"
date_output: "2017-01-23T00:00:00.0000000Z"
time_output: "20:00:00.2804261"
のようなものになります
ありがとうDmitry。それは素晴らしい仕事でした。部分文字列(tostring(timestamp)、11)も動作するようです。 –
また、1日でモジュロを使用して時間部分を取得することもできます。 extend time_output =タイムスタンプ%1d –