2012-05-18 13 views
5

Usando pgFouine 1.2, PostgreSQL 9.1.3.Cómo usar pgFouine con PostgreSQL 9.1?

configuración postgresql.conf:

log_min_duration_statement = 0 
log_duration = on 
log_line_prefix = '%t [%p]: [%l-1] ' 
log_statement = 'all' 
lc_messages = 'C'   # locale for system error message strings 
lc_monetary = 'C'   # locale for monetary formatting 
lc_numeric = 'C'   # locale for number formatting 
lc_time = 'C'    # locale for time formatting 

error que estoy recibiendo cuando se ejecuta pgFouine:

C:\Users\Razvan\Desktop\pgfouine-1.2>php pgfouine.php -file log > report.html

pgFouine did not find any valid PostgreSQL log line in your log file: 
* check that PostgreSQL uses an english locale for logging (lc_messages in your postgresql.conf), 
* check that you use the -logtype option (syslog, stderr) according to your log file, 
* if you use syslog and log_line_prefix, check that your log_line_prefix has a trailing space, 
* if you use stderr, check that your log_line_prefix is of the form '%t [%p]: [%l-1] '. 
If you think your log file and your options are correct, please contact the author (gsmet on #[email protected] or guillaume-pg at smet dot org). 

Estoy utilizando el archivo de registro que se encuentra en C:\Program Files\PostgreSQL\9.1\data\pg_log

I intentó ajustes variados, pero nada funcionó y tampoco pude encontrar ninguna solución en internet.

Gracias por su ayuda!

+0

puedes mostrar las primeras líneas de su archivo de registro? –

+0

@ DanielVérité: Aquí hay algunas líneas desde el comienzo del archivo de registro: http://paste2.org/p/2027616 –

Respuesta

6

Trate de añadir la opción tiporegistro:

pgfouine -logtype stderr -file filename 
+0

Muchas gracias, eso lo hizo funcionar :) –

+0

¿Dónde debería agregar el código anterior? ¿En el archivo de registro o en el archivo postgresql.conf? – Jay

+0

@Jay: es un comando que escribe en un intérprete de shell. Ver la documentación de pgfouine. –

Cuestiones relacionadas