# ${copyright} pekko { # Loggers to register at boot time (pekko.event.Logging$DefaultLogger logs # to STDOUT) loggers = ["org.apache.pekko.event.slf4j.Slf4jLogger"] logging-filter = "org.apache.pekko.event.slf4j.Slf4jLoggingFilter" # Log level for the very basic logger activated during ActorSystem startup. # This logger prints the log messages to stdout (System.out). # Options: OFF, ERROR, WARNING, INFO, DEBUG stdout-loglevel = "OFF" log-config-on-start = off log-dead-letters = off log-dead-letters-during-shutdown = off actor { # default dispatcher default-dispatcher { fork-join-executor { # Parallelism (threads) ... ceil(available processors * factor) parallelism-min=2.0 parallelism-factor = 2.0 parallelism-max = 16 } # Set to 1 for as fair as possible. throughput = 1000 } debug { # enable function of Actor.loggable(), which is to log any received message # at DEBUG level, see the "Testing Actor Systems" section of the Pekko # Documentation at https://nightlies.apache.org/pekko/docs/pekko/1.0.1/docs//typed/logging.html receive = off # enable DEBUG logging of all AutoReceiveMessages (Kill, PoisonPill etc.) autoreceive = on # enable DEBUG logging of actor lifecycle changes lifecycle = on # enable DEBUG logging of all LoggingFSMs for events, transitions and timers fsm = off # enable DEBUG logging of subscription changes on the eventStream event-stream = off # enable DEBUG logging of unhandled messages unhandled = on # enable WARN logging of misconfigured routers router-misconfiguration = on } } } preview-priority-mailbox { mailbox-type = "com.splunk.itsi.rule.engine.core.PreviewPriorityMailBox" //Other mailbox configuration goes here }