Veja este outro Unix & Questão do Linux intitulada: Correlacionando / tim / var / log / * .
Os detalhes / resolução do tempo são controlados pelas configurações que são passadas ao kernel durante a inicialização:
$ grep PRINTK /boot/config-'uname -r'
CONFIG_PRINTK=y
CONFIG_SND_VERBOSE_PRINTK=y
CONFIG_PRINTK_TIME=y
CONFIG_BOOT_PRINTK_DELAY=y
CONFIG_EARLY_PRINTK=y
CONFIG_EARLY_PRINTK_DBGP=y
Você pode ler mais sobre essas opções aqui no kernel.org git repo .
trecho da página acima
config PRINTK_TIME
bool "Show timing information on printks" depends on PRINTK help
Selecting this option causes time stamps of the printk() messages to be added to the output of the syslog() system call and at the console.
The timestamp is always recorded internally, and exported to /dev/kmsg. This flag just specifies if the timestamp should be included, not that the timestamp is recorded.
The behavior is also controlled by the kernel command line parameter printk.time=1. See Documentation/kernel-parameters.txt
Os timestamps [ 0.000000]
são em segundos, desde o início do sistema.