Skip to content

Latest commit

 

History

History
18 lines (17 loc) · 1.16 KB

File metadata and controls

18 lines (17 loc) · 1.16 KB

Timelion Exercise

  1. Access Kibana user interface with browser: http://ip-address:5601/
  2. Select Visualization and then search for Timelion
  3. Switch to full screen using the icon on the chart
  4. In the formula area type: .es(*)
  5. Select a time range of the last 2 years
  6. Select the play button to update the presentation to present a typical time-series chart
  7. In the formula area, extend the expression to .es(*).derivative()
  8. Select '1h' for the time interval from the drop-down list
  9. And select the play button again - variation for the number of events on an hourly basis will be presented
  10. Add some custom color to the time series: .es(*).color(yellow) and select the play button
  11. Convert line to bars: .es(*).bars().color(red) and select play button again
  12. Adding another metric to the chart: .es(),.es(metric=max:memory).divide(100)
  13. Can add data from a World Bank, e.g. world population in billions: .es(),.wbi(indicator=SP.POP.TOTL).divide(10000000)
  14. The world bank indicators may experience intermittent issues when querying and may stop working over time
  15. You are getting the idea of a potential and complexity