Ubuntu Pastebin

Paste from smoser at Tue, 28 Jul 2015 20:55:49 +0000

Download as text
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
main calls: report_event_start("main-init")
  datasource search calls:  report_event_start("ds-search")
    ds search calls:  report_event_start("nocloud")
    ds search calls:  report_event_end("nocloud")
    ds search calls:  report_event_start("ec2")
    ds search calls:  report_event_end("ec2")
    ds search calls:  report_event_start("openstack")
    ds search calls:  report_event_end("openstack")

I'd like reporting to see:
   start "main-init"
   start "main-init/ds-search"
   start "main-init/ds-search/nocloud"
   end   "main-init/ds-search/nocloud"
   start "main-init/ds-search/ec2"
   end   "main-init/ds-search/ec2"
   start "main-init/ds-search/openstack"
   end   "main-init/ds-search/openstack"
   end   "main-init/ds-search"
   end   "main-init"

Does this seem sane?
How could we do this?
Download as text