Обсуждение: Timestamps in outputs

Поиск
Список
Период
Сортировка

Timestamps in outputs

От
Murthy Nunna
Дата:

Hi,

 

I am running pg_restore on a large (~20TB) database. I am using -V flag. Is there a way I can get timestamps in front of each line that is logged in the output.

 

pg_restore: launching item 5470 INDEX ….

pg_restore: creating INDEX ….

pg_restore: finished item 6131 TABLE DATA …

 

Re: Timestamps in outputs

От
SOzcn
Дата:
Hello, next to your linux command you can get output like ; pg_restore - ... - ...  2>&1 | ts '[%Y-%m-%d %H:%M:%S]' > pg_restore_output.log

Murthy Nunna <mnunna@fnal.gov>, 20 Ara 2023 Çar, 02:08 tarihinde şunu yazdı:

Hi,

 

I am running pg_restore on a large (~20TB) database. I am using -V flag. Is there a way I can get timestamps in front of each line that is logged in the output.

 

pg_restore: launching item 5470 INDEX ….

pg_restore: creating INDEX ….

pg_restore: finished item 6131 TABLE DATA …

 

RE: Timestamps in outputs

От
Murthy Nunna
Дата:

Thanks, SOzcn!

 

Just for the record…. If you don’t have “ts” installed in your server (like mine), you can do the following as sell. I got this solution from a Linux forum. There are number of alternatives, but I find this one simpler.

 

<your-script-or-command> | awk '{ print strftime("[%Y-%m-%d %H:%M:%S]"), $0; fflush() }' > t.txt &

 

Thanks!

 

 

 

From: SOzcn <selahattinozcnma@gmail.com>
Sent: Wednesday, December 20, 2023 12:15 AM
To: Murthy Nunna <mnunna@fnal.gov>
Cc: pgsql-admin@postgresql.org
Subject: Re: Timestamps in outputs

 

Hello, next to your linux command you can get output like ; pg_restore - ... - ...  2>&1 | ts '[%Y-%m-%d %H:%M:%S]' > pg_restore_output.log

 

Murthy Nunna <mnunna@fnal.gov>, 20 Ara 2023 Çar, 02:08 tarihinde şunu yazdı:

Hi,

 

I am running pg_restore on a large (~20TB) database. I am using -V flag. Is there a way I can get timestamps in front of each line that is logged in the output.

 

pg_restore: launching item 5470 INDEX ….

pg_restore: creating INDEX ….

pg_restore: finished item 6131 TABLE DATA …

 

Re: Timestamps in outputs

От
Scott Ribe
Дата:
> On Dec 24, 2023, at 8:36 AM, Murthy Nunna <mnunna@fnal.gov> wrote:
>
> <your-script-or-command> | awk '{ print strftime("[%Y-%m-%d %H:%M:%S]"), $0; fflush() }' > t.txt &

Ooooh, awesome! I'm going to save that for reference.