TSI Kibana endpoint: https://kibana.tsi.ebi.ac.uk
- Choose a sensible
Time Range
from the upper right menu icon. - Type in the search bar:
deployment_reference:tsi1502803354196
Each portal deployment is identified by a timestamp in milliseconds, following the TSI
prefix.
It is simple to convert time stamps human readable date.
This information can be used to restrict the time range
of the Kibana's queries.
Bash command BSD/Mac Os:
timestamp=tsi1502803354196
date -r ${timestamp:3:10}
Tue 15 Aug 2017 14:22:34 BST
Bash command Linux:
timestamp=tsi1502803354196
date -d @${timestamp:3:10}