Thanks Jan.

I am looking for something similar 
to 
http://code.hootsuite.com/logging-contextual-info-in-an-asynchronous-scala-application/
 
, I could able to find that either by using custom akka dispatcher or 
custom execution context, we can achieve the same, but I would prefer 
anything I can do with minimal changes in akka default behaviour. 

Using MDC with Logback; the logback uses a ThreadLocal variable and this 
works when one thread is used for one request, in case of Akka asynchronous 
communication happens across multiple threads.

Thanks
Arun

On Tuesday, September 13, 2016 at 11:27:58 AM UTC+5:30, Jan Algermissen 
wrote:
>
> Hi Arun
>
> Take a look at kamon.io
>
> Jan
>
> Sent from my iPhone
>
> On 13.09.2016, at 07:48, Arun <sethi...@gmail.com <javascript:>> wrote:
>
> Hi,
>
> We have a requirement where we need to log information with traceId (or 
> unique identifier) for  a given HTTP request across route and actors. This 
> can help us to trace logging.
>
> The configuration is as following:
>
> akka {
>   loggers = ["akka.event.slf4j.Slf4jLogger"]
>   loglevel = "INFO"
>   logging-filter = "akka.event.slf4j.Slf4jLoggingFilter"
>
> }
>
>
> and logback.xml is as following:
>
>
> <configuration>
>     <appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender">
>         <encoder class="net.logstash.logback.encoder.LogstashEncoder">
>             <includeContext>true</includeContext>
>             <fieldNames>
>                 <timestamp>@timestamp</timestamp>
>                 <message>msg</message>
>                 <thread>[ignore]</thread>
>                 <levelValue>[ignore]</levelValue>
>                 <logger>logger</logger>
>                 <version>[ignore]</version>
>             </fieldNames>
>             <throwableConverter 
> class="net.logstash.logback.stacktrace.ShortenedThrowableConverter">
>                 <maxDepthPerThrowable>80</maxDepthPerThrowable>
>                 <maxLength>2048</maxLength>
>                 <shortenedClassNameLength>20</shortenedClassNameLength>
>                   <rootCauseFirst>true</rootCauseFirst>
>             </throwableConverter>
>         </encoder>
>     </appender>
>     <root level="INFO">
>         <appender-ref ref="STDOUT" />
>     </root>
> </configuration>
>
>
> Please let me know how we can enable traceId from route to actor systems.
>
>
> Thanks
>
> Arun
>
> -- 
> >>>>>>>>>> Read the docs: http://akka.io/docs/
> >>>>>>>>>> Check the FAQ: 
> http://doc.akka.io/docs/akka/current/additional/faq.html
> >>>>>>>>>> Search the archives: https://groups.google.com/group/akka-user
> --- 
> You received this message because you are subscribed to the Google Groups 
> "Akka User List" group.
> To unsubscribe from this group and stop receiving emails from it, send an 
> email to akka-user+...@googlegroups.com <javascript:>.
> To post to this group, send email to akka...@googlegroups.com 
> <javascript:>.
> Visit this group at https://groups.google.com/group/akka-user.
> For more options, visit https://groups.google.com/d/optout.
>
>

-- 
>>>>>>>>>>      Read the docs: http://akka.io/docs/
>>>>>>>>>>      Check the FAQ: 
>>>>>>>>>> http://doc.akka.io/docs/akka/current/additional/faq.html
>>>>>>>>>>      Search the archives: https://groups.google.com/group/akka-user
--- 
You received this message because you are subscribed to the Google Groups "Akka 
User List" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to akka-user+unsubscr...@googlegroups.com.
To post to this group, send email to akka-user@googlegroups.com.
Visit this group at https://groups.google.com/group/akka-user.
For more options, visit https://groups.google.com/d/optout.

Reply via email to