-
Notifications
You must be signed in to change notification settings - Fork 4.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add support for multi-core thread_id in filebeat postgresql module #9482
Changes from 2 commits
8559911
2ab0cc0
993133d
5975436
6144e56
ebcca13
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Large diffs are not rendered by default.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
2018-11-17 13:14:01 CEST [12975-1] [unknown]@[unknown] LOG: incomplete startup packet | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Add the expected file for this one please, I mentioned to remove the other one that was not related to this change. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @jsoriano yes! I added it in the previous commit but the @timestamp failed on check job. That's why I tried to remove it to see if the check job will pass :-) I will definitely put it back in. |
||
2018-11-17 13:16:03 CEST [5404-1] postgres@user FATAL: database "user" does not exist | ||
2018-11-17 13:39:21 CEST [5404-2] postgres@postgres LOG: duration: 37.598 ms statement: SELECT n.nspname as "Schema", | ||
c.relname as "Name", | ||
CASE c.relkind WHEN 'r' THEN 'table' WHEN 'v' THEN 'view' WHEN 'm' THEN 'materialized view' WHEN 'i' THEN 'index' WHEN 'S' THEN 'sequence' WHEN 's' THEN 'special' WHEN 'f' THEN 'foreign table' END as "Type", | ||
pg_catalog.pg_get_userbyid(c.relowner) as "Owner" | ||
FROM pg_catalog.pg_class c | ||
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace | ||
WHERE c.relkind IN ('r','') | ||
AND n.nspname <> 'pg_catalog' | ||
AND n.nspname <> 'information_schema' | ||
AND n.nspname !~ '^pg_toast' | ||
AND pg_catalog.pg_table_is_visible(c.oid) | ||
ORDER BY 1,2; | ||
2018-11-17 13:39:22 EST [835-1] LOG: autovacuum launcher started | ||
2018-11-17 13:41:38 EST [832-1] LOG: checkpoints are occurring too frequently (25 seconds apart) | ||
2018-11-17 13:41:38 EST [832-2] HINT: Consider increasing the configuration parameter "max_wal_size". | ||
2018-11-17 13:53:56 EST [768-1] postgres@postgres FATAL: the database system is starting up | ||
2018-11-17 13:53:57 EST [771-1] postgres@postgres FATAL: the database system is starting up |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Add also a reference to this PR please
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
yep! will do!