2023-09-18 15:32:43 +02:00
{ config , pkgs , . . . }:
{
2023-09-18 16:22:12 +02:00
# Systemd Journal Monitoring.
# Alternative:
# journal-biref
# https://github.com/twaugh/journal-brief
# https://opensource.com/article/20/7/systemd-journals-email
2023-09-18 15:32:43 +02:00
# Write to Systemd Journal:
# echo 'hello' | systemd-cat -p emerg
# echo 'hello' | systemd-cat -t someapp -p emerg
# View Systemd Journal.
2023-09-27 17:05:01 +02:00
# Output similar to dmesg
# journalctl -b -k
2023-09-18 15:32:43 +02:00
# Filter by app:
# journalctl -b -t someapp
# Filter by priority:
# journalctl -b -p 5
# Manually execute journalwatch timer:
# sudo systemctl start journalwatch.service
2023-10-11 19:12:57 +02:00
# View generated journalwatch config:
# cat "$(systemctl show -P FragmentPath journalwatch.service)" | grep XDG_CONFIG_HOME
# #=> /nix/store/vzfvp7kizycs6lnks6icmlw3h1x6p7la-journalwatch-config
# cat /nix/store/vzfvp7kizycs6lnks6icmlw3h1x6p7la-journalwatch-config/journalwatch/config
# cat /nix/store/vzfvp7kizycs6lnks6icmlw3h1x6p7la-journalwatch-config/journalwatch/patterns
2023-09-18 15:32:43 +02:00
# Find a message and view its details
# journalctl -b -p5 -o json-pretty
2023-10-11 19:12:57 +02:00
# Then press "/", enter a pattern and press "Enter".
2023-09-18 15:32:43 +02:00
assertions = [ {
assertion = config . services . opensmtpd . enable ;
message = " j o u r n a l w a t c h r e q u i r e s a c o n f i g u r e d s e n d m a i l M T A , s e e s e n d m a i l - m t a . n i x . " ;
} ] ;
services . journalwatch = {
enable = true ;
2023-11-22 15:14:29 +01:00
# Same as configured by sendmail MTA.
2023-09-18 15:32:43 +02:00
mailFrom = " l a n g b e i n @ m a i l . d e " ;
mailTo = " d a n i e l + j o u r n a l w a t c h @ s y s t e m l i . o r g " ;
#interval = "hourly";
2023-09-27 16:44:56 +02:00
# Lowest priority of message to be considered. A value between 7 (“debug”), and 0 (“emerg”). Defaults to 6 (“info”). If you don't care about anything with “info” priority, you can reduce this to e.g. 5 (“notice”) to considerably reduce the amount of messages without needing many filterBlocks.
2023-09-18 15:32:43 +02:00
priority = 5 ;
# Default patterns: https://github.com/The-Compiler/journalwatch/blob/363725ac4b8aa841d87654fa8a63403a59ad1275/journalwatch.py#L71
2023-09-29 17:25:03 +02:00
# If the value of `match` starts and ends with a forward-slash, it is interpreted as a regular expression, if not, it's an exact match.
2023-09-18 15:32:43 +02:00
# `filters` are always regular expressions.
# All regular expressions have to match the full string!
2023-09-30 23:20:39 +02:00
#
2023-10-11 19:12:57 +02:00
# TODO: To insert `\` in the generated configuration, we have to use "\\" in double-quoted strings.
2023-09-30 23:20:39 +02:00
# TODO: A ''\s'' in the multiline string `filter` is inserted as `\s` in the generated config file.
#
2023-09-18 15:32:43 +02:00
filterBlocks = [
2023-09-20 15:39:26 +02:00
2023-09-29 13:10:26 +02:00
#
# _TRANSPORT
#
{ # yodaNas
filters = ''
2023-11-03 16:11:40 +01:00
booting system configuration /nix/store / \ S +
2023-09-29 13:10:26 +02:00
'' ;
match = " _ T R A N S P O R T = k e r n e l " ;
}
2023-09-23 19:16:38 +02:00
#
# _SYSTEMD_CGROUP
#
{ # yodaYoga
filters = ''
2023-09-27 16:44:56 +02:00
parent not found ! continent_id [ 0 -9 ] +
2023-09-23 19:16:38 +02:00
'' ;
match = " _ S Y S T E M D _ C G R O U P = / s y s t e m . s l i c e / d o c k e r . s e r v i c e " ;
}
2023-09-29 17:25:03 +02:00
#
# CONTAINER_NAME
#
{ # yodaNas
filters = ''
. *
'' ;
2024-08-24 13:22:13 +02:00
match = " C O N T A I N E R _ N A M E = / ( n c _ w e b _ [ ^ - _ \\ s ] + | n g i n x _ a r c h \\ . p 1 s t \\ . d e | r e c i p e \\ . p r i v a c y 1 s t \\ . d e _ n g i n x | n g i n x _ p r i v a c y 1 s t \\ . d e ) / " ;
2023-09-29 17:25:03 +02:00
}
{ # yodaNas
# TODO: Open issue on GitHub https://github.com/nginx-proxy/nginx-proxy/issues/1256. Maybe set env variable RESOLVERS=1.1.1.1?
filters = ''
2023-10-03 18:40:41 +02:00
\ S + \ S + \ [ warn \ ] [ 0 -9 ] + #[0-9]+: no resolver defined to resolve r3\.o\.lencr\.org while requesting certificate status, responder: r3\.o\.lencr\.org, certificate: "/etc/nginx/certs/\S+\.crt"
\ S + \ S + \ [ error \ ] [ 0 -9 ] + #[0-9]+: OCSP responder sent invalid "Content-Type" header: "text/html" while requesting certificate status, responder: r3\.o\.lencr\.org, peer: \S+, certificate: "/etc/nginx/certs/\S+\.crt"
2023-11-11 12:04:28 +01:00
\ S + \ S + \ [ error \ ] [ 0 -9 ] + #[0-9]+: recv\(\) failed \(111: Connection refused\) while requesting certificate status, responder: r3\.o\.lencr\.org, peer: \S+, certificate: "/etc/nginx/certs/\S+\.crt"
2023-11-14 11:13:23 +01:00
\ S + \ S + \ [ error \ ] [ 0 -9 ] + #[0-9]+: recv\(\) failed \(104: Connection reset by peer\) while requesting certificate status, responder: r3\.o\.lencr\.org, peer: \S+, certificate: "/etc/nginx/certs/\S+\.crt"
2023-11-11 12:04:28 +01:00
\ S + \ S + \ [ error \ ] [ 0 -9 ] + #[0-9]+: OCSP responder prematurely closed connection while requesting certificate status, responder: r3\.o\.lencr\.org, peer: \S+, certificate: "/etc/nginx/certs/\S+\.crt"
2023-11-08 19:34:23 +01:00
#
2024-02-23 17:48:46 +01:00
\ S + \ S + \ [ error \ ] [ 0 -9 ] + #[0-9]+: \*[0-9]+ upstream timed out \(110: Operation timed out\) while reading upstream, client: .*"
\ S + \ S + \ [ error \ ] [ 0 -9 ] + #[0-9]+: \*[0-9]+ connect\(\) failed \(111: Connection refused\) while connecting to upstream, client: .*"
\ S + \ S + \ [ error \ ] [ 0 -9 ] + #[0-9]+: \*[0-9]+ upstream prematurely closed connection while reading response header from upstream, client: .*"
2023-09-29 17:25:03 +02:00
'' ;
match = " C O N T A I N E R _ N A M E = n g i n x - p r o x y " ;
}
2023-09-24 22:07:58 +02:00
#
# IMAGE_NAME
#
2023-09-30 15:58:06 +02:00
{ # yodaNas, yodaYoga
2023-09-24 22:07:58 +02:00
filters = ''
2023-09-29 17:25:03 +02:00
. *
2023-09-24 22:07:58 +02:00
'' ;
2024-08-24 13:22:13 +02:00
match = " I M A G E _ N A M E = / ( p 1 s t / d o c k e r - g e n : . + | n g i n x p r o x y / a c m e - c o m p a n i o n | t h e t o r p r o j e c t / s n o w f l a k e - p r o x y : . + | c o l l a b o r a / c o d e | w o r d p r e s s | d a n i e l s z a b o 9 9 / m i c r o b i n | p 1 s t / m a s t o d o n - t o o t - f o l l o w e r : . + | b r o w s e r l e s s / c h r o m e | v a b e n e 1 1 1 1 / r e c i p e s ) / " ;
2023-09-30 14:25:11 +02:00
}
2023-09-30 15:58:06 +02:00
{ # yodaNas
2023-09-30 14:25:11 +02:00
filters = ''
2023-10-03 16:10:21 +02:00
\ S + \ S + \ [ error \ ] [ 0 -9 ] + #[0-9]+: \S+ open\(\) "/usr/share/nginx/html/robots\.txt" failed \(2: No such file or directory\), client: \S+, server: localhost, request: "GET /robots\.txt HTTP/[^"]+", host: "[^"]+"
#
2023-10-08 16:31:33 +02:00
\ S + \ S + \ [ notice \ ] [ 0 -9 ] + #[0-9]+: signal 3 \(SIGQUIT\) received, shutting down
\ S + \ S + \ [ notice \ ] [ 0 -9 ] + #[0-9]+: gracefully shutting down
\ S + \ S + \ [ notice \ ] [ 0 -9 ] + #[0-9]+: exiting
\ S + \ S + \ [ notice \ ] [ 0 -9 ] + #[0-9]+: exit
\ S + \ S + \ [ notice \ ] [ 0 -9 ] + #[0-9]+: signal 17 \(SIGCHLD\) received from [0-9]+
\ S + \ S + \ [ notice \ ] [ 0 -9 ] + #[0-9]+: worker process [0-9]+ exited with code 0
2023-10-03 16:10:21 +02:00
#
2023-10-16 14:37:59 +02:00
\ S + \ S + \ [ notice \ ] [ 0 -9 ] + #[0-9]+: signal 29 \(SIGIO\) received
#
2023-10-08 16:31:33 +02:00
\ S + \ S + \ [ notice \ ] [ 0 -9 ] + #[0-9]+: signal 1 \(SIGHUP\) received, reconfiguring
\ S + \ S + \ [ notice \ ] [ 0 -9 ] + #[0-9]+: reconfiguring
\ S + \ S + \ [ notice \ ] [ 0 -9 ] + #[0-9]+: using the "epoll" event method
\ S + \ S + \ [ notice \ ] [ 0 -9 ] + #[0-9]+: nginx/\S+
2023-10-09 13:12:36 +02:00
\ S + \ S + \ [ notice \ ] [ 0 -9 ] + #[0-9]+: built by gcc \S+ \S+ \(Alpine \S+\)
2023-10-08 16:31:33 +02:00
\ S + \ S + \ [ notice \ ] [ 0 -9 ] + #[0-9]+: OS: Linux \S+
\ S + \ S + \ [ notice \ ] [ 0 -9 ] + #[0-9]+: getrlimit\(RLIMIT_NOFILE\): [0-9]+:[0-9]+
\ S + \ S + \ [ notice \ ] [ 0 -9 ] + #[0-9]+: start worker processes
\ S + \ S + \ [ notice \ ] [ 0 -9 ] + #[0-9]+: start worker process [0-9]+
2023-09-30 14:25:11 +02:00
'' ;
2023-10-11 19:12:57 +02:00
match = " I M A G E _ N A M E = / n g i n x : \\ S + / " ;
2023-09-24 22:07:58 +02:00
}
2023-09-29 13:10:26 +02:00
{ # yodaNas
2023-10-11 19:12:57 +02:00
# TODO: logged IP is not the public one, but always 172.24.0.6.
2023-09-29 13:10:26 +02:00
filters = ''
Could not yet connect with DB \ . Retrying in 1 0 s \ . \ . \ .
2023-10-03 16:10:21 +02:00
Nextcloud or one of the apps require upgrade - only a limited number of commands are available
You may use your browser or the occ upgrade command to do the upgrade
\ [ \ S + \ S + \ ] NOTICE : ready to handle connections
2024-03-06 14:14:02 +01:00
#
\ s + Starting . . .
\ s + [ 0 -9 ] + / [ 0 -9 ] + \ [ [ >= - ] + \ ] [ 0 -9 ] + % Starting . . .
\ s + [ 0 -9 ] + / [ 0 -9 ] + \ [ [ >= - ] + \ ] [ 0 -9 ] + %
2024-08-24 15:08:42 +02:00
\ s + [ 0 -9 ] + / [ 0 -9 ] + \ [ [ >= - ] + \ ] \ s + [ 0 -9 ] + % \ s + [ 0 -9 ] + \ [ [ >= - ] + \ ]
2024-03-06 14:14:02 +01:00
#
\ s + [ 0 -9 ] + \ [ [ >= - ] + \ ] [ 0 -9 ] + \ [ [ >= - ] + \ ]
\ s + [ 0 -9 ] + \ [ [ >= - ] + \ ]
\ s + [ 0 -9 ] + \ [ [ >= - ] + \ ] \ [ \ S + \ S + \ ] NOTICE : fpm is running , pid [ 0 -9 ] +
2023-10-03 16:10:21 +02:00
\ [ \ S + \ S + \ ] NOTICE : fpm is running , pid [ 0 -9 ] +
2023-11-24 13:55:08 +01:00
mimetypelist \ . js is updated
2023-10-04 11:30:21 +02:00
\ [ \ S + \ S + \ ] NOTICE : Finishing \ . \ . \ .
\ [ \ S + \ S + \ ] NOTICE : exiting , bye-bye !
2023-10-05 13:20:30 +02:00
# Ignore: At least one idle child was left.
\ [ \ S + \ S + \ ] WARNING : \ [ pool www \ ] seems busy \ ( you may need to increase pm \ . start_servers , or pm \ .min/max_spare_servers \ ) , spawning [ 0 -9 ] + children , there are [ 1 -9 ] [ 0 -9 ] * idle , and [ 0 -9 ] + total children
2023-10-12 22:46:41 +02:00
\ [ \ S + \ S + \ ] WARNING : \ [ pool www \ ] seems busy \ ( you may need to increase pm \ . start_servers , or pm \ .min/max_spare_servers \ ) , spawning [ 1 -9 ] [ 0 -9 ] * children , there are 0 idle , and [ 0 -9 ] + total children
2023-10-03 16:10:21 +02:00
#
2023-09-29 13:10:26 +02:00
# 1.1.1.1 - 28/Sep/2023:21:03:39 +0000 "GET /status.php" 200
# 1.1.1.1 - 28/Sep/2023:21:12:16 +0000 "GET /index.php" 200
# 1.1.1.1 - my-username 28/Sep/2023:21:20:16 +0000 "DELETE /index.php" 200
# 1.1.1.1 - my-username 28/Sep/2023:21:10:18 +0000 "PROPFIND /remote\.php" 207
# 1.1.1.1 - my-username 28/Sep/2023:21:11:48 +0000 "GET /ocs/v2.php" 304
# 1.1.1.1 - 28/Sep/2023:21:13:10 +0000 "GET /ocs/v2.php" 304
2024-08-17 18:26:33 +02:00
[ 0 -9 ] + \ . [ 0 -9 ] + \ . [ 0 -9 ] + \ . [ 0 -9 ] + - \ S * \ S + \ + 0000 " ( D E L E T E | G E T | H E A D | O P T I O N S | P A T C H | P O S T | P R O P F I N D | P U T ) / ( i n d e x | s t a t u s ) \. p h p " ( 200 | 201 | 204 | 206 | 302 | 303 | 304 | 400 | 401 | 403 | 404 | 405 | 409 | 412 | 422 | 423 | 500 )
[ 0 -9 ] + \ . [ 0 -9 ] + \ . [ 0 -9 ] + \ . [ 0 -9 ] + - \ S * \ S + \ + 0000 " ( D E L E T E | G E T | H E A D | M K C O L | M O V E | O P T I O N S | P A T C H | P O S T | P R O P P A T C H | P R O P F I N D | P U T | R E P O R T | S E A R C H ) / r e m o t e \. p h p " ( 200 | 201 | 204 | 206 | 207 | 400 | 401 | 404 | 405 | 412 | 415 | 416 | 423 | 500 | 501 )
[ 0 -9 ] + \ . [ 0 -9 ] + \ . [ 0 -9 ] + \ . [ 0 -9 ] + - \ S * \ S + \ + 0000 " ( D E L E T E | G E T | P A T C H | P O S T | P U T ) / o c s / ( v 1 | v 2 ) \. p h p " ( 200 | 201 | 202 | 204 | 304 | 401 | 403 | 404 | 412 | 500 )
2024-08-20 16:41:51 +02:00
[ 0 -9 ] + \ . [ 0 -9 ] + \ . [ 0 -9 ] + \ . [ 0 -9 ] + - \ S * \ S + \ + 0000 " ( G E T | H E A D ) / ( o c m | o c s ) - p r o v i d e r / i n d e x \. p h p " 200
2024-01-12 13:36:15 +01:00
[ 0 -9 ] + \ . [ 0 -9 ] + \ . [ 0 -9 ] + \ . [ 0 -9 ] + - \ S * \ S + \ + 0000 " ( D E L E T E | G E T | M K C O L | M O V E | P R O P F I N D | P U T ) / p u b l i c \. p h p " ( 200 | 201 | 204 | 207 | 401 | 403 | 404 )
2023-09-29 13:10:26 +02:00
'' ;
2023-11-22 21:38:10 +01:00
match = " I M A G E _ N A M E = / p 1 s t / n e x t c l o u d : ( 2 5 | 2 6 | 2 7 | s t a b l e ) - f p m - a l p i n e / " ;
2023-09-29 13:10:26 +02:00
}
2024-01-06 21:50:12 +01:00
{ # yodaNas
filters = ''
\ s + [ 0 -9 ] + \ [ [ > - ] + \ ] [ 0 -9 ] + \ [ [ > - ] + \ ]
\ s + [ 0 -9 ] + \ [ [ > - ] + \ ]
\ s + [ 0 -9 ] + \ [ [ > - ] + \ ] \ [ \ S + \ S + \ ] NOTICE : fpm is running , pid [ 0 -9 ] +
'' ;
match = " I M A G E _ N A M E = / n c _ a p p _ [ ^ - _ \\ s ] + / " ;
}
2023-10-03 15:32:39 +02:00
{ # yodaNas
filters = ''
2023-10-03 19:18:28 +02:00
\ S + \ S + 0 \ [ Note \ ] Starting MariaDB \ S + source revision \ S + as process 1
\ S + \ S + 0 \ [ Note \ ] InnoDB : Compressed tables use zlib \ S +
\ S + \ S + 0 \ [ Note \ ] InnoDB : Number of transaction pools : 1
\ S + \ S + 0 \ [ Note \ ] InnoDB : Using crc32 \ + pclmulqdq instructions
\ S + \ S + 0 \ [ Note \ ] InnoDB : Using liburing
\ S + \ S + 0 \ [ Note \ ] InnoDB : Initializing buffer pool , total size = 1 \ . 0 0 0 GiB , chunk size = 16 \ . 0 0 0 MiB
\ S + \ S + 0 \ [ Note \ ] InnoDB : Completed initialization of buffer pool
\ S + \ S + 0 \ [ Note \ ] InnoDB : Buffered log writes \ ( block size = 512 bytes \ )
\ S + \ S + 0 \ [ Note \ ] InnoDB : End of log at LSN = \ S +
2023-10-04 14:04:19 +02:00
\ S + \ S + 0 \ [ Note \ ] InnoDB : Opened 3 undo tablespaces
\ S + \ S + 0 \ [ Note \ ] InnoDB : 128 rollback segments in 3 undo tablespaces are active \ .
\ S + \ S + 0 \ [ Note \ ] InnoDB : 128 rollback segments are active \ .
2023-10-03 19:18:28 +02:00
\ S + \ S + 0 \ [ Note \ ] InnoDB : Setting file ' \ . / \ S + ' size to 12 \ . 0 0 0 MiB \ . Physically writing the file full ; Please wait \ . \ . \ .
\ S + \ S + 0 \ [ Note \ ] InnoDB : File ' \ . / \ S + ' size is now 12 \ . 0 0 0 MiB \ .
\ S + \ S + 0 \ [ Note \ ] InnoDB : log sequence number \ S + ; transaction id \ S +
\ S + \ S + 0 \ [ Note \ ] InnoDB : Loading buffer pool \ ( s \ ) from /var/lib/mysql/ib_buffer_pool
\ S + \ S + 0 \ [ Note \ ] InnoDB : Read redo log up to LSN = \ S +
\ S + \ S + 0 \ [ Note \ ] InnoDB : Buffer pool \ ( s \ ) load completed at \ S + \ S +
\ S + \ S + 0 \ [ Note \ ] Plugin ' FEEDBACK' is disabled \ .
\ S + \ S + 0 \ [ Note \ ] Server socket created on IP : ' 0 .0 .0 . 0 ' \ .
\ S + \ S + 0 \ [ Note \ ] Server socket created on IP : ' : : ' \ .
\ S + \ S + 0 \ [ Note \ ] mariadbd : ready for connections \ .
Version : ' \ S + ' socket : ' /run/mysqld/mysqld.sock ' port : \ S + mariadb \ . org binary distribution
#
2023-10-03 15:32:39 +02:00
\ S + \ S + 0 \ [ Note \ ] mariadbd \ ( initiated by : unknown \ ) : Normal shutdown
\ S + \ S + 0 \ [ Note \ ] InnoDB : FTS optimize thread exiting \ .
\ S + \ S + 0 \ [ Note \ ] InnoDB : Starting shutdown \ . \ . \ .
\ S + \ S + 0 \ [ Note \ ] InnoDB : Dumping buffer pool \ ( s \ ) to /var/lib/mysql/ib_buffer_pool
\ S + \ S + 0 \ [ Note \ ] InnoDB : Buffer pool \ ( s \ ) dump completed at \ S + \ S +
\ S + \ S + 0 \ [ Note \ ] InnoDB : Removed temporary tablespace data file : " \. / i b t m p 1 "
\ S + \ S + 0 \ [ Note \ ] InnoDB : Shutdown completed ; log sequence number \ S + ; transaction id \ S +
\ S + \ S + 0 \ [ Note \ ] mariadbd : Shutdown complete
\ s *
'' ;
2023-10-04 14:04:19 +02:00
match = " I M A G E _ N A M E = / m a r i a d b ( : . + ) ? / " ;
2023-10-03 15:32:39 +02:00
}
{ # yodaNas
filters = ''
2024-08-24 15:08:42 +02:00
\ S + \ S + UTC \ [ [ 0 -9 ] + \ ] LOG : \ s + starting PostgreSQL \ S + on x86_64-pc-linux-musl , compiled by gcc \ ( Alpine \ S + \ ) \ S + \ S + , 6 4 - bit
2024-02-23 14:10:04 +01:00
\ S + \ S + UTC \ [ [ 0 -9 ] + \ ] LOG : \ s + checkpoint starting : time
#
2023-10-16 16:09:17 +02:00
\ S + \ S + UTC \ [ [ 0 -9 ] + \ ] LOG : \ s + listening on IPv4 address \ S + , port 5432
\ S + \ S + UTC \ [ [ 0 -9 ] + \ ] LOG : \ s + listening on IPv6 address \ S + , port 5432
\ S + \ S + UTC \ [ [ 0 -9 ] + \ ] LOG : \ s + listening on Unix socket \ S +
2023-10-16 14:37:59 +02:00
\ S + \ S + UTC \ [ [ 0 -9 ] + \ ] LOG : \ s + database system was shut down at \ S + \ S + UTC
\ S + \ S + UTC \ [ [ 0 -9 ] + \ ] LOG : \ s + database system is ready to accept connections
2023-10-04 14:04:19 +02:00
#
2023-10-16 14:37:59 +02:00
\ S + \ S + UTC \ [ [ 0 -9 ] + \ ] LOG : \ s + received fast shutdown request
\ S + \ S + UTC \ [ [ 0 -9 ] + \ ] LOG : \ s + aborting any active transactions
\ S + \ S + UTC \ [ [ 0 -9 ] + \ ] FATAL : \ s + terminating connection due to administrator command
\ S + \ S + UTC \ [ [ 0 -9 ] + \ ] LOG : \ s + shutting down
\ S + \ S + UTC \ [ [ 0 -9 ] + \ ] LOG : \ s + database system is shut down
2024-02-22 15:11:02 +01:00
#
\ S + \ S + UTC \ [ [ 0 -9 ] + \ ] LOG : \ s + checkpoint starting : shutdown immediate
\ S + \ S + UTC \ [ [ 0 -9 ] + \ ] LOG : \ s + checkpoint complete : . *
# background worker "logical replication launcher" (PID 28) exited with exit code 1 -> See https://postgrespro.com/list/thread-id/2498034
2023-10-03 15:32:39 +02:00
'' ;
2023-10-20 12:44:51 +02:00
match = " I M A G E _ N A M E = / p o s t g r e s : . + / " ;
2023-10-03 15:32:39 +02:00
}
2023-09-29 13:10:26 +02:00
{ # yodaNas
filters = ''
2023-10-16 14:37:59 +02:00
\ S + [ 0 -9 ] + \ [ System \ ] \ [ MY- [ 0 -9 ] + \ ] \ [ Server \ ] MySQL Server - start \ .
\ S + [ 0 -9 ] + \ [ Warning \ ] \ [ MY- [ 0 -9 ] + \ ] \ [ Server \ ] Plugin mysql_native_password reported : '' ' m y s q l _ n a t i v e _ p a s s w o r d ' i s d e p r e c a t e d a n d w i l l b e r e m o v e d i n a f u t u r e r e l e a s e \ . P l e a s e u s e c a c h i n g _ s h a 2 _ p a s s w o r d i n s t e a d '
\ S + [ 0 -9 ] + \ [ System \ ] \ [ MY- [ 0 -9 ] + \ ] \ [ Server \ ] /usr/sbin/mysqld \ ( mysqld \ S + \ ) starting as process 1
\ S + [ 0 -9 ] + \ [ System \ ] \ [ MY- [ 0 -9 ] + \ ] \ [ InnoDB \ ] InnoDB initialization has started \ .
\ S + [ 0 -9 ] + \ [ System \ ] \ [ MY- [ 0 -9 ] + \ ] \ [ InnoDB \ ] InnoDB initialization has ended \ .
\ S + [ 0 -9 ] + \ [ Warning \ ] \ [ MY- [ 0 -9 ] + \ ] \ [ Server \ ] CA certificate ca \ . pem is self signed \ .
2023-10-16 16:09:17 +02:00
\ S + [ 0 -9 ] + \ [ System \ ] \ [ MY- [ 0 -9 ] + \ ] \ [ Server \ ] Channel mysql_main configured to support TLS \ . Encrypted connections are now supported for this channel \ . +
\ S + [ 0 -9 ] + \ [ Warning \ ] \ [ MY- [ 0 -9 ] + \ ] \ [ Server \ ] Insecure configuration for - - pid-file : Location ' /var/run/mysqld ' in the path is accessible to all OS users \ . Consider choosing a different directory \ . +
2023-11-16 11:05:59 +01:00
\ S + [ 0 -9 ] + \ [ Warning \ ] \ [ MY- [ 0 -9 ] + \ ] \ [ Server \ ] The syntax ' - - skip-host-cache' is deprecated and will be removed in a future release \ . Please use SET GLOBAL host_cache_size = 0 instead \ .
\ S + [ 0 -9 ] + \ [ Warning \ ] \ [ MY- [ 0 -9 ] + \ ] \ [ Server \ ] ' SET_USER_ID' \ ( granted to ' \ S + ' \ ) is deprecated and will be removed in a future release \ .
2023-10-16 14:37:59 +02:00
\ S + [ 0 -9 ] + \ [ System \ ] \ [ MY- [ 0 -9 ] + \ ] \ [ Server \ ] X Plugin ready for connections \ . Bind-address : ' : : ' port : 33060 , socket : /var/run/mysqld/mysqlx \ . sock
\ S + [ 0 -9 ] + \ [ System \ ] \ [ MY- [ 0 -9 ] + \ ] \ [ Server \ ] /usr/sbin/mysqld : ready for connections \ . Version : ' \ S + ' socket : ' /var/run/mysqld/mysqld \ . sock' port : 3306 MySQL Community Server - GPL \ .
2023-10-16 16:09:17 +02:00
#
\ S + [ 0 -9 ] + \ [ System \ ] \ [ MY- [ 0 -9 ] + \ ] \ [ Server \ ] Received SHUTDOWN from user < via user signal > \ . Shutting down mysqld \ ( Version : \ S + \ ) \ .
\ S + [ 0 -9 ] + \ [ System \ ] \ [ MY- [ 0 -9 ] + \ ] \ [ Server \ ] /usr/sbin/mysqld : Shutdown complete \ ( mysqld \ S + \ ) MySQL Community Server - GPL \ .
\ S + [ 0 -9 ] + \ [ System \ ] \ [ MY- [ 0 -9 ] + \ ] \ [ Server \ ] MySQL Server - end \ .
2023-09-29 13:10:26 +02:00
'' ;
match = " I M A G E _ N A M E = / m y s q l : [ 0 - 9 ] + / " ;
}
{ # yodaNas
filters = ''
2023-10-03 19:18:28 +02:00
crond : crond \ ( busybox \ S + \ ) started , log level [ 0 -9 ] +
2023-10-03 16:15:18 +02:00
crond : USER root pid \ s + [ 0 -9 ] + cmd wget - qO- http://money \ . p1st \ . de:8080/api/v1/cron/ \ S + > /proc/1/fd/1 2 > /proc/1/fd/2
2023-09-29 13:10:26 +02:00
'' ;
match = " I M A G E _ N A M E = b u s y b o x " ;
}
2023-10-03 19:03:59 +02:00
{ # yodaNas
filters = ''
2023-10-16 16:09:17 +02:00
AH [ 0 -9 ] + : apache2 : Could not reliably determine the server's fully qualified domain name , using \ S + \ . Set the ' ServerName' directive globally to suppress this message
2023-11-16 11:05:59 +01:00
\ [ \ S + \ S + \ S + \ S + \ S + \ ] \ [ mpm_prefork : notice \ ] \ [ pid 1 \ ] AH [ 0 -9 ] + : Apache / \ S + \ ( Debian \ ) configured - - resuming normal operations
2023-10-16 16:09:17 +02:00
\ [ \ S + \ S + \ S + \ S + \ S + \ ] \ [ core:notice \ ] \ [ pid 1 \ ] AH [ 0 -9 ] + : Command line : ' apache2 - D FOREGROUND'
2023-10-16 15:40:51 +02:00
> Illuminate \ \ Foundation \ \ ComposerScripts::postAutoloadDump
2023-10-16 14:37:59 +02:00
wait-for-it \ . sh : waiting 60 seconds for \ S+:3306
wait-for-it \ . sh : \ S+:3306 is available after [ 0 -9 ] + seconds
2023-10-16 16:09:17 +02:00
#
\ [ \ S + \ S + \ S + \ S + \ S + \ ] \ [ mpm_prefork : notice \ ] \ [ pid 1 \ ] AH [ 0 -9 ] + : caught SIGWINCH , shutting down gracefully
2023-10-03 19:03:59 +02:00
'' ;
match = " I M A G E _ N A M E = f i r e f l y i i i / c o r e : l a t e s t " ;
}
{ # yodaNas
filters = ''
2023-10-16 16:09:17 +02:00
AH [ 0 -9 ] + : apache2 : Could not reliably determine the server's fully qualified domain name , using \ S + \ . Set the ' ServerName' directive globally to suppress this message
2023-11-08 19:34:23 +01:00
\ [ \ S + \ S + \ S + \ S + \ S + \ ] \ [ mpm_prefork : notice \ ] \ [ pid 1 \ ] AH [ 0 -9 ] + : Apache / \ S + \ ( Debian \ ) configured - - resuming normal operations
2024-08-28 18:20:45 +02:00
\ [ \ S + \ S + \ S + \ S + \ S + \ ] \ [ core:notice \ ] \ [ pid 1 ( : tid 1 ) ? \ ] AH [ 0 -9 ] + : Command line : ' apache2 - D FOREGROUND'
2023-10-16 14:37:59 +02:00
#
2024-08-28 18:20:45 +02:00
\ [ \ S + \ S + \ S + \ S + \ S + \ ] \ [ mpm_prefork : notice \ ] \ [ pid 1 ( : tid 1 ) ? \ ] AH [ 0 -9 ] + : caught SIGWINCH , shutting down gracefully
2023-10-03 19:03:59 +02:00
'' ;
match = " I M A G E _ N A M E = f i r e f l y i i i / d a t a - i m p o r t e r : l a t e s t " ;
}
2023-09-29 13:10:26 +02:00
{ # yodaNas
filters = ''
. *
'' ;
2023-10-11 19:12:57 +02:00
match = " I M A G E _ N A M E = / ( d e l u a n / n a v i d r o m e | g h c r \\ . i o / d g t l m o o n / c h a n g e d e t e c t i o n \\ . i o ) / " ;
2023-09-29 13:10:26 +02:00
}
2023-09-24 22:07:58 +02:00
2023-09-20 15:39:26 +02:00
#
# _SYSTEMD_UNIT
#
2024-02-24 21:35:13 +01:00
# TODO: Wait until issue is resolved
# https://github.com/NixOS/nixpkgs/issues/267857
# /etc/tmpfiles.d/tmp.conf:11: Duplicate line for path "/tmp", ignoring.
{ # yodaHedgehog
filters = ''
/etc/tmpfiles \ .d/tmp \ . conf:11: Duplicate line for path " / t m p " , ignoring \ .
'' ;
match = " _ S Y S T E M D _ U N I T = s y s t e m d - t m p f i l e s - s e t u p . s e r v i c e " ;
}
2023-09-18 15:45:26 +02:00
{ # yodaTux
filters = ''
2023-09-27 16:44:56 +02:00
. *
2023-09-18 15:45:26 +02:00
'' ;
2023-10-11 19:12:57 +02:00
match = " _ S Y S T E M D _ U N I T = / ( b l u e t o o t h \\ . s e r v i c e | c u p s \\ . s e r v i c e ) / " ;
2023-09-18 15:45:26 +02:00
}
2023-10-03 16:38:26 +02:00
{ # yodaNas. TODO: This is maybe a bug. It occurs when deploying and switching to a NixOS config with colmena.
filters = ''
\ S + : Process ' /nix/store / \ S + - bash- \ S+/bin/sh - c ' echo 2 > /proc/sys/net/ipv6/conf / \ S+/use_tempaddr '' ' f a i l e d w i t h e x i t c o d e 1 .
'' ;
match = " _ S Y S T E M D _ U N I T = s y s t e m d - u d e v d . s e r v i c e " ;
}
2023-09-20 15:39:26 +02:00
{ # yodaTux, yodaYoga
2023-09-18 15:45:26 +02:00
filters = ''
The system will suspend now !
2023-09-27 16:44:56 +02:00
The system will power off now !
2023-10-04 14:04:19 +02:00
The system will reboot now !
2023-09-20 15:39:26 +02:00
System is powering down \ .
2023-10-04 14:04:19 +02:00
System is rebooting \ .
2023-09-18 15:45:26 +02:00
'' ;
match = " _ S Y S T E M D _ U N I T = s y s t e m d - l o g i n d . s e r v i c e " ;
}
2023-10-16 16:09:17 +02:00
{ # yodaTux, yodaNas
2023-09-18 15:45:26 +02:00
filters = ''
2023-09-20 15:39:26 +02:00
Reexecuting \ .
2023-09-18 15:45:26 +02:00
( finished ) ? switching to system configuration /nix/store/.+-nixos-system-.+- [ 0 -9 ] + \ . [ 0 -9 ] + pre-git
'' ;
2023-10-16 16:09:17 +02:00
match = " _ S Y S T E M D _ U N I T = / ( u s e r @ [ 0 - 9 ] + \\ . s e r v i c e | i n i t . s c o p e ) / " ;
2023-09-18 15:45:26 +02:00
}
{ # yodaTux
filters = ''
2024-02-23 14:10:04 +01:00
Acquired the name org \ . freedesktop \ . PolicyKit1 on the system bus
2023-09-18 15:45:26 +02:00
Reloading rules
2023-09-20 15:39:26 +02:00
Collecting garbage unconditionally \ . \ . \ .
2023-09-18 15:45:26 +02:00
Loading rules from directory /.+
Finished loading , compiling and executing [ 0 -9 ] + rules
'' ;
match = " _ S Y S T E M D _ U N I T = p o l k i t . s e r v i c e " ;
}
{ # yodaTux
filters = ''
. + error name = " o r g \. b l u e z \. M e d i a E n d p o i n t 1 \. E r r o r \. N o t I m p l e m e n t e d " . +
2023-09-20 11:34:32 +02:00
# Open issue: https://github.com/NixOS/nixpkgs/issues/79220
2023-09-23 15:22:24 +02:00
Unknown ( username | group ) . + in message bus configuration file
2023-09-18 15:45:26 +02:00
'' ;
2023-09-18 22:02:25 +02:00
match = " _ S Y S T E M D _ U N I T = d b u s . s e r v i c e " ;
}
2023-09-20 11:34:32 +02:00
{ # yodaTux
filters = ''
2023-09-20 13:38:26 +02:00
Mounted /dev / \ S + at / \ S + on behalf of uid [ 0 -9 ] +
Cleaning up mount point / \ S + \ ( device \ S + is not mounted \ )
Unmounted /dev / \ S + on behalf of uid [ 0 -9 ] +
Successfully sent SCSI command SYNCHRONIZE CACHE to /dev / \ S +
Successfully sent SCSI command START STOP UNIT to /dev / \ S +
Powered off /dev / \ S + - successfully wrote to sysfs path /sys/devices / \ S +
2023-09-20 11:34:32 +02:00
'' ;
2023-09-20 13:38:26 +02:00
match = " _ S Y S T E M D _ U N I T = u d i s k s 2 . s e r v i c e " ;
}
2024-08-31 13:17:14 +02:00
{ # yodaNas
filters = ''
\ S Skipped - Image is already being pulled by \ S
\ S Pulling
\ S Pulled
Container \ S Running
Container \ S Waiting
Container \ S Healthy
'' ;
match = " _ S Y S T E M D _ U N I T = J i n j a - C o m p o s e . s e r v i c e " ;
}
2023-09-20 13:38:26 +02:00
#
# SYSLOG_IDENTIFIER
#
2023-10-03 18:51:34 +02:00
{ # yodaYoga, yodaNas
filters = ''
# Somebody evil ...
error : kex_exchange_identification : banner line contains invalid characters
# error: kex_exchange_identification: client sent invalid protocol identifier "MGLNDD_188.194.209.73_2222"
# error: kex_exchange_identification: client sent invalid protocol identifier "GET / HTTP/1.1"
2023-11-08 19:34:23 +01:00
error : kex_exchange_identification : client sent invalid protocol identifier " [ ^ " ] * "
2023-10-03 18:51:34 +02:00
error : kex_exchange_identification : Connection closed by remote host
error : kex_exchange_identification : read : Connection reset by peer
2024-01-08 11:19:52 +01:00
error : kex_protocol_error : type [ 0 -9 ] + seq [ 0 -9 ] + \ [ preauth \ ]
2024-01-03 15:45:46 +01:00
error : kex protocol error : type [ 0 -9 ] + seq [ 0 -9 ] + \ [ preauth \ ]
2023-10-03 18:51:34 +02:00
error : PAM : Authentication failure for \ S + from \ S +
2023-10-16 19:08:23 +02:00
error : PAM : Authentication failure for illegal user \ S + from \ S +
2023-10-04 13:27:19 +02:00
error : Protocol major versions differ : 2 vs \ . 1
2023-10-20 12:44:51 +02:00
error : beginning MaxStartups throttling
2023-10-03 18:51:34 +02:00
fatal : Timeout before authentication for \ S + port [ 0 -9 ] +
'' ;
match = " S Y S L O G _ I D E N T I F I E R = s s h d " ;
}
2024-02-25 17:33:54 +01:00
{
2023-09-20 13:38:26 +02:00
filters = ''
2024-02-25 17:33:54 +01:00
# yodaTux. If the user `yoda` runs a command with `sudo`.
2023-09-23 18:36:51 +02:00
\ s + yoda : TTY = pts / [ 0 -9 ] ; PWD = / \ S + ; USER = root ; COMMAND = /.+
2024-02-25 17:33:54 +01:00
# yodaNas. If the btrbk service is run.
\ s + btrbk : PWD = / ; USER = root ; COMMAND = /.+
2024-04-03 12:54:34 +02:00
\ s + root : PWD = ( / | /root ) ; USER = root ; COMMAND = ( /run/current-system/sw | /nix/store / [ a-z0-9 ] + - btrfs-progs- [ 0 -9 \ . ] + ) /bin/btrfs ( subvolume list | subvolume show | subvolume delete | send | receive ) . +
\ s + root : PWD = ( / | /root ) ; USER = root ; COMMAND = ( /run/current-system/sw | /nix/store / [ a-z0-9 ] + - coreutils- [ 0 -9 \ . ] + ) /bin/readlink - v - e . +
2023-09-20 13:38:26 +02:00
'' ;
match = " S Y S L O G _ I D E N T I F I E R = s u d o " ;
}
{ # yodaYoga
filters = ''
( finished ) ? switching to system configuration /nix/store/.+-nixos-system-.+- [ 0 -9 ] + \ . [ 0 -9 ] + pre-git
'' ;
match = " S Y S L O G _ I D E N T I F I E R = n i x o s " ;
2023-09-20 11:34:32 +02:00
}
2023-09-20 15:39:26 +02:00
{ # yodaYoga
filters = ''
2023-10-04 14:04:19 +02:00
\ S + \ . ( service | scope | slice | mount ) : Consumed . + CPU time , read . + from disk , written . + to disk . +
\ S + \ . ( service | scope | slice | mount ) : Consumed . + CPU time , received . + IP traffic , sent . + IP traffic \ .
2023-10-05 13:20:30 +02:00
\ S + \ . ( service | scope | slice | mount ) : Consumed . + CPU time , no IP traffic \ .
2023-09-20 15:39:26 +02:00
#
Shutting down \ .
'' ;
match = " S Y S L O G _ I D E N T I F I E R = s y s t e m d " ;
}
2023-09-18 22:02:25 +02:00
{ # yodaTux
filters = ''
. *
'' ;
match = " S Y S L O G _ I D E N T I F I E R = / / n i x / s t o r e / . + / l i b e x e c / g d m - x - s e s s i o n / " ;
2023-09-18 15:45:26 +02:00
}
2024-08-24 13:22:13 +02:00
{
2023-11-21 13:02:15 +01:00
filters = ( ''
2023-10-04 14:04:19 +02:00
# Ignore.
2024-08-28 18:20:45 +02:00
systemd \ [ [ 0 -9 ] \ ] : memfd_create \ ( \ ) called without MFD_EXEC or MFD_NOEXEC_SEAL set
2023-11-03 16:11:40 +01:00
# Ignore.
Unknown kernel command line parameters " i p = d h c p " , will be passed to user space .
2024-08-28 18:20:45 +02:00
# Ignore.
random : crng reseeded on system resumption
random : crng init done
# Ignore.
BTRFS warning \ ( device dm- [ 0 -9 ] + \ ) : skipping scrub of block group [ 0 -9 ] + due to active swapfile
# Ignore.
ata [ 0 -9 ] \ .00 : Entering standby power mode
ata [ 0 -9 ] \ .00 : Entering active power mode
2023-10-04 14:04:19 +02:00
#
# yodaTux
2023-09-23 15:22:24 +02:00
#
2023-09-20 22:24:33 +02:00
# Ignore.
2023-10-16 16:09:17 +02:00
audit : type = 2000 audit \ ( [ 0 -9 ] + \ . [ 0 -9 ] + : [ 0 -9 ] + \ ) : state = initialized audit_enabled = 0 res = 1
2023-09-29 13:10:26 +02:00
ENERGY_PERF_BIAS : Set to ' normal' , was ' performance'
2023-11-16 11:05:59 +01:00
Kernel command line : initrd = \ S + init = \ S + ip = dhcp mds = full , nosmt loglevel = [ 0 -9 ]
Kernel command line : initrd = \ S + init = \ S + ip = dhcp loglevel = [ 0 -9 ]
2023-11-08 19:34:23 +01:00
# Linux version 6.1.61 (nixbld@localhost) (gcc (GCC) 12.2.0, GNU ld (GNU Binutils) 2.40) #1-NixOS SMP PREEMPT_DYNAMIC Thu Nov 2 08:35:33 UTC 2023
Linux version \ S + \ ( nixbld @ localhost \ ) \ ( gcc \ ( GCC \ ) \ S + , GNU ld \ ( GNU Binutils \ ) \ S + \ ) #1-NixOS SMP PREEMPT_DYNAMIC \S+ \S+\s+\S+ \S+ UTC \S+
2023-10-16 14:37:59 +02:00
sd [ 0 -9 ] : 0 : 0 : 0 : \ [ sd [ a-z ] \ ] [ 0 -9 ] + 5 1 2 - byte logical blocks : \ ( \ S + ( GB | TB ) / \ S + ( GiB | TiB ) \ )
2023-10-04 14:04:19 +02:00
sd [ 0 -9 ] : 0 : 0 : 0 : \ [ sd [ a-z ] \ ] [ 0 -9 ] + - byte physical blocks
2023-09-27 17:05:01 +02:00
sd [ 0 -9 ] : 0 : 0 : 0 : \ [ sd [ a-z ] \ ] Write Protect is off
sd [ 0 -9 ] : 0 : 0 : 0 : \ [ sd [ a-z ] \ ] Write cache : enabled , read cache : enabled , doesn't support DPO or FUA
sd [ 0 -9 ] : 0 : 0 : 0 : \ [ sd [ a-z ] \ ] Optimal transfer size [ 0 -9 ] + bytes not a multiple of preferred minimum block size ( [ 0 -9 ] bytes )
2023-11-03 16:11:40 +01:00
sd [ 0 -9 ] : 0 : 0 : 0 : \ [ sd [ a-z ] \ ] Attached SCSI ( removable ) ? disk
2024-08-13 16:05:29 +02:00
sd [ 0 -9 ] : 0 : 0 : 0 : \ [ sd [ a-z ] \ ] Starting disk
2023-11-03 16:11:40 +01:00
sd [ 0 -9 ] : 0 : 0 : 0 : \ [ sd [ a-z ] \ ] Stopping disk
2023-09-27 17:05:01 +02:00
sd [ 0 -9 ] : 0 : 0 : 0 : \ [ sd [ a-z ] \ ] Synchronizing SCSI cache
2023-09-29 13:10:26 +02:00
sd [ 0 -9 ] : 0 : 0 : 0 : \ [ sd [ a-z ] \ ] supports TCG Opal
\ #3
2023-09-23 15:22:24 +02:00
#
2023-10-04 14:04:19 +02:00
# yodaTab
2023-09-23 15:22:24 +02:00
#
# Ignore.
mmc0 : cannot verify signal voltage switch
2023-09-27 16:44:56 +02:00
Initialise system trusted keyrings
Key type asymmetric registered
Asymmetric key parser ' x509' registered
2023-09-29 13:14:05 +02:00
Loading compiled-in X \ .509 certificates
2023-09-27 16:44:56 +02:00
Key type \ . fscrypt registered
Key type fscrypt-provisioning registered
Key type encrypted registered
Bridge firewalling registered
SCSI subsystem initialized
2023-09-27 17:00:39 +02:00
scsi [ 0 -9 ] : 0 : 0 : 0 : Direct-Access \ s + ATA . + PQ : 0 ANSI : 5
2023-09-27 17:05:01 +02:00
scsi [ 0 -9 ] : 0 : 0 : 0 : Direct-Access . + PQ : 0 ANSI : 6
2023-09-27 16:44:56 +02:00
thinkpad_acpi : Disabling thinkpad-acpi brightness events by default \ . \ . \ .
2023-10-04 14:04:19 +02:00
VFS : Disk quotas dquot_ [ 0 -9 ] + \ . [ 0 -9 ] + \ . [ 0 -9 ] +
2023-09-27 17:05:01 +02:00
ata1 \ .00 : supports DRM functions and may not be fully accessible
2023-09-23 15:22:24 +02:00
#
done \ .
2023-11-21 13:02:15 +01:00
'' + ( i f ( c o n f i g . n e t w o r k i n g . h o s t N a m e = = " y o d a H e d g e h o g " ) t h e n ''
2024-08-24 13:22:13 +02:00
#
2023-11-03 16:11:40 +01:00
# Not sure about this.
2024-08-24 13:22:13 +02:00
#
2023-11-03 16:11:40 +01:00
hpet : number irqs doesn't agree with number of timers
2024-02-24 21:35:13 +01:00
gpio gpiochip0 : \ ( INT0002 Virtual GPIO \ ) : not an immutable chip , please consider fixing it !
2023-11-03 16:19:23 +01:00
at24 0 -0050 : supply vcc not found , using dummy regulator
intel-spi : probe of intel-spi failed with error -22
2024-08-24 13:22:13 +02:00
#
2023-11-08 19:34:23 +01:00
# Ignore.
2024-08-24 13:22:13 +02:00
#
ACPI BIOS Warning \ ( bug \ ) : . *
2023-11-21 13:02:15 +01:00
ata [ 0 -9 ] : link is slow to respond , please be patient \ ( ready = 0 \ )
# Not sure about this.
2023-11-22 14:41:04 +01:00
ata4 \ .00 : qc timeout after 10000 msecs \ ( cmd 0 x40 \ )
2023-11-21 13:02:15 +01:00
ata4 \ .00 : VERIFY failed \ ( err_mask = 0 x4 \ )
ata4 \ .00 : failed to IDENTIFY \ ( I/O error , err_mask = 0 x40 \ )
ata4 \ .00 : revalidation failed \ ( errno = -5 \ )
2024-08-24 13:22:13 +02:00
#
2023-12-25 16:01:10 +01:00
# Ignore very frequent kernel stack traces
2024-08-24 13:22:13 +02:00
#
2024-01-04 11:22:46 +01:00
- - - - - - - - - - - - \ [ cut here \ ] - - - - - - - - - - - -
2023-12-26 12:14:48 +01:00
i915 0000 : 00 : 02 \ .0 : drm_WARN_ON \ ( \ ( intel_uncore_read \ ( & dev_priv- > uncore , \ ( \ ( const i915_reg_t \ ) { \ . reg = \ ( 0 x130090 \ ) } \ ) \ ) & mask \ ) != mask \ )
WARNING : CPU : [ 0 -9 ] + PID : [ 0 -9 ] + at drivers/gpu/drm/i915/vlv_suspend \ . c:.*
2024-01-04 11:22:46 +01:00
Modules linked in : ( \ S + ) + ?
2024-08-28 14:37:17 +02:00
( dmi_sysfs | efivarfs | nfnetlink | configfs | efi_pstore | ip_tables | x_tables | autofs4 | dm_crypt | cbc | irqbypass | drivetemp | drm | fuse | deflate ) { 5 } ( \ S + ) +
2024-04-03 12:54:34 +02:00
CPU : [ 0 -9 ] + PID : [ 0 -9 ] + Comm : kworker / \ S + Tainted : G W [ 0 -9 ] + \ . [ 0 -9 ] + \ . [ 0 -9 ] + #1-NixOS
CPU : [ 0 -9 ] + PID : [ 0 -9 ] + Comm : kworker / \ S + Not tainted [ 0 -9 ] + \ . [ 0 -9 ] + \ . [ 0 -9 ] + #1-NixOS
2024-01-04 11:22:46 +01:00
Hardware name : To Be Filled By O \ . E \ . M \ . To Be Filled By O \ . E \ . M \ ./N3150-ITX , BIOS P1 \ .10 05/20/2015
Workqueue : pm pm_runtime_work
2024-01-03 15:45:46 +01:00
Workqueue : events_unbound async_run_entry_fn
2024-01-04 11:22:46 +01:00
RIP : . * : vlv_suspend_complete \ + 0 x [ 0 - 9 abcdef ] +/0x [ 0 - 9 abcdef ] + \ [ i915 \ ]
2024-08-31 12:06:05 +02:00
Code : 8 b 7 b 08 4 c 8 b 67 50 4 d 85 e4 74 25 e8 ( [ 0 - 9 a-f ] [ 0 - 9 a-f ] ) + <0f> 0 b e9 [ 0 - 9 a-f ] [ 0 - 9 a-f ] f9 ff ff 4 c 8 b 27 eb d6 ( [ 0 - 9 a-f ] [ 0 - 9 a-f ] ) +
2024-01-04 16:02:31 +01:00
RSP : [ 0 -9 ] + : [ 0 - 9 a-f ] + EFLAGS : [ 0 - 9 a-f ] +
2024-02-15 18:04:52 +01:00
RAX : 0000000000000000 RBX : [ 0 - 9 a-f ] + RCX : [ 0 - 9 a-f ] +
RDX : [ 0 - 9 a-f ] + RSI : [ 0 - 9 a-f ] + RDI : [ 0 - 9 a-f ] +
2024-01-12 13:36:15 +01:00
RBP : [ 0 - 9 a-f ] + R08 : [ 0 - 9 a-f ] + R09 : [ 0 - 9 a-f ] +
R10 : [ 0 - 9 a-f ] + R11 : [ 0 - 9 a-f ] + R12 : [ 0 - 9 a-f ] +
R13 : [ 0 - 9 a-f ] + R14 : [ 0 - 9 a-f ] + R15 : [ 0 - 9 a-f ] +
2024-01-04 11:22:46 +01:00
FS : 0000000000000000 \ ( 0000 \ ) GS : [ 0 - 9 a-f ] + \ ( 0000 \ ) knlGS:0000000000000000
2024-01-03 15:45:46 +01:00
CS : 0010 DS : 0000 ES : 0000 CR0 : 0000000080050033
2024-01-06 21:54:25 +01:00
CR2 : [ 0 - 9 a-f ] + CR3 : [ 0 - 9 a-f ] + CR4 : [ 0 - 9 a-f ] +
2023-12-25 16:01:10 +01:00
Call Trace :
<TASK>
2023-12-26 12:14:48 +01:00
\ ? \ S + \ + 0 x [ 0 - 9 abcdef ] +/0x [ 0 - 9 abcdef ] + ( \ [ i915 \ ] ) ?
2024-08-13 16:05:29 +02:00
( intel_runtime_suspend | pci_pm_runtime_suspend | __rpm_callback | rpm_callback | rpm_suspend | pm_runtime_work | process_one_work | worker_thread | kthread | ret_from_fork | ret_from_fork_asm | async_run_entry_fn | async_suspend_late | __device_suspend_late | dpm_run_callback | i915_drm_suspend_late ) \ + 0 x [ 0 - 9 abcdef ] +/0x [ 0 - 9 abcdef ] + ( \ [ i915 \ ] ) ?
2023-12-25 16:01:10 +01:00
< /TASK >
2023-12-26 12:14:48 +01:00
- - - \ [ end trace 0000000000000000 \ ] - - -
2024-08-24 13:22:13 +02:00
'' e l s e i f ( c o n f i g . n e t w o r k i n g . h o s t N a m e = = " y o d a Y o g a " ) t h e n ''
# Ignore BIOS bug.
ACPI : \ [ Firmware Bug \ ] : . *
ACPI BIOS Error \ ( bug \ ) : . *
ACPI Error : . *
ACPI Warning : . *
# Ignore.
usb : port power management may be unreliable
'' e l s e i f ( c o n f i g . n e t w o r k i n g . h o s t N a m e = = " y o d a T u x " ) t h e n ''
# Ignore BIOS bug.
ACPI : FW issue : working around C-state latencies out of order
# Kernel WiFi driver bug.
#iwlwifi 0000:01:00\.0: .*
iwlwifi 0000 : 01 : 00 \ .0 : Unhandled alg : 0 x707
iwlwifi 0000 : 01 : 00 \ .0 : Not associated and the session protection is over already . . .
iwlwifi 0000 : 01 : 00 \ .0 : api flags index 2 larger than supported by driver
2024-08-28 18:20:45 +02:00
'' e l s e i f ( c o n f i g . n e t w o r k i n g . h o s t N a m e = = " y o d a N a s " ) t h e n ''
# Probably safe to ignore.
resource : resource sanity check : requesting \ S + , which spans more than Reserved \ S +
# Ingore: Probably just copying of boot graphics (.bmp) failed. https://patchwork.kernel.org/project/linux-fbdev/patch/20180617153235.16219-3-hdegoede@redhat.com/
efifb : Ignoring BGRT : unexpected or invalid BMP data
# Not sure about this.
i915 0000 : 00 : 02 \ .0 : \ [ drm \ ] \ [ ENCODER:.* \ ] is disabled/in DSI mode with an ungated DDI clock , gate it
# Not sure about this. Probably BIOS related.
# https://wiki.archlinux.org/title/improving_performance#Enabling_PCI_resizable_BAR
caller ( pmc_core_probe | get_primary_reg_base ) \ + 0 x \ S + \ [ intel_pmc_core \ ] mapping multiple BARs
2023-11-21 13:02:15 +01:00
'' e l s e " " ) ) ;
2023-09-18 15:45:26 +02:00
match = " S Y S L O G _ I D E N T I F I E R = k e r n e l " ;
}
2023-09-20 11:34:32 +02:00
{ # yodaTux
filters = ''
. *
'' ;
match = " S Y S L O G _ I D E N T I F I E R = s i m p l e - s c a n " ;
}
2023-09-20 13:38:26 +02:00
#
# _SYSTEMD_USER_UNIT
#
2023-09-23 15:22:24 +02:00
{ # yodaTux, yodaTab
2023-09-20 13:38:26 +02:00
filters = ''
. + Setting AttentionNeeded to FALSE because EnsureCredentials \ ( \ ) succeded
2023-09-23 15:22:24 +02:00
Connecting to org \ . freedesktop \ . Tracker3 \ . Miner \ . Files
2023-09-20 13:38:26 +02:00
'' ;
match = " _ S Y S T E M D _ U S E R _ U N I T = d b u s . s e r v i c e " ;
}
2023-09-20 11:34:32 +02:00
{ # yodaTux
filters = ''
. *
'' ;
2023-10-11 19:12:57 +02:00
match = " _ S Y S T E M D _ U S E R _ U N I T = / ( o r g \\ . g n o m e \\ . . + \\ . s e r v i c e | p i p e w i r e \\ . s e r v i c e | w i r e p l u m b e r \\ . s e r v i c e | a p p - g n o m e - o r g \\ . g n o m e \\ . S o f t w a r e - [ 0 - 9 ] + \\ . s c o p e ) / " ;
2023-09-20 11:34:32 +02:00
}
2023-09-18 15:32:43 +02:00
] ;
} ;
}