Hello Kamailio community
kamailio v5.5.4
debian10
log_facility is not always 'LOCAL0' when loadmodule log_custom.so
cat /etc/kamailio/kamailio.cfg
```
debug=3
log_stderror=no
log_facility=LOG_LOCAL0
children=1
listen=udp:0.0.0.0:5060
log_engine_type="udp"
log_engine_data="127.0.0.1:514"
loadmodule "pv.so"
alias="test.com"
loadmodule "sl.so"
loadmodule "corex.so"
loadmodule "kex.so"
loadmodule "log_custom.so"
request_route {
if (uri != myself) {
sl_send_reply("403", "Not relaying");
exit;
}
sl_send_reply("200", "OK");
exit;
}
```
cat /etc/rsyslog.conf
```
# /etc/rsyslog.conf configuration file for rsyslog
#
# For more information install rsyslog-doc and see
# /usr/share/doc/rsyslog-doc/html/configuration/index.html
#################
#### MODULES ####
#################
module(load="imuxsock") # provides support for local system logging
module(load="imklog") # provides kernel logging support
#module(load="immark") # provides --MARK-- message capability
# provides UDP syslog reception
module(load="imudp")
input(type="imudp" port="514")
# provides TCP syslog reception
module(load="imtcp")
input(type="imtcp" port="514")
###########################
#### GLOBAL DIRECTIVES ####
###########################
#
# Use traditional timestamp format.
# To enable high precision timestamps, comment out the following line.
#
#$ActionFileDefaultTemplate RSYSLOG_TraditionalFileFormat
$ActionFileDefaultTemplate RSYSLOG_DebugFormat
#
# Set the default permissions for all log files.
#
$FileOwner root
$FileGroup adm
$FileCreateMode 0640
$DirCreateMode 0755
$Umask 0022
#
# Where to place spool and state files
#
$WorkDirectory /var/spool/rsyslog
#
# Include all config files in /etc/rsyslog.d/
#
$IncludeConfig /etc/rsyslog.d/*.conf
###############
#### RULES ####
###############
#
# First some standard log files. Log by facility.
#
auth,authpriv.* /var/log/auth.log
*.*;auth,authpriv.none -/var/log/syslog
#cron.* /var/log/cron.log
daemon.* -/var/log/daemon.log
kern.* -/var/log/kern.log
lpr.* -/var/log/lpr.log
mail.* -/var/log/mail.log
user.* -/var/log/user.log
#
# Logging for the mail system. Split it up so that
# it is easy to write scripts to parse these files.
#
mail.info -/var/log/mail.info
mail.warn -/var/log/mail.warn
mail.err /var/log/mail.err
#
# Some "catch-all" log files.
#
*.=debug;\
auth,authpriv.none;\
news.none;mail.none -/var/log/debug
*.=info;*.=notice;*.=warn;\
auth,authpriv.none;\
cron,daemon.none;\
mail,news.none -/var/log/messages
#
# Emergencies are sent to everybody logged in.
#
*.emerg :omusrmsg:*
```
cat /var/log/messages
```
Debug line with all properties:
FROMHOST: 'kam', fromhost-ip: '127.0.0.1', HOSTNAME: 'kam', PRI:
134,
syslogtag 'kamailio:', programname: 'kamailio', APP-NAME:
'kamailio', PROCID: '-', MSGID: '-',
TIMESTAMP: 'Jul 4 10:25:07', STRUCTURED-DATA: '-',
msg: ' INFO: <core> [core/sctp_core.c:74]: sctp_core_check_support(): SCTP API
not enabled - if you want to use it, load sctp module'
escaped msg: ' INFO: <core> [core/sctp_core.c:74]: sctp_core_check_support():
SCTP API not enabled - if you want to use it, load sctp module'
inputname: imuxsock rawmsg: '<134>Jul 4 10:25:07 kamailio: INFO: <core>
[core/sctp_core.c:74]: sctp_core_check_support(): SCTP API not enabled - if you want to
use it, load sctp module'
$!:
$.:
$/:
Debug line with all properties:
FROMHOST: 'kam', fromhost-ip: '127.0.0.1', HOSTNAME: 'kam', PRI:
132,
syslogtag 'kamailio:', programname: 'kamailio', APP-NAME:
'kamailio', PROCID: '-', MSGID: '-',
TIMESTAMP: 'Jul 4 10:25:07', STRUCTURED-DATA: '-',
msg: ' WARNING: <core> [core/socket_info.c:1480]: fix_hostname(): could not rev.
resolve 0.0.0.0'
escaped msg: ' WARNING: <core> [core/socket_info.c:1480]: fix_hostname(): could
not rev. resolve 0.0.0.0'
inputname: imuxsock rawmsg: '<132>Jul 4 10:25:07 kamailio: WARNING:
<core> [core/socket_info.c:1480]: fix_hostname(): could not rev. resolve
0.0.0.0'
$!:
$.:
$/:
Debug line with all properties:
FROMHOST: 'kam', fromhost-ip: '127.0.0.1', HOSTNAME: 'kam', PRI:
134,
syslogtag 'kamailio:', programname: 'kamailio', APP-NAME:
'kamailio', PROCID: '-', MSGID: '-',
TIMESTAMP: 'Jul 4 10:25:07', STRUCTURED-DATA: '-',
msg: ' INFO: <core> [core/tcp_main.c:4997]: init_tcp(): using epoll_lt as the io
watch method (auto detected)'
escaped msg: ' INFO: <core> [core/tcp_main.c:4997]: init_tcp(): using epoll_lt
as the io watch method (auto detected)'
inputname: imuxsock rawmsg: '<134>Jul 4 10:25:07 kamailio: INFO: <core>
[core/tcp_main.c:4997]: init_tcp(): using epoll_lt as the io watch method (auto
detected)'
$!:
$.:
$/:
Debug line with all properties:
FROMHOST: 'kam', fromhost-ip: '127.0.0.1', HOSTNAME: 'kam', PRI:
132,
syslogtag 'kamailio[660]:', programname: 'kamailio', APP-NAME:
'kamailio', PROCID: '660', MSGID: '-',
TIMESTAMP: 'Jul 4 10:25:07', STRUCTURED-DATA: '-',
msg: ' WARNING: sl [../../modules/tm/tm_load.h:142]: load_tm_api(): Cannot import
load_tm function from tm module'
escaped msg: ' WARNING: sl [../../modules/tm/tm_load.h:142]: load_tm_api(): Cannot
import load_tm function from tm module'
inputname: imuxsock rawmsg: '<132>Jul 4 10:25:07 kamailio[660]: WARNING: sl
[../../modules/tm/tm_load.h:142]: load_tm_api(): Cannot import load_tm function from tm
module'
$!:
$.:
$/:
Debug line with all properties:
FROMHOST: 'kam', fromhost-ip: '127.0.0.1', HOSTNAME: 'kam', PRI:
134,
syslogtag 'kamailio[660]:', programname: 'kamailio', APP-NAME:
'kamailio', PROCID: '660', MSGID: '-',
TIMESTAMP: 'Jul 4 10:25:07', STRUCTURED-DATA: '-',
msg: ' INFO: sl [sl.c:180]: mod_init(): could not bind tm module - only stateless mode
available during modules initialization'
escaped msg: ' INFO: sl [sl.c:180]: mod_init(): could not bind tm module - only
stateless mode available during modules initialization'
inputname: imuxsock rawmsg: '<134>Jul 4 10:25:07 kamailio[660]: INFO: sl
[sl.c:180]: mod_init(): could not bind tm module - only stateless mode available during
modules initialization'
$!:
$.:
$/:
Debug line with all properties:
FROMHOST: 'kam', fromhost-ip: '127.0.0.1', HOSTNAME: 'kam', PRI:
134,
syslogtag 'kamailio[660]:', programname: 'kamailio', APP-NAME:
'kamailio', PROCID: '660', MSGID: '-',
TIMESTAMP: 'Jul 4 10:25:07', STRUCTURED-DATA: '-',
msg: ' INFO: <core> [main.c:3030]: main(): processes (at least): 6 - shm size:
67108864 - pkg size: 8388608'
escaped msg: ' INFO: <core> [main.c:3030]: main(): processes (at least): 6 - shm
size: 67108864 - pkg size: 8388608'
inputname: imuxsock rawmsg: '<134>Jul 4 10:25:07 kamailio[660]: INFO:
<core> [main.c:3030]: main(): processes (at least): 6 - shm size: 67108864 - pkg
size: 8388608'
$!:
$.:
$/:
Debug line with all properties:
FROMHOST: 'kam', fromhost-ip: '127.0.0.1', HOSTNAME: 'kam', PRI:
134,
syslogtag 'kamailio[660]:', programname: 'kamailio', APP-NAME:
'kamailio', PROCID: '660', MSGID: '-',
TIMESTAMP: 'Jul 4 10:25:07', STRUCTURED-DATA: '-',
msg: ' INFO: <core> [core/udp_server.c:154]: probe_max_receive_buffer():
SO_RCVBUF is initially 212992'
escaped msg: ' INFO: <core> [core/udp_server.c:154]: probe_max_receive_buffer():
SO_RCVBUF is initially 212992'
inputname: imuxsock rawmsg: '<134>Jul 4 10:25:07 kamailio[660]: INFO:
<core> [core/udp_server.c:154]: probe_max_receive_buffer(): SO_RCVBUF is initially
212992'
$!:
$.:
$/:
Debug line with all properties:
FROMHOST: 'kam', fromhost-ip: '127.0.0.1', HOSTNAME: 'kam', PRI:
134,
syslogtag 'kamailio[660]:', programname: 'kamailio', APP-NAME:
'kamailio', PROCID: '660', MSGID: '-',
TIMESTAMP: 'Jul 4 10:25:07', STRUCTURED-DATA: '-',
msg: ' INFO: <core> [core/udp_server.c:206]: probe_max_receive_buffer():
SO_RCVBUF is finally 425984'
escaped msg: ' INFO: <core> [core/udp_server.c:206]: probe_max_receive_buffer():
SO_RCVBUF is finally 425984'
inputname: imuxsock rawmsg: '<134>Jul 4 10:25:07 kamailio[660]: INFO:
<core> [core/udp_server.c:206]: probe_max_receive_buffer(): SO_RCVBUF is finally
425984'
$!:
$.:
$/:
Debug line with all properties:
FROMHOST: 'kam', fromhost-ip: '127.0.0.1', HOSTNAME: 'kam', PRI:
132,
syslogtag 'kamailio[660]:', programname: 'kamailio', APP-NAME:
'kamailio', PROCID: '660', MSGID: '-',
TIMESTAMP: 'Jul 4 10:25:07', STRUCTURED-DATA: '-',
msg: ' WARNING: sl [../../modules/tm/tm_load.h:142]: load_tm_api(): Cannot import
load_tm function from tm module'
escaped msg: ' WARNING: sl [../../modules/tm/tm_load.h:142]: load_tm_api(): Cannot
import load_tm function from tm module'
inputname: imuxsock rawmsg: '<132>Jul 4 10:25:07 kamailio[660]: WARNING: sl
[../../modules/tm/tm_load.h:142]: load_tm_api(): Cannot import load_tm function from tm
module'
$!:
$.:
$/:
Debug line with all properties:
FROMHOST: 'kam', fromhost-ip: '127.0.0.1', HOSTNAME: 'kam', PRI:
134,
syslogtag 'kamailio[660]:', programname: 'kamailio', APP-NAME:
'kamailio', PROCID: '660', MSGID: '-',
TIMESTAMP: 'Jul 4 10:25:07', STRUCTURED-DATA: '-',
msg: ' INFO: sl [sl.c:199]: child_init(): could not bind tm module - only stateless
mode available during runtime'
escaped msg: ' INFO: sl [sl.c:199]: child_init(): could not bind tm module - only
stateless mode available during runtime'
inputname: imuxsock rawmsg: '<134>Jul 4 10:25:07 kamailio[660]: INFO: sl
[sl.c:199]: child_init(): could not bind tm module - only stateless mode available during
runtime'
$!:
$.:
$/:
Debug line with all properties:
FROMHOST: 'localhost', fromhost-ip: '127.0.0.1', HOSTNAME:
'localhost', PRI: 13,
syslogtag '(660)', programname: '(660)', APP-NAME: '(660)',
PROCID: '-', MSGID: '-',
TIMESTAMP: 'Jul 4 10:25:07', STRUCTURED-DATA: '-',
msg: ' DEBUG: <core> [core/sr_module.c:913]: init_child(): initializing
PROC_MAIN with rank 0'
escaped msg: ' DEBUG: <core> [core/sr_module.c:913]: init_child(): initializing
PROC_MAIN with rank 0'
inputname: imudp rawmsg: '(660) DEBUG: <core> [core/sr_module.c:913]:
init_child(): initializing PROC_MAIN with rank 0'
$!:
$.:
$/:
Debug line with all properties:
FROMHOST: 'localhost', fromhost-ip: '127.0.0.1', HOSTNAME:
'localhost', PRI: 13,
syslogtag '(660)', programname: '(660)', APP-NAME: '(660)',
PROCID: '-', MSGID: '-',
TIMESTAMP: 'Jul 4 10:25:07', STRUCTURED-DATA: '-',
msg: ' DEBUG: <core> [core/sr_module.c:871]: init_mod_child(): idx 0 rank 0: sl
[main]'
escaped msg: ' DEBUG: <core> [core/sr_module.c:871]: init_mod_child(): idx 0
rank 0: sl [main]'
inputname: imudp rawmsg: '(660) DEBUG: <core> [core/sr_module.c:871]:
init_mod_child(): idx 0 rank 0: sl [main]'
$!:
$.:
$/:
Debug line with all properties:
FROMHOST: 'localhost', fromhost-ip: '127.0.0.1', HOSTNAME:
'localhost', PRI: 13,
syslogtag '(660)', programname: '(660)', APP-NAME: '(660)',
PROCID: '-', MSGID: '-',
TIMESTAMP: 'Jul 4 10:25:07', STRUCTURED-DATA: '-',
msg: ' DEBUG: <core> [core/sr_module.c:871]: init_mod_child(): idx 0 rank 0:
corex [main]'
escaped msg: ' DEBUG: <core> [core/sr_module.c:871]: init_mod_child(): idx 0
rank 0: corex [main]'
inputname: imudp rawmsg: '(660) DEBUG: <core> [core/sr_module.c:871]:
init_mod_child(): idx 0 rank 0: corex [main]'
$!:
$.:
$/:
Debug line with all properties:
FROMHOST: 'localhost', fromhost-ip: '127.0.0.1', HOSTNAME:
'localhost', PRI: 13,
syslogtag '(660)', programname: '(660)', APP-NAME: '(660)',
PROCID: '-', MSGID: '-',
TIMESTAMP: 'Jul 4 10:25:07', STRUCTURED-DATA: '-',
msg: ' DEBUG: <core> [core/sr_module.c:871]: init_mod_child(): idx 0 rank 0: kex
[main]'
escaped msg: ' DEBUG: <core> [core/sr_module.c:871]: init_mod_child(): idx 0
rank 0: kex [main]'
inputname: imudp rawmsg: '(660) DEBUG: <core> [core/sr_module.c:871]:
init_mod_child(): idx 0 rank 0: kex [main]'
$!:
$.:
$/:
Debug line with all properties:
FROMHOST: 'localhost', fromhost-ip: '127.0.0.1', HOSTNAME:
'localhost', PRI: 13,
syslogtag '(660)', programname: '(660)', APP-NAME: '(660)',
PROCID: '-', MSGID: '-',
TIMESTAMP: 'Jul 4 10:25:07', STRUCTURED-DATA: '-',
msg: ' DEBUG: kex [kex_mod.c:155]: child_init(): rank is (0)'
escaped msg: ' DEBUG: kex [kex_mod.c:155]: child_init(): rank is (0)'
inputname: imudp rawmsg: '(660) DEBUG: kex [kex_mod.c:155]: child_init(): rank is
(0)'
$!:
$.:
$/:
Debug line with all properties:
FROMHOST: 'localhost', fromhost-ip: '127.0.0.1', HOSTNAME:
'localhost', PRI: 13,
syslogtag '(660)', programname: '(660)', APP-NAME: '(660)',
PROCID: '-', MSGID: '-',
TIMESTAMP: 'Jul 4 10:25:07', STRUCTURED-DATA: '-',
msg: ' DEBUG: <core> [core/utils/sruid.c:116]: sruid_init(): root for sruid is
[srid-62c24f83-294-] (0 / 18)'
escaped msg: ' DEBUG: <core> [core/utils/sruid.c:116]: sruid_init(): root for
sruid is [srid-62c24f83-294-] (0 / 18)'
inputname: imudp rawmsg: '(660) DEBUG: <core> [core/utils/sruid.c:116]:
sruid_init(): root for sruid is [srid-62c24f83-294-] (0 / 18)'
$!:
$.:
$/:
Debug line with all properties:
FROMHOST: 'localhost', fromhost-ip: '127.0.0.1', HOSTNAME:
'localhost', PRI: 13,
syslogtag '(660)', programname: '(660)', APP-NAME: '(660)',
PROCID: '-', MSGID: '-',
TIMESTAMP: 'Jul 4 10:25:07', STRUCTURED-DATA: '-',
msg: ' DEBUG: <core> [core/sr_module.c:871]: init_mod_child(): idx 0 rank 0:
log_custom [main]'
escaped msg: ' DEBUG: <core> [core/sr_module.c:871]: init_mod_child(): idx 0
rank 0: log_custom [main]'
inputname: imudp rawmsg: '(660) DEBUG: <core> [core/sr_module.c:871]:
init_mod_child(): idx 0 rank 0: log_custom [main]'
$!:
$.:
$/:
Debug line with all properties:
FROMHOST: 'localhost', fromhost-ip: '127.0.0.1', HOSTNAME:
'localhost', PRI: 13,
syslogtag '(660)', programname: '(660)', APP-NAME: '(660)',
PROCID: '-', MSGID: '-',
TIMESTAMP: 'Jul 4 10:25:07', STRUCTURED-DATA: '-',
msg: ' DEBUG: <core> [main.c:1893]: main_loop(): Expect maximum 2080 open
fds'
escaped msg: ' DEBUG: <core> [main.c:1893]: main_loop(): Expect maximum 2080
open fds'
inputname: imudp rawmsg: '(660) DEBUG: <core> [main.c:1893]: main_loop(): Expect
maximum 2080 open fds'
$!:
$.:
$/:
Debug line with all properties:
FROMHOST: 'localhost', fromhost-ip: '127.0.0.1', HOSTNAME:
'localhost', PRI: 13,
syslogtag '(663)', programname: '(663)', APP-NAME: '(663)',
PROCID: '-', MSGID: '-',
TIMESTAMP: 'Jul 4 10:25:07', STRUCTURED-DATA: '-',
msg: ' DEBUG: <core> [core/pt.c:308]: fork_process(): seeding PRNG with
1395651006'
escaped msg: ' DEBUG: <core> [core/pt.c:308]: fork_process(): seeding PRNG with
1395651006'
inputname: imudp rawmsg: '(663) DEBUG: <core> [core/pt.c:308]: fork_process():
seeding PRNG with 1395651006'
$!:
$.:
$/:
Debug line with all properties:
FROMHOST: 'localhost', fromhost-ip: '127.0.0.1', HOSTNAME:
'localhost', PRI: 13,
syslogtag '(663)', programname: '(663)', APP-NAME: '(663)',
PROCID: '-', MSGID: '-',
TIMESTAMP: 'Jul 4 10:25:07', STRUCTURED-DATA: '-',
msg: ' DEBUG: <core> [core/rand/cryptorand.c:36]: cryptorand_seed(): seeding
cryptorand generator with 1395651006'
escaped msg: ' DEBUG: <core> [core/rand/cryptorand.c:36]: cryptorand_seed():
seeding cryptorand generator with 1395651006'
inputname: imudp rawmsg: '(663) DEBUG: <core> [core/rand/cryptorand.c:36]:
cryptorand_seed(): seeding cryptorand generator with 1395651006'
$!:
$.:
$/:
Debug line with all properties:
FROMHOST: 'localhost', fromhost-ip: '127.0.0.1', HOSTNAME:
'localhost', PRI: 13,
syslogtag '(662)', programname: '(662)', APP-NAME: '(662)',
PROCID: '-', MSGID: '-',
TIMESTAMP: 'Jul 4 10:25:07', STRUCTURED-DATA: '-',
msg: ' DEBUG: <core> [core/pt.c:308]: fork_process(): seeding PRNG with
1706875772'
escaped msg: ' DEBUG: <core> [core/pt.c:308]: fork_process(): seeding PRNG with
1706875772'
inputname: imudp rawmsg: '(662) DEBUG: <core> [core/pt.c:308]: fork_process():
seeding PRNG with 1706875772'
$!:
$.:
$/:
Debug line with all properties:
FROMHOST: 'localhost', fromhost-ip: '127.0.0.1', HOSTNAME:
'localhost', PRI: 13,
syslogtag '(663)', programname: '(663)', APP-NAME: '(663)',
PROCID: '-', MSGID: '-',
TIMESTAMP: 'Jul 4 10:25:07', STRUCTURED-DATA: '-',
msg: ' DEBUG: <core> [core/rand/fortuna/random.c:175]: sr_add_entropy():
additional 4 bytes entropy added to cryptographic PRNG'
escaped msg: ' DEBUG: <core> [core/rand/fortuna/random.c:175]: sr_add_entropy():
additional 4 bytes entropy added to cryptographic PRNG'
inputname: imudp rawmsg: '(663) DEBUG: <core> [core/rand/fortuna/random.c:175]:
sr_add_entropy(): additional 4 bytes entropy added to cryptographic PRNG'
$!:
$.:
$/:
Debug line with all properties:
FROMHOST: 'localhost', fromhost-ip: '127.0.0.1', HOSTNAME:
'localhost', PRI: 13,
syslogtag '(663)', programname: '(663)', APP-NAME: '(663)',
PROCID: '-', MSGID: '-',
TIMESTAMP: 'Jul 4 10:25:07', STRUCTURED-DATA: '-',
msg: ' DEBUG: <core> [core/pt.c:313]: fork_process(): test random numbers
1907030787 1472551529 366291743 1443005452'
escaped msg: ' DEBUG: <core> [core/pt.c:313]: fork_process(): test random
numbers 1907030787 1472551529 366291743 1443005452'
inputname: imudp rawmsg: '(663) DEBUG: <core> [core/pt.c:313]: fork_process():
test random numbers 1907030787 1472551529 366291743 1443005452'
$!:
$.:
$/:
Debug line with all properties:
FROMHOST: 'localhost', fromhost-ip: '127.0.0.1', HOSTNAME:
'localhost', PRI: 13,
syslogtag '(662)', programname: '(662)', APP-NAME: '(662)',
PROCID: '-', MSGID: '-',
TIMESTAMP: 'Jul 4 10:25:07', STRUCTURED-DATA: '-',
msg: ' DEBUG: <core> [core/rand/cryptorand.c:36]: cryptorand_seed(): seeding
cryptorand generator with 1706875772'
escaped msg: ' DEBUG: <core> [core/rand/cryptorand.c:36]: cryptorand_seed():
seeding cryptorand generator with 1706875772'
inputname: imudp rawmsg: '(662) DEBUG: <core> [core/rand/cryptorand.c:36]:
cryptorand_seed(): seeding cryptorand generator with 1706875772'
$!:
$.:
$/:
Debug line with all properties:
FROMHOST: 'localhost', fromhost-ip: '127.0.0.1', HOSTNAME:
'localhost', PRI: 13,
syslogtag '(664)', programname: '(664)', APP-NAME: '(664)',
PROCID: '-', MSGID: '-',
TIMESTAMP: 'Jul 4 10:25:07', STRUCTURED-DATA: '-',
msg: ' DEBUG: <core> [core/pt.c:308]: fork_process(): seeding PRNG with
997893165'
escaped msg: ' DEBUG: <core> [core/pt.c:308]: fork_process(): seeding PRNG with
997893165'
inputname: imudp rawmsg: '(664) DEBUG: <core> [core/pt.c:308]: fork_process():
seeding PRNG with 997893165'
$!:
$.:
$/:
Debug line with all properties:
FROMHOST: 'localhost', fromhost-ip: '127.0.0.1', HOSTNAME:
'localhost', PRI: 13,
syslogtag '(663)', programname: '(663)', APP-NAME: '(663)',
PROCID: '-', MSGID: '-',
TIMESTAMP: 'Jul 4 10:25:07', STRUCTURED-DATA: '-',
msg: ' DEBUG: <core> [core/sr_module.c:913]: init_child(): initializing
PROC_TIMER with rank -1'
escaped msg: ' DEBUG: <core> [core/sr_module.c:913]: init_child(): initializing
PROC_TIMER with rank -1'
inputname: imudp rawmsg: '(663) DEBUG: <core> [core/sr_module.c:913]:
init_child(): initializing PROC_TIMER with rank -1'
$!:
$.:
$/:
Debug line with all properties:
FROMHOST: 'localhost', fromhost-ip: '127.0.0.1', HOSTNAME:
'localhost', PRI: 13,
syslogtag '(662)', programname: '(662)', APP-NAME: '(662)',
PROCID: '-', MSGID: '-',
TIMESTAMP: 'Jul 4 10:25:07', STRUCTURED-DATA: '-',
msg: ' DEBUG: <core> [core/rand/fortuna/random.c:175]: sr_add_entropy():
additional 4 bytes entropy added to cryptographic PRNG'
escaped msg: ' DEBUG: <core> [core/rand/fortuna/random.c:175]: sr_add_entropy():
additional 4 bytes entropy added to cryptographic PRNG'
inputname: imudp rawmsg: '(662) DEBUG: <core> [core/rand/fortuna/random.c:175]:
sr_add_entropy(): additional 4 bytes entropy added to cryptographic PRNG'
$!:
$.:
$/:
Debug line with all properties:
FROMHOST: 'localhost', fromhost-ip: '127.0.0.1', HOSTNAME:
'localhost', PRI: 13,
syslogtag '(663)', programname: '(663)', APP-NAME: '(663)',
PROCID: '-', MSGID: '-',
TIMESTAMP: 'Jul 4 10:25:07', STRUCTURED-DATA: '-',
msg: ' DEBUG: <core> [core/sr_module.c:871]: init_mod_child(): idx 3 rank -1: sl
[timer]'
escaped msg: ' DEBUG: <core> [core/sr_module.c:871]: init_mod_child(): idx 3
rank -1: sl [timer]'
inputname: imudp rawmsg: '(663) DEBUG: <core> [core/sr_module.c:871]:
init_mod_child(): idx 3 rank -1: sl [timer]'
$!:
$.:
$/:
Debug line with all properties:
FROMHOST: 'localhost', fromhost-ip: '127.0.0.1', HOSTNAME:
'localhost', PRI: 13,
syslogtag '(662)', programname: '(662)', APP-NAME: '(662)',
PROCID: '-', MSGID: '-',
TIMESTAMP: 'Jul 4 10:25:07', STRUCTURED-DATA: '-',
msg: ' DEBUG: <core> [core/pt.c:313]: fork_process(): test random numbers
1339236272 1961881452 3510136093 136723668'
escaped msg: ' DEBUG: <core> [core/pt.c:313]: fork_process(): test random
numbers 1339236272 1961881452 3510136093 136723668'
inputname: imudp rawmsg: '(662) DEBUG: <core> [core/pt.c:313]: fork_process():
test random numbers 1339236272 1961881452 3510136093 136723668'
$!:
$.:
$/:
Debug line with all properties:
FROMHOST: 'localhost', fromhost-ip: '127.0.0.1', HOSTNAME:
'localhost', PRI: 13,
syslogtag '(663)', programname: '(663)', APP-NAME: '(663)',
PROCID: '-', MSGID: '-',
TIMESTAMP: 'Jul 4 10:25:07', STRUCTURED-DATA: '-',
msg: ' DEBUG: <core> [core/sr_module.c:871]: init_mod_child(): idx 3 rank -1:
corex [timer]'
escaped msg: ' DEBUG: <core> [core/sr_module.c:871]: init_mod_child(): idx 3
rank -1: corex [timer]'
inputname: imudp rawmsg: '(663) DEBUG: <core> [core/sr_module.c:871]:
init_mod_child(): idx 3 rank -1: corex [timer]'
$!:
$.:
$/:
Debug line with all properties:
FROMHOST: 'localhost', fromhost-ip: '127.0.0.1', HOSTNAME:
'localhost', PRI: 13,
syslogtag '(664)', programname: '(664)', APP-NAME: '(664)',
PROCID: '-', MSGID: '-',
TIMESTAMP: 'Jul 4 10:25:07', STRUCTURED-DATA: '-',
msg: ' DEBUG: <core> [core/rand/cryptorand.c:36]: cryptorand_seed(): seeding
cryptorand generator with 997893165'
escaped msg: ' DEBUG: <core> [core/rand/cryptorand.c:36]: cryptorand_seed():
seeding cryptorand generator with 997893165'
inputname: imudp rawmsg: '(664) DEBUG: <core> [core/rand/cryptorand.c:36]:
cryptorand_seed(): seeding cryptorand generator with 997893165'
$!:
$.:
$/:
Debug line with all properties:
FROMHOST: 'localhost', fromhost-ip: '127.0.0.1', HOSTNAME:
'localhost', PRI: 13,
syslogtag '(663)', programname: '(663)', APP-NAME: '(663)',
PROCID: '-', MSGID: '-',
TIMESTAMP: 'Jul 4 10:25:07', STRUCTURED-DATA: '-',
msg: ' DEBUG: <core> [core/sr_module.c:871]: init_mod_child(): idx 3 rank -1:
kex [timer]'
escaped msg: ' DEBUG: <core> [core/sr_module.c:871]: init_mod_child(): idx 3
rank -1: kex [timer]'
inputname: imudp rawmsg: '(663) DEBUG: <core> [core/sr_module.c:871]:
init_mod_child(): idx 3 rank -1: kex [timer]'
$!:
$.:
$/:
Debug line with all properties:
FROMHOST: 'localhost', fromhost-ip: '127.0.0.1', HOSTNAME:
'localhost', PRI: 13,
syslogtag '(663)', programname: '(663)', APP-NAME: '(663)',
PROCID: '-', MSGID: '-',
TIMESTAMP: 'Jul 4 10:25:07', STRUCTURED-DATA: '-',
msg: ' DEBUG: kex [kex_mod.c:155]: child_init(): rank is (-1)'
escaped msg: ' DEBUG: kex [kex_mod.c:155]: child_init(): rank is (-1)'
inputname: imudp rawmsg: '(663) DEBUG: kex [kex_mod.c:155]: child_init(): rank is
(-1)'
$!:
$.:
$/:
Debug line with all properties:
FROMHOST: 'localhost', fromhost-ip: '127.0.0.1', HOSTNAME:
'localhost', PRI: 13,
syslogtag '(664)', programname: '(664)', APP-NAME: '(664)',
PROCID: '-', MSGID: '-',
TIMESTAMP: 'Jul 4 10:25:07', STRUCTURED-DATA: '-',
msg: ' DEBUG: <core> [core/rand/fortuna/random.c:175]: sr_add_entropy():
additional 4 bytes entropy added to cryptographic PRNG'
escaped msg: ' DEBUG: <core> [core/rand/fortuna/random.c:175]: sr_add_entropy():
additional 4 bytes entropy added to cryptographic PRNG'
inputname: imudp rawmsg: '(664) DEBUG: <core> [core/rand/fortuna/random.c:175]:
sr_add_entropy(): additional 4 bytes entropy added to cryptographic PRNG'
$!:
$.:
$/:
Debug line with all properties:
FROMHOST: 'localhost', fromhost-ip: '127.0.0.1', HOSTNAME:
'localhost', PRI: 13,
syslogtag '(662)', programname: '(662)', APP-NAME: '(662)',
PROCID: '-', MSGID: '-',
TIMESTAMP: 'Jul 4 10:25:07', STRUCTURED-DATA: '-',
msg: ' DEBUG: <core> [core/sr_module.c:913]: init_child(): initializing
PROC_TIMER with rank -1'
escaped msg: ' DEBUG: <core> [core/sr_module.c:913]: init_child(): initializing
PROC_TIMER with rank -1'
inputname: imudp rawmsg: '(662) DEBUG: <core> [core/sr_module.c:913]:
init_child(): initializing PROC_TIMER with rank -1'
$!:
$.:
$/:
Debug line with all properties:
FROMHOST: 'localhost', fromhost-ip: '127.0.0.1', HOSTNAME:
'localhost', PRI: 13,
syslogtag '(662)', programname: '(662)', APP-NAME: '(662)',
PROCID: '-', MSGID: '-',
TIMESTAMP: 'Jul 4 10:25:07', STRUCTURED-DATA: '-',
msg: ' DEBUG: <core> [core/sr_module.c:871]: init_mod_child(): idx 2 rank -1: sl
[slow timer]'
escaped msg: ' DEBUG: <core> [core/sr_module.c:871]: init_mod_child(): idx 2
rank -1: sl [slow timer]'
inputname: imudp rawmsg: '(662) DEBUG: <core> [core/sr_module.c:871]:
init_mod_child(): idx 2 rank -1: sl [slow timer]'
$!:
$.:
$/:
Debug line with all properties:
FROMHOST: 'localhost', fromhost-ip: '127.0.0.1', HOSTNAME:
'localhost', PRI: 13,
syslogtag '(661)', programname: '(661)', APP-NAME: '(661)',
PROCID: '-', MSGID: '-',
TIMESTAMP: 'Jul 4 10:25:07', STRUCTURED-DATA: '-',
msg: ' DEBUG: <core> [core/pt.c:308]: fork_process(): seeding PRNG with
3710294115'
escaped msg: ' DEBUG: <core> [core/pt.c:308]: fork_process(): seeding PRNG with
3710294115'
inputname: imudp rawmsg: '(661) DEBUG: <core> [core/pt.c:308]: fork_process():
seeding PRNG with 3710294115'
$!:
$.:
$/:
Debug line with all properties:
FROMHOST: 'localhost', fromhost-ip: '127.0.0.1', HOSTNAME:
'localhost', PRI: 13,
syslogtag '(663)', programname: '(663)', APP-NAME: '(663)',
PROCID: '-', MSGID: '-',
TIMESTAMP: 'Jul 4 10:25:07', STRUCTURED-DATA: '-',
msg: ' DEBUG: <core> [core/utils/sruid.c:116]: sruid_init(): root for sruid is
[srid-62c24f83-297-] (0 / 18)'
escaped msg: ' DEBUG: <core> [core/utils/sruid.c:116]: sruid_init(): root for
sruid is [srid-62c24f83-297-] (0 / 18)'
inputname: imudp rawmsg: '(663) DEBUG: <core> [core/utils/sruid.c:116]:
sruid_init(): root for sruid is [srid-62c24f83-297-] (0 / 18)'
$!:
$.:
$/:
Debug line with all properties:
FROMHOST: 'localhost', fromhost-ip: '127.0.0.1', HOSTNAME:
'localhost', PRI: 13,
syslogtag '(664)', programname: '(664)', APP-NAME: '(664)',
PROCID: '-', MSGID: '-',
TIMESTAMP: 'Jul 4 10:25:07', STRUCTURED-DATA: '-',
msg: ' DEBUG: <core> [core/pt.c:313]: fork_process(): test random numbers
1640811744 313033881 1910478272 3953138690'
escaped msg: ' DEBUG: <core> [core/pt.c:313]: fork_process(): test random
numbers 1640811744 313033881 1910478272 3953138690'
inputname: imudp rawmsg: '(664) DEBUG: <core> [core/pt.c:313]: fork_process():
test random numbers 1640811744 313033881 1910478272 3953138690'
$!:
$.:
$/:
Debug line with all properties:
FROMHOST: 'localhost', fromhost-ip: '127.0.0.1', HOSTNAME:
'localhost', PRI: 13,
syslogtag '(662)', programname: '(662)', APP-NAME: '(662)',
PROCID: '-', MSGID: '-',
TIMESTAMP: 'Jul 4 10:25:07', STRUCTURED-DATA: '-',
msg: ' DEBUG: <core> [core/sr_module.c:871]: init_mod_child(): idx 2 rank -1:
corex [slow timer]'
escaped msg: ' DEBUG: <core> [core/sr_module.c:871]: init_mod_child(): idx 2
rank -1: corex [slow timer]'
inputname: imudp rawmsg: '(662) DEBUG: <core> [core/sr_module.c:871]:
init_mod_child(): idx 2 rank -1: corex [slow timer]'
$!:
$.:
$/:
Debug line with all properties:
FROMHOST: 'localhost', fromhost-ip: '127.0.0.1', HOSTNAME:
'localhost', PRI: 13,
syslogtag '(665)', programname: '(665)', APP-NAME: '(665)',
PROCID: '-', MSGID: '-',
TIMESTAMP: 'Jul 4 10:25:07', STRUCTURED-DATA: '-',
msg: ' DEBUG: <core> [core/pt.c:308]: fork_process(): seeding PRNG with
2804346838'
escaped msg: ' DEBUG: <core> [core/pt.c:308]: fork_process(): seeding PRNG with
2804346838'
inputname: imudp rawmsg: '(665) DEBUG: <core> [core/pt.c:308]: fork_process():
seeding PRNG with 2804346838'
$!:
$.:
$/:
Debug line with all properties:
FROMHOST: 'localhost', fromhost-ip: '127.0.0.1', HOSTNAME:
'localhost', PRI: 13,
syslogtag '(663)', programname: '(663)', APP-NAME: '(663)',
PROCID: '-', MSGID: '-',
TIMESTAMP: 'Jul 4 10:25:07', STRUCTURED-DATA: '-',
msg: ' DEBUG: <core> [core/sr_module.c:871]: init_mod_child(): idx 3 rank -1:
log_custom [timer]'
escaped msg: ' DEBUG: <core> [core/sr_module.c:871]: init_mod_child(): idx 3
rank -1: log_custom [timer]'
inputname: imudp rawmsg: '(663) DEBUG: <core> [core/sr_module.c:871]:
init_mod_child(): idx 3 rank -1: log_custom [timer]'
$!:
$.:
$/:
Debug line with all properties:
FROMHOST: 'localhost', fromhost-ip: '127.0.0.1', HOSTNAME:
'localhost', PRI: 13,
syslogtag '(664)', programname: '(664)', APP-NAME: '(664)',
PROCID: '-', MSGID: '-',
TIMESTAMP: 'Jul 4 10:25:07', STRUCTURED-DATA: '-',
msg: ' DEBUG: <core> [core/sr_module.c:913]: init_child(): initializing
PROC_TIMER with rank -1'
escaped msg: ' DEBUG: <core> [core/sr_module.c:913]: init_child(): initializing
PROC_TIMER with rank -1'
inputname: imudp rawmsg: '(664) DEBUG: <core> [core/sr_module.c:913]:
init_child(): initializing PROC_TIMER with rank -1'
$!:
$.:
$/:
Debug line with all properties:
FROMHOST: 'localhost', fromhost-ip: '127.0.0.1', HOSTNAME:
'localhost', PRI: 13,
syslogtag '(664)', programname: '(664)', APP-NAME: '(664)',
PROCID: '-', MSGID: '-',
TIMESTAMP: 'Jul 4 10:25:07', STRUCTURED-DATA: '-',
msg: ' DEBUG: <core> [core/sr_module.c:871]: init_mod_child(): idx 4 rank -1: sl
[secondary timer]'
escaped msg: ' DEBUG: <core> [core/sr_module.c:871]: init_mod_child(): idx 4
rank -1: sl [secondary timer]'
inputname: imudp rawmsg: '(664) DEBUG: <core> [core/sr_module.c:871]:
init_mod_child(): idx 4 rank -1: sl [secondary timer]'
$!:
$.:
$/:
Debug line with all properties:
FROMHOST: 'localhost', fromhost-ip: '127.0.0.1', HOSTNAME:
'localhost', PRI: 13,
syslogtag '(662)', programname: '(662)', APP-NAME: '(662)',
PROCID: '-', MSGID: '-',
TIMESTAMP: 'Jul 4 10:25:07', STRUCTURED-DATA: '-',
msg: ' DEBUG: <core> [core/sr_module.c:871]: init_mod_child(): idx 2 rank -1:
kex [slow timer]'
escaped msg: ' DEBUG: <core> [core/sr_module.c:871]: init_mod_child(): idx 2
rank -1: kex [slow timer]'
inputname: imudp rawmsg: '(662) DEBUG: <core> [core/sr_module.c:871]:
init_mod_child(): idx 2 rank -1: kex [slow timer]'
$!:
$.:
$/:
Debug line with all properties:
FROMHOST: 'localhost', fromhost-ip: '127.0.0.1', HOSTNAME:
'localhost', PRI: 13,
syslogtag '(664)', programname: '(664)', APP-NAME: '(664)',
PROCID: '-', MSGID: '-',
TIMESTAMP: 'Jul 4 10:25:07', STRUCTURED-DATA: '-',
msg: ' DEBUG: <core> [core/sr_module.c:871]: init_mod_child(): idx 4 rank -1:
corex [secondary timer]'
escaped msg: ' DEBUG: <core> [core/sr_module.c:871]: init_mod_child(): idx 4
rank -1: corex [secondary timer]'
inputname: imudp rawmsg: '(664) DEBUG: <core> [core/sr_module.c:871]:
init_mod_child(): idx 4 rank -1: corex [secondary timer]'
$!:
$.:
$/:
Debug line with all properties:
FROMHOST: 'localhost', fromhost-ip: '127.0.0.1', HOSTNAME:
'localhost', PRI: 13,
syslogtag '(661)', programname: '(661)', APP-NAME: '(661)',
PROCID: '-', MSGID: '-',
TIMESTAMP: 'Jul 4 10:25:07', STRUCTURED-DATA: '-',
msg: ' DEBUG: <core> [core/rand/cryptorand.c:36]: cryptorand_seed(): seeding
cryptorand generator with 3710294115'
escaped msg: ' DEBUG: <core> [core/rand/cryptorand.c:36]: cryptorand_seed():
seeding cryptorand generator with 3710294115'
inputname: imudp rawmsg: '(661) DEBUG: <core> [core/rand/cryptorand.c:36]:
cryptorand_seed(): seeding cryptorand generator with 3710294115'
$!:
$.:
$/:
Debug line with all properties:
FROMHOST: 'localhost', fromhost-ip: '127.0.0.1', HOSTNAME:
'localhost', PRI: 13,
syslogtag '(665)', programname: '(665)', APP-NAME: '(665)',
PROCID: '-', MSGID: '-',
TIMESTAMP: 'Jul 4 10:25:07', STRUCTURED-DATA: '-',
msg: ' DEBUG: <core> [core/rand/cryptorand.c:36]: cryptorand_seed(): seeding
cryptorand generator with 2804346838'
escaped msg: ' DEBUG: <core> [core/rand/cryptorand.c:36]: cryptorand_seed():
seeding cryptorand generator with 2804346838'
inputname: imudp rawmsg: '(665) DEBUG: <core> [core/rand/cryptorand.c:36]:
cryptorand_seed(): seeding cryptorand generator with 2804346838'
$!:
$.:
$/:
Debug line with all properties:
FROMHOST: 'localhost', fromhost-ip: '127.0.0.1', HOSTNAME:
'localhost', PRI: 13,
syslogtag '(665)', programname: '(665)', APP-NAME: '(665)',
PROCID: '-', MSGID: '-',
TIMESTAMP: 'Jul 4 10:25:07', STRUCTURED-DATA: '-',
msg: ' DEBUG: <core> [core/rand/fortuna/random.c:175]: sr_add_entropy():
additional 4 bytes entropy added to cryptographic PRNG'
escaped msg: ' DEBUG: <core> [core/rand/fortuna/random.c:175]: sr_add_entropy():
additional 4 bytes entropy added to cryptographic PRNG'
inputname: imudp rawmsg: '(665) DEBUG: <core> [core/rand/fortuna/random.c:175]:
sr_add_entropy(): additional 4 bytes entropy added to cryptographic PRNG'
$!:
$.:
$/:
Debug line with all properties:
FROMHOST: 'localhost', fromhost-ip: '127.0.0.1', HOSTNAME:
'localhost', PRI: 13,
syslogtag '(664)', programname: '(664)', APP-NAME: '(664)',
PROCID: '-', MSGID: '-',
TIMESTAMP: 'Jul 4 10:25:07', STRUCTURED-DATA: '-',
msg: ' DEBUG: <core> [core/sr_module.c:871]: init_mod_child(): idx 4 rank -1:
kex [secondary timer]'
escaped msg: ' DEBUG: <core> [core/sr_module.c:871]: init_mod_child(): idx 4
rank -1: kex [secondary timer]'
inputname: imudp rawmsg: '(664) DEBUG: <core> [core/sr_module.c:871]:
init_mod_child(): idx 4 rank -1: kex [secondary timer]'
$!:
$.:
$/:
Debug line with all properties:
FROMHOST: 'localhost', fromhost-ip: '127.0.0.1', HOSTNAME:
'localhost', PRI: 13,
syslogtag '(661)', programname: '(661)', APP-NAME: '(661)',
PROCID: '-', MSGID: '-',
TIMESTAMP: 'Jul 4 10:25:07', STRUCTURED-DATA: '-',
msg: ' DEBUG: <core> [core/rand/fortuna/random.c:175]: sr_add_entropy():
additional 4 bytes entropy added to cryptographic PRNG'
escaped msg: ' DEBUG: <core> [core/rand/fortuna/random.c:175]: sr_add_entropy():
additional 4 bytes entropy added to cryptographic PRNG'
inputname: imudp rawmsg: '(661) DEBUG: <core> [core/rand/fortuna/random.c:175]:
sr_add_entropy(): additional 4 bytes entropy added to cryptographic PRNG'
$!:
$.:
$/:
Debug line with all properties:
FROMHOST: 'localhost', fromhost-ip: '127.0.0.1', HOSTNAME:
'localhost', PRI: 13,
syslogtag '(662)', programname: '(662)', APP-NAME: '(662)',
PROCID: '-', MSGID: '-',
TIMESTAMP: 'Jul 4 10:25:07', STRUCTURED-DATA: '-',
msg: ' DEBUG: kex [kex_mod.c:155]: child_init(): rank is (-1)'
escaped msg: ' DEBUG: kex [kex_mod.c:155]: child_init(): rank is (-1)'
inputname: imudp rawmsg: '(662) DEBUG: kex [kex_mod.c:155]: child_init(): rank is
(-1)'
$!:
$.:
$/:
Debug line with all properties:
FROMHOST: 'localhost', fromhost-ip: '127.0.0.1', HOSTNAME:
'localhost', PRI: 13,
syslogtag '(661)', programname: '(661)', APP-NAME: '(661)',
PROCID: '-', MSGID: '-',
TIMESTAMP: 'Jul 4 10:25:07', STRUCTURED-DATA: '-',
msg: ' DEBUG: <core> [core/pt.c:313]: fork_process(): test random numbers
768215415 2130568241 786907391 1147444666'
escaped msg: ' DEBUG: <core> [core/pt.c:313]: fork_process(): test random
numbers 768215415 2130568241 786907391 1147444666'
inputname: imudp rawmsg: '(661) DEBUG: <core> [core/pt.c:313]: fork_process():
test random numbers 768215415 2130568241 786907391 1147444666'
$!:
$.:
$/:
Debug line with all properties:
FROMHOST: 'localhost', fromhost-ip: '127.0.0.1', HOSTNAME:
'localhost', PRI: 13,
syslogtag '(664)', programname: '(664)', APP-NAME: '(664)',
PROCID: '-', MSGID: '-',
TIMESTAMP: 'Jul 4 10:25:07', STRUCTURED-DATA: '-',
msg: ' DEBUG: kex [kex_mod.c:155]: child_init(): rank is (-1)'
escaped msg: ' DEBUG: kex [kex_mod.c:155]: child_init(): rank is (-1)'
inputname: imudp rawmsg: '(664) DEBUG: kex [kex_mod.c:155]: child_init(): rank is
(-1)'
$!:
$.:
$/:
Debug line with all properties:
FROMHOST: 'localhost', fromhost-ip: '127.0.0.1', HOSTNAME:
'localhost', PRI: 13,
syslogtag '(665)', programname: '(665)', APP-NAME: '(665)',
PROCID: '-', MSGID: '-',
TIMESTAMP: 'Jul 4 10:25:07', STRUCTURED-DATA: '-',
msg: ' DEBUG: <core> [core/pt.c:313]: fork_process(): test random numbers
1440943297 556268029 2006317306 707883259'
escaped msg: ' DEBUG: <core> [core/pt.c:313]: fork_process(): test random
numbers 1440943297 556268029 2006317306 707883259'
inputname: imudp rawmsg: '(665) DEBUG: <core> [core/pt.c:313]: fork_process():
test random numbers 1440943297 556268029 2006317306 707883259'
$!:
$.:
$/:
Debug line with all properties:
FROMHOST: 'localhost', fromhost-ip: '127.0.0.1', HOSTNAME:
'localhost', PRI: 13,
syslogtag '(664)', programname: '(664)', APP-NAME: '(664)',
PROCID: '-', MSGID: '-',
TIMESTAMP: 'Jul 4 10:25:07', STRUCTURED-DATA: '-',
msg: ' DEBUG: <core> [core/utils/sruid.c:116]: sruid_init(): root for sruid is
[srid-62c24f83-298-] (0 / 18)'
escaped msg: ' DEBUG: <core> [core/utils/sruid.c:116]: sruid_init(): root for
sruid is [srid-62c24f83-298-] (0 / 18)'
inputname: imudp rawmsg: '(664) DEBUG: <core> [core/utils/sruid.c:116]:
sruid_init(): root for sruid is [srid-62c24f83-298-] (0 / 18)'
$!:
$.:
$/:
Debug line with all properties:
FROMHOST: 'localhost', fromhost-ip: '127.0.0.1', HOSTNAME:
'localhost', PRI: 13,
syslogtag '(662)', programname: '(662)', APP-NAME: '(662)',
PROCID: '-', MSGID: '-',
TIMESTAMP: 'Jul 4 10:25:07', STRUCTURED-DATA: '-',
msg: ' DEBUG: <core> [core/utils/sruid.c:116]: sruid_init(): root for sruid is
[srid-62c24f83-296-] (0 / 18)'
escaped msg: ' DEBUG: <core> [core/utils/sruid.c:116]: sruid_init(): root for
sruid is [srid-62c24f83-296-] (0 / 18)'
inputname: imudp rawmsg: '(662) DEBUG: <core> [core/utils/sruid.c:116]:
sruid_init(): root for sruid is [srid-62c24f83-296-] (0 / 18)'
$!:
$.:
$/:
Debug line with all properties:
FROMHOST: 'localhost', fromhost-ip: '127.0.0.1', HOSTNAME:
'localhost', PRI: 13,
syslogtag '(664)', programname: '(664)', APP-NAME: '(664)',
PROCID: '-', MSGID: '-',
TIMESTAMP: 'Jul 4 10:25:07', STRUCTURED-DATA: '-',
msg: ' DEBUG: <core> [core/sr_module.c:871]: init_mod_child(): idx 4 rank -1:
log_custom [secondary timer]'
escaped msg: ' DEBUG: <core> [core/sr_module.c:871]: init_mod_child(): idx 4
rank -1: log_custom [secondary timer]'
inputname: imudp rawmsg: '(664) DEBUG: <core> [core/sr_module.c:871]:
init_mod_child(): idx 4 rank -1: log_custom [secondary timer]'
$!:
$.:
$/:
Debug line with all properties:
FROMHOST: 'localhost', fromhost-ip: '127.0.0.1', HOSTNAME:
'localhost', PRI: 13,
syslogtag '(662)', programname: '(662)', APP-NAME: '(662)',
PROCID: '-', MSGID: '-',
TIMESTAMP: 'Jul 4 10:25:07', STRUCTURED-DATA: '-',
msg: ' DEBUG: <core> [core/sr_module.c:871]: init_mod_child(): idx 2 rank -1:
log_custom [slow timer]'
escaped msg: ' DEBUG: <core> [core/sr_module.c:871]: init_mod_child(): idx 2
rank -1: log_custom [slow timer]'
inputname: imudp rawmsg: '(662) DEBUG: <core> [core/sr_module.c:871]:
init_mod_child(): idx 2 rank -1: log_custom [slow timer]'
$!:
$.:
$/:
Debug line with all properties:
FROMHOST: 'localhost', fromhost-ip: '127.0.0.1', HOSTNAME:
'localhost', PRI: 13,
syslogtag '(661)', programname: '(661)', APP-NAME: '(661)',
PROCID: '-', MSGID: '-',
TIMESTAMP: 'Jul 4 10:25:07', STRUCTURED-DATA: '-',
msg: ' DEBUG: <core> [core/sr_module.c:913]: init_child(): initializing
PROC_SIPINIT with rank 1'
escaped msg: ' DEBUG: <core> [core/sr_module.c:913]: init_child(): initializing
PROC_SIPINIT with rank 1'
inputname: imudp rawmsg: '(661) DEBUG: <core> [core/sr_module.c:913]:
init_child(): initializing PROC_SIPINIT with rank 1'
$!:
$.:
$/:
Debug line with all properties:
FROMHOST: 'localhost', fromhost-ip: '127.0.0.1', HOSTNAME:
'localhost', PRI: 13,
syslogtag '(661)', programname: '(661)', APP-NAME: '(661)',
PROCID: '-', MSGID: '-',
TIMESTAMP: 'Jul 4 10:25:07', STRUCTURED-DATA: '-',
msg: ' DEBUG: <core> [core/sr_module.c:871]: init_mod_child(): idx 1 rank 1: sl
[udp receiver child=0 sock=0.0.0.0:5060]'
escaped msg: ' DEBUG: <core> [core/sr_module.c:871]: init_mod_child(): idx 1
rank 1: sl [udp receiver child=0 sock=0.0.0.0:5060]'
inputname: imudp rawmsg: '(661) DEBUG: <core> [core/sr_module.c:871]:
init_mod_child(): idx 1 rank 1: sl [udp receiver child=0 sock=0.0.0.0:5060]'
$!:
$.:
$/:
Debug line with all properties:
FROMHOST: 'localhost', fromhost-ip: '127.0.0.1', HOSTNAME:
'localhost', PRI: 13,
syslogtag '(665)', programname: '(665)', APP-NAME: '(665)',
PROCID: '-', MSGID: '-',
TIMESTAMP: 'Jul 4 10:25:07', STRUCTURED-DATA: '-',
msg: ' DEBUG: <core> [core/sr_module.c:913]: init_child(): initializing
PROC_TCP_MAIN with rank -4'
escaped msg: ' DEBUG: <core> [core/sr_module.c:913]: init_child(): initializing
PROC_TCP_MAIN with rank -4'
inputname: imudp rawmsg: '(665) DEBUG: <core> [core/sr_module.c:913]:
init_child(): initializing PROC_TCP_MAIN with rank -4'
$!:
$.:
$/:
Debug line with all properties:
FROMHOST: 'localhost', fromhost-ip: '127.0.0.1', HOSTNAME:
'localhost', PRI: 13,
syslogtag '(665)', programname: '(665)', APP-NAME: '(665)',
PROCID: '-', MSGID: '-',
TIMESTAMP: 'Jul 4 10:25:07', STRUCTURED-DATA: '-',
msg: ' DEBUG: <core> [core/sr_module.c:871]: init_mod_child(): idx 5 rank -4: sl
[tcp main process]'
escaped msg: ' DEBUG: <core> [core/sr_module.c:871]: init_mod_child(): idx 5
rank -4: sl [tcp main process]'
inputname: imudp rawmsg: '(665) DEBUG: <core> [core/sr_module.c:871]:
init_mod_child(): idx 5 rank -4: sl [tcp main process]'
$!:
$.:
$/:
Debug line with all properties:
FROMHOST: 'localhost', fromhost-ip: '127.0.0.1', HOSTNAME:
'localhost', PRI: 13,
syslogtag '(661)', programname: '(661)', APP-NAME: '(661)',
PROCID: '-', MSGID: '-',
TIMESTAMP: 'Jul 4 10:25:07', STRUCTURED-DATA: '-',
msg: ' DEBUG: <core> [core/sr_module.c:871]: init_mod_child(): idx 1 rank 1:
corex [udp receiver child=0 sock=0.0.0.0:5060]'
escaped msg: ' DEBUG: <core> [core/sr_module.c:871]: init_mod_child(): idx 1
rank 1: corex [udp receiver child=0 sock=0.0.0.0:5060]'
inputname: imudp rawmsg: '(661) DEBUG: <core> [core/sr_module.c:871]:
init_mod_child(): idx 1 rank 1: corex [udp receiver child=0 sock=0.0.0.0:5060]'
$!:
$.:
$/:
Debug line with all properties:
FROMHOST: 'localhost', fromhost-ip: '127.0.0.1', HOSTNAME:
'localhost', PRI: 13,
syslogtag '(661)', programname: '(661)', APP-NAME: '(661)',
PROCID: '-', MSGID: '-',
TIMESTAMP: 'Jul 4 10:25:07', STRUCTURED-DATA: '-',
msg: ' DEBUG: <core> [core/sr_module.c:871]: init_mod_child(): idx 1 rank 1: kex
[udp receiver child=0 sock=0.0.0.0:5060]'
escaped msg: ' DEBUG: <core> [core/sr_module.c:871]: init_mod_child(): idx 1
rank 1: kex [udp receiver child=0 sock=0.0.0.0:5060]'
inputname: imudp rawmsg: '(661) DEBUG: <core> [core/sr_module.c:871]:
init_mod_child(): idx 1 rank 1: kex [udp receiver child=0 sock=0.0.0.0:5060]'
$!:
$.:
$/:
Debug line with all properties:
FROMHOST: 'localhost', fromhost-ip: '127.0.0.1', HOSTNAME:
'localhost', PRI: 13,
syslogtag '(665)', programname: '(665)', APP-NAME: '(665)',
PROCID: '-', MSGID: '-',
TIMESTAMP: 'Jul 4 10:25:07', STRUCTURED-DATA: '-',
msg: ' DEBUG: <core> [core/sr_module.c:871]: init_mod_child(): idx 5 rank -4:
corex [tcp main process]'
escaped msg: ' DEBUG: <core> [core/sr_module.c:871]: init_mod_child(): idx 5
rank -4: corex [tcp main process]'
inputname: imudp rawmsg: '(665) DEBUG: <core> [core/sr_module.c:871]:
init_mod_child(): idx 5 rank -4: corex [tcp main process]'
$!:
$.:
$/:
Debug line with all properties:
FROMHOST: 'localhost', fromhost-ip: '127.0.0.1', HOSTNAME:
'localhost', PRI: 13,
syslogtag '(661)', programname: '(661)', APP-NAME: '(661)',
PROCID: '-', MSGID: '-',
TIMESTAMP: 'Jul 4 10:25:07', STRUCTURED-DATA: '-',
msg: ' DEBUG: kex [kex_mod.c:155]: child_init(): rank is (1)'
escaped msg: ' DEBUG: kex [kex_mod.c:155]: child_init(): rank is (1)'
inputname: imudp rawmsg: '(661) DEBUG: kex [kex_mod.c:155]: child_init(): rank is
(1)'
$!:
$.:
$/:
Debug line with all properties:
FROMHOST: 'localhost', fromhost-ip: '127.0.0.1', HOSTNAME:
'localhost', PRI: 13,
syslogtag '(665)', programname: '(665)', APP-NAME: '(665)',
PROCID: '-', MSGID: '-',
TIMESTAMP: 'Jul 4 10:25:07', STRUCTURED-DATA: '-',
msg: ' DEBUG: <core> [core/sr_module.c:871]: init_mod_child(): idx 5 rank -4:
kex [tcp main process]'
escaped msg: ' DEBUG: <core> [core/sr_module.c:871]: init_mod_child(): idx 5
rank -4: kex [tcp main process]'
inputname: imudp rawmsg: '(665) DEBUG: <core> [core/sr_module.c:871]:
init_mod_child(): idx 5 rank -4: kex [tcp main process]'
$!:
$.:
$/:
Debug line with all properties:
FROMHOST: 'localhost', fromhost-ip: '127.0.0.1', HOSTNAME:
'localhost', PRI: 13,
syslogtag '(661)', programname: '(661)', APP-NAME: '(661)',
PROCID: '-', MSGID: '-',
TIMESTAMP: 'Jul 4 10:25:07', STRUCTURED-DATA: '-',
msg: ' DEBUG: <core> [core/utils/sruid.c:116]: sruid_init(): root for sruid is
[srid-62c24f83-295-] (0 / 18)'
escaped msg: ' DEBUG: <core> [core/utils/sruid.c:116]: sruid_init(): root for
sruid is [srid-62c24f83-295-] (0 / 18)'
inputname: imudp rawmsg: '(661) DEBUG: <core> [core/utils/sruid.c:116]:
sruid_init(): root for sruid is [srid-62c24f83-295-] (0 / 18)'
$!:
$.:
$/:
Debug line with all properties:
FROMHOST: 'localhost', fromhost-ip: '127.0.0.1', HOSTNAME:
'localhost', PRI: 13,
syslogtag '(665)', programname: '(665)', APP-NAME: '(665)',
PROCID: '-', MSGID: '-',
TIMESTAMP: 'Jul 4 10:25:07', STRUCTURED-DATA: '-',
msg: ' DEBUG: kex [kex_mod.c:155]: child_init(): rank is (-4)'
escaped msg: ' DEBUG: kex [kex_mod.c:155]: child_init(): rank is (-4)'
inputname: imudp rawmsg: '(665) DEBUG: kex [kex_mod.c:155]: child_init(): rank is
(-4)'
$!:
$.:
$/:
Debug line with all properties:
FROMHOST: 'localhost', fromhost-ip: '127.0.0.1', HOSTNAME:
'localhost', PRI: 13,
syslogtag '(665)', programname: '(665)', APP-NAME: '(665)',
PROCID: '-', MSGID: '-',
TIMESTAMP: 'Jul 4 10:25:07', STRUCTURED-DATA: '-',
msg: ' DEBUG: <core> [core/utils/sruid.c:116]: sruid_init(): root for sruid is
[srid-62c24f83-299-] (0 / 18)'
escaped msg: ' DEBUG: <core> [core/utils/sruid.c:116]: sruid_init(): root for
sruid is [srid-62c24f83-299-] (0 / 18)'
inputname: imudp rawmsg: '(665) DEBUG: <core> [core/utils/sruid.c:116]:
sruid_init(): root for sruid is [srid-62c24f83-299-] (0 / 18)'
$!:
$.:
$/:
Debug line with all properties:
FROMHOST: 'localhost', fromhost-ip: '127.0.0.1', HOSTNAME:
'localhost', PRI: 13,
syslogtag '(661)', programname: '(661)', APP-NAME: '(661)',
PROCID: '-', MSGID: '-',
TIMESTAMP: 'Jul 4 10:25:07', STRUCTURED-DATA: '-',
msg: ' DEBUG: <core> [core/sr_module.c:871]: init_mod_child(): idx 1 rank 1:
log_custom [udp receiver child=0 sock=0.0.0.0:5060]'
escaped msg: ' DEBUG: <core> [core/sr_module.c:871]: init_mod_child(): idx 1
rank 1: log_custom [udp receiver child=0 sock=0.0.0.0:5060]'
inputname: imudp rawmsg: '(661) DEBUG: <core> [core/sr_module.c:871]:
init_mod_child(): idx 1 rank 1: log_custom [udp receiver child=0 sock=0.0.0.0:5060]'
$!:
$.:
$/:
Debug line with all properties:
FROMHOST: 'localhost', fromhost-ip: '127.0.0.1', HOSTNAME:
'localhost', PRI: 13,
syslogtag '(661)', programname: '(661)', APP-NAME: '(661)',
PROCID: '-', MSGID: '-',
TIMESTAMP: 'Jul 4 10:25:07', STRUCTURED-DATA: '-',
msg: ' DEBUG: <core> [core/action.c:1687]: run_child_one_init_route():
attempting to run event_route[core:worker-one-init]'
escaped msg: ' DEBUG: <core> [core/action.c:1687]: run_child_one_init_route():
attempting to run event_route[core:worker-one-init]'
inputname: imudp rawmsg: '(661) DEBUG: <core> [core/action.c:1687]:
run_child_one_init_route(): attempting to run event_route[core:worker-one-init]'
$!:
$.:
$/:
Debug line with all properties:
FROMHOST: 'localhost', fromhost-ip: '127.0.0.1', HOSTNAME:
'localhost', PRI: 13,
syslogtag '(665)', programname: '(665)', APP-NAME: '(665)',
PROCID: '-', MSGID: '-',
TIMESTAMP: 'Jul 4 10:25:07', STRUCTURED-DATA: '-',
msg: ' DEBUG: <core> [core/sr_module.c:871]: init_mod_child(): idx 5 rank -4:
log_custom [tcp main process]'
escaped msg: ' DEBUG: <core> [core/sr_module.c:871]: init_mod_child(): idx 5
rank -4: log_custom [tcp main process]'
inputname: imudp rawmsg: '(665) DEBUG: <core> [core/sr_module.c:871]:
init_mod_child(): idx 5 rank -4: log_custom [tcp main process]'
$!:
$.:
$/:
Debug line with all properties:
FROMHOST: 'localhost', fromhost-ip: '127.0.0.1', HOSTNAME:
'localhost', PRI: 13,
syslogtag '(665)', programname: '(665)', APP-NAME: '(665)',
PROCID: '-', MSGID: '-',
TIMESTAMP: 'Jul 4 10:25:07', STRUCTURED-DATA: '-',
msg: ' DEBUG: <core> [core/local_timer.c:60]: init_local_timer(): timer_list
between 0x55e7029f85e8 and 0x55e702a3c5e8'
escaped msg: ' DEBUG: <core> [core/local_timer.c:60]: init_local_timer():
timer_list between 0x55e7029f85e8 and 0x55e702a3c5e8'
inputname: imudp rawmsg: '(665) DEBUG: <core> [core/local_timer.c:60]:
init_local_timer(): timer_list between 0x55e7029f85e8 and 0x55e702a3c5e8'
$!:
$.:
$/:
Debug line with all properties:
FROMHOST: 'localhost', fromhost-ip: '127.0.0.1', HOSTNAME:
'localhost', PRI: 13,
syslogtag '(661)', programname: '(661)', APP-NAME: '(661)',
PROCID: '-', MSGID: '-',
TIMESTAMP: 'Jul 4 10:25:07', STRUCTURED-DATA: '-',
msg: ' DEBUG: <core> [core/route.c:129]: route_add(): mapping routing block
(0x55e702a5f880)[core:worker-one-init] to 2'
escaped msg: ' DEBUG: <core> [core/route.c:129]: route_add(): mapping routing
block (0x55e702a5f880)[core:worker-one-init] to 2'
inputname: imudp rawmsg: '(661) DEBUG: <core> [core/route.c:129]: route_add():
mapping routing block (0x55e702a5f880)[core:worker-one-init] to 2'
$!:
$.:
$/:
Debug line with all properties:
FROMHOST: 'localhost', fromhost-ip: '127.0.0.1', HOSTNAME:
'localhost', PRI: 13,
syslogtag '(665)', programname: '(665)', APP-NAME: '(665)',
PROCID: '-', MSGID: '-',
TIMESTAMP: 'Jul 4 10:25:07', STRUCTURED-DATA: '-',
msg: ' DEBUG: <core> [core/io_wait.h:375]: io_watch_add(): processing
io_watch_add(0x55e7029f8420, 7, 4, 0x7fda8a625884) - fd_no=0'
escaped msg: ' DEBUG: <core> [core/io_wait.h:375]: io_watch_add(): processing
io_watch_add(0x55e7029f8420, 7, 4, 0x7fda8a625884) - fd_no=0'
inputname: imudp rawmsg: '(665) DEBUG: <core> [core/io_wait.h:375]:
io_watch_add(): processing io_watch_add(0x55e7029f8420, 7, 4, 0x7fda8a625884) -
fd_no=0'
$!:
$.:
$/:
Debug line with all properties:
FROMHOST: 'localhost', fromhost-ip: '127.0.0.1', HOSTNAME:
'localhost', PRI: 13,
syslogtag '(665)', programname: '(665)', APP-NAME: '(665)',
PROCID: '-', MSGID: '-',
TIMESTAMP: 'Jul 4 10:25:07', STRUCTURED-DATA: '-',
msg: ' DEBUG: <core> [core/io_wait.h:375]: io_watch_add(): processing
io_watch_add(0x55e7029f8420, 8, 4, 0x7fda8a625918) - fd_no=1'
escaped msg: ' DEBUG: <core> [core/io_wait.h:375]: io_watch_add(): processing
io_watch_add(0x55e7029f8420, 8, 4, 0x7fda8a625918) - fd_no=1'
inputname: imudp rawmsg: '(665) DEBUG: <core> [core/io_wait.h:375]:
io_watch_add(): processing io_watch_add(0x55e7029f8420, 8, 4, 0x7fda8a625918) -
fd_no=1'
$!:
$.:
$/:
Debug line with all properties:
FROMHOST: 'localhost', fromhost-ip: '127.0.0.1', HOSTNAME:
'localhost', PRI: 13,
syslogtag '(665)', programname: '(665)', APP-NAME: '(665)',
PROCID: '-', MSGID: '-',
TIMESTAMP: 'Jul 4 10:25:07', STRUCTURED-DATA: '-',
msg: ' DEBUG: <core> [core/io_wait.h:375]: io_watch_add(): processing
io_watch_add(0x55e7029f8420, 9, 4, 0x7fda8a6259ac) - fd_no=2'
escaped msg: ' DEBUG: <core> [core/io_wait.h:375]: io_watch_add(): processing
io_watch_add(0x55e7029f8420, 9, 4, 0x7fda8a6259ac) - fd_no=2'
inputname: imudp rawmsg: '(665) DEBUG: <core> [core/io_wait.h:375]:
io_watch_add(): processing io_watch_add(0x55e7029f8420, 9, 4, 0x7fda8a6259ac) -
fd_no=2'
$!:
$.:
$/:
Debug line with all properties:
FROMHOST: 'localhost', fromhost-ip: '127.0.0.1', HOSTNAME:
'localhost', PRI: 13,
syslogtag '(665)', programname: '(665)', APP-NAME: '(665)',
PROCID: '-', MSGID: '-',
TIMESTAMP: 'Jul 4 10:25:07', STRUCTURED-DATA: '-',
msg: ' DEBUG: <core> [core/io_wait.h:375]: io_watch_add(): processing
io_watch_add(0x55e7029f8420, 10, 4, 0x7fda8a625a40) - fd_no=3'
escaped msg: ' DEBUG: <core> [core/io_wait.h:375]: io_watch_add(): processing
io_watch_add(0x55e7029f8420, 10, 4, 0x7fda8a625a40) - fd_no=3'
inputname: imudp rawmsg: '(665) DEBUG: <core> [core/io_wait.h:375]:
io_watch_add(): processing io_watch_add(0x55e7029f8420, 10, 4, 0x7fda8a625a40) -
fd_no=3'
$!:
$.:
$/:
```
fac is 'LOCAL0' first, then change to 'USER' (PRI = 13, 1 * 8 + 5)
hanxiaofang