7
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

AWSCloudwatchLogsでCSVダウンロード時のTimeStampを日本時間(JST)に置き換える方法

Posted at

ググってもなかなか出てこなかったので、残します。
実は結構悩んでる人多かったりしませんかね?

Cloudwatchlogsだと、ちゃんとYYYY-MM-DDThh:mm:ss.sss みたいな形で表示されるんですよね

image.png

CSVでダウンロードするとこんなUnixタイムスタンプになってます。
image.png

1654476988822 を日付に変更しなきゃ人間には読めないですよね。

A2のデータをJSTにするなら以下の計算式を入れればOK

=((A2/1000)/86400)+DATEVALUE("1970/01/01")+TIME(9,0,0)

EXCELのセルの書式設定はユーザ定義で以下を指定。

yyyy-mm-dd hh:mm:ss.000

image.png

B2セルに日付と時間が出ました。
image.png

7
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
7
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?