vBulletin Search Engine Optimization
| |||||||
| Register | FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| ||||
| I have most entries split over several lines: Jun 29 19:56:40 db.xxx.xxx postgres[10640]: [5-1] DB=XXX U=XXX H=1.1.1.1 16854186.2190 idleLOG: Verbindungsende: Sitzungszeit: 0:01:22.10 Jun 29 19:56:40 db.xxx.xxx postgres[10640]: [5-2] Benutzer=xxx Datenbank=xxxx Host=1.1.1.1 port=23640 Is it possible to tell postgres to split entries only after 200 chars, not already at about 80? 200 should fit most log lines into one entry. mfg zmi -- // Michael Monnerie, Ing.BSc ----- http://it-management.at // Tel: 0676/846 914 666 .network.your.ideas. // PGP Key: "curl -s http://zmi.at/zmi.asc | gpg --import" // Fingerprint: EA39 8918 EDFF 0A68 ACFB 11B7 BA2D 060F 1C6F E6B0 // Keyserver: www.keyserver.net Key-ID: 1C6FE6B0 -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.5 (GNU/Linux) iD8DBQBGhUniui0GDxxv5rARAhtcAJ9M0zf+F8Ao2NVi/W6Agc3Tm3nk0QCaArWp 7QqmeCq2A6sRYDWicwq+Aqs= =kfVb -----END PGP SIGNATURE----- |
| |||
| On Freitag, 29. Juni 2007 Michael Monnerie wrote: > I have most entries split over several lines: > > Jun 29 19:56:40 db.xxx.xxx postgres[10640]: [5-1] DB=XXX U=XXX > H=1.1.1.1 16854186.2190 idleLOG: Verbindungsende: Sitzungszeit: > 0:01:22.10 Jun 29 19:56:40 db.xxx.xxx postgres[10640]: [5-2] > Benutzer=xxx Datenbank=xxxx Host=1.1.1.1 port=23640 > > Is it possible to tell postgres to split entries only after 200 > chars, not already at about 80? 200 should fit most log lines into > one entry. Is this the wrong question for this list? Where should I post this? mfg zmi -- // Michael Monnerie, Ing.BSc ----- http://it-management.at // Tel: 0676/846 914 666 .network.your.ideas. // PGP Key: "curl -s http://zmi.at/zmi.asc | gpg --import" // Fingerprint: EA39 8918 EDFF 0A68 ACFB 11B7 BA2D 060F 1C6F E6B0 // Keyserver: www.keyserver.net Key-ID: 1C6FE6B0 -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.5 (GNU/Linux) iD8DBQBGnfH6ui0GDxxv5rARAtkXAKCxNPnW25OaG941Wl59R4 6kHr9KKgCgnju1 MGqAeYIEjN/41Cscdqaz7yM= =eWNF -----END PGP SIGNATURE----- |
| |||
| Michael Monnerie wrote: > On Freitag, 29. Juni 2007 Michael Monnerie wrote: > > I have most entries split over several lines: > > > > Jun 29 19:56:40 db.xxx.xxx postgres[10640]: [5-1] DB=XXX U=XXX > > H=1.1.1.1 16854186.2190 idleLOG: Verbindungsende: Sitzungszeit: > > 0:01:22.10 Jun 29 19:56:40 db.xxx.xxx postgres[10640]: [5-2] > > Benutzer=xxx Datenbank=xxxx Host=1.1.1.1 port=23640 > > > > Is it possible to tell postgres to split entries only after 200 > > chars, not already at about 80? 200 should fit most log lines into > > one entry. Postgres does not split entries. They are split by infelicities in the underlying facilities used (pipes). There's ongoing work to fix this problem. In the meantime, I think you could work around it by using syslog instead of redirect_stderr. -- Alvaro Herrera http://www.PlanetPostgreSQL.org/ "La primera ley de las demostraciones en vivo es: no trate de usar el sistema. Escriba un guión que no toque nada para no causar daños." (Jakob Nielsen) ---------------------------(end of broadcast)--------------------------- TIP 1: if posting/reading through Usenet, please send an appropriate subscribe-nomail command to majordomo@postgresql.org so that your message can get through to the mailing list cleanly |
| ||||
| On Mittwoch, 18. Juli 2007 Alvaro Herrera wrote: > Postgres does not split entries. *They are split by infelicities in > the underlying facilities used (pipes). *There's ongoing work to fix > this problem. *In the meantime, I think you could work around it by > using syslog instead of redirect_stderr. This *is* syslog. Can I specify line length there? This is one log entry (from a long query) split over 2374 lines: Jul 20 14:13:55 db1.zmi.at postgres[9596]: [3-1] DB=bayes_db U=bayes_server_33 H=123.132.123.123 42a0a3f9.237c SELECT:LOG: Dauer: 7420.180 ms Anweisung: select put_tokens(1, Jul 20 14:13:55 db1.zmi.at postgres[9596]: [3-2] '{"\\\\000\\\\003\\\\335\\\\131\\\\354","\\\\000\\ \\013\\\\067\\\\227\\\\250","\\\\000\\\\015\\\\012 \\\\267\\\\317","\\\\000\\\ [snip] Jul 20 14:13:56 db1.zmi.at postgres[9596]: [3-2372] \\377\\\\333\\\\246\\\\200\\\\040","\\\\377\\\\334 \\\\047\\\\144\\\\105","\\\\377\\\\363\\\\043\\\\0 77\\\\354","\\\\377\\\\370\\ Jul 20 14:13:56 db1.zmi.at postgres[9596]: [3-2373] \\066\\\\152\\\\106","\\\\377\\\\376\\\\045\\\\100 \\\\172"}', Jul 20 14:13:56 db1.zmi.at postgres[9596]: [3-2374] 0, 1, 1184933549) And where could I configure to have english, not german, postgres logs? mfg zmi -- // Michael Monnerie, Ing.BSc ----- http://it-management.at // Tel: 0676/846 914 666 .network.your.ideas. // PGP Key: "curl -s http://zmi.at/zmi.asc | gpg --import" // Fingerprint: EA39 8918 EDFF 0A68 ACFB 11B7 BA2D 060F 1C6F E6B0 // Keyserver: www.keyserver.net Key-ID: 1C6FE6B0 -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.5 (GNU/Linux) iD8DBQBGoRXzui0GDxxv5rARAsn4AJ9tt2n+2Y10yXm44+O2DW KtAYYTwQCg2zfg K0B7KPyN9oTECJGWXsNlHI4= =ZWfd -----END PGP SIGNATURE----- |