pg日誌分析

babyyellow發表於2012-10-12
pg 日誌支援多種格式,一般的平面文字

還有csv 格式

在postgresql.conf 裡把日誌格式設為 csvlog  重新載入配置檔案就可以了。

把csv 匯入到資料庫裡分析,可以充分利用sql的便利性。[code]

CREATE  TABLE postgres_log
(
  log_time timestamp(3) with time zone,
   user_name text,
  database_name text,
  process_id integer,
   connection_from text,
  session_id text,
  session_line_num  bigint,
  command_tag text,
  session_start_time timestamp with  time zone,
  virtual_transaction_id text,
  transaction_id bigint,
  error_severity text,
  sql_state_code text,
  message text,
   detail text,
  hint text,
  internal_query text,
   internal_query_pos integer,
  context text,
  query text,
   query_pos integer,
  location text,
  application_name text,
   PRIMARY KEY (session_id, session_line_num)
);
[/code]日誌匯入[code]
postgres=# \encoding utf8
postgres=# copy postgres_log from '/usr/local/pgsql/data/pg_log/postgresql-2012-10-11.csv' with csv ;
COPY 65
postgres=# \q

[/code]接下來就可以按需分析了。

寫了個小指令碼,免得每次都麻煩:
[code]
#!/bin/bash



function  load_logfile() {
    psql <    \encoding UTF8
    \set on_error stop
    begin ;
    copy   postgres_log from '$1' with csv ;
    commit ;
EOF

}

function  truncate_table() {
    psql <    \set on_error stop
    begin ;
    truncate table postgres_log ;
    commit;
EOF
}

if [ "$1" = 'TRUNCATE'  -o  "$1" = 'truncate' ]
then
    truncate_table
else
    load_logfile $1
fi

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/133735/viewspace-746257/,如需轉載,請註明出處,否則將追究法律責任。

相關文章