"Could not get Timeline data" when using Timeline Visualization with Comma IDE

101 Views Asked by At

After implementing the answer to this question on how to set up a script for time visualization in this project (which uses a small extension to the published Log::Timeline that allows me to set the logging file from the program itself), I still get the same error

12:18   Timeline connection error: Could not get timeline data: java.net.ConnectException: Conexión rehusada

(which means refused connection). I've also checked the created files, and they are empty, they don't receive anything. I'm using this to log:

class Events does Log::Timeline::Event['ConcurrentEA', 'App', 'Log'] { }

(as per the README.md file). It's probably the case that there's no such thing as a default implementation, as shown in the tests, but, in that case, what would be the correct way of making it print to the file and also connect to the timeline visualizer?

1

There are 1 best solutions below

2
On

If you want to use the timeline visualization, leave the defaults for logging, commenting out any modification of the standard logging output. In my case:

#BEGIN {
#    PROCESS::<$LOG-TIMELINE-OUTPUT>
#           = Log::Timeline::Output::JSONLines.new(
#               path => log-file
#            )
#}

Timeline event visualization

Not really sure if this would have happened if an output file is defined using an environment variable, but in any case, better to be on the safe side. You can use the output file when you eventually drop the script into production.