Hi , We are using KIBANA for logging purpose. When ever there is any exception , in Kibana we are not seeing the Exception/Stack Trace details fully.
e.g.
try
{
int j = i/0;
}
catch(Exception ex)
{
logger.error("Error Occured= ", ex );
}
In the Above Example , Kibana only displaying the Words "Error Occured= " . It is not displaying the details of the object ex ( I mean Stack Trace). Please help me in how to configure the Kibana to see the Stack Trace details.