Changes between Version 6 and Version 7 of GEC18Agenda/LabWikiAndOEDL/Experiment2


Ignore:
Timestamp:
10/18/13 02:00:11 (10 years ago)
Author:
thierry.rakotoarivelo@nicta.com.au
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • GEC18Agenda/LabWikiAndOEDL/Experiment2

    v6 v7  
    3838 3.  Cut-and-paste the following OEDL experiment description into that file, then save it
    3939    {{{
    40 defProperty('slice', 'cdw', "slice name")
     40defProperty('slice', 'oedl-', "slice name")
    4141defProperty('tracker', "1", "ID of tracker node")
    4242defProperty('leecher_player', "2,3", "List of leecher/player nodes")
     
    5656
    5757defApplication('clean_leechers') do |app|
    58   app.description = 'Ensure that leechers do not have the video from a previous experiment run'
     58  app.description = 'Ensure that leechers do not have the file to download'
    5959  app.binary_path = 'rm -f /root/Downloads/* /root/.config/transmission-daemon/resume/* /root/.config/transmission-daemon/torrents/*'
    6060  app.quiet = true
     
    167167end
    168168
    169 defGraph 'VLC Player' do |h|
    170   h.ms('video').select {[ :oml_sender_id, :oml_seq, :oml_ts_server, :i_played_video_frames ]}
    171   h.caption "VLC Player (frames played)"
    172   h.type 'line_chart3'
    173   h.mapping :x_axis => :oml_ts_server, :y_axis => :i_played_video_frames, :group_by => :oml_sender_id
    174   h.xaxis :legend => 'time [s]'
    175   h.yaxis :legend => 'Frames played', :ticks => {:format => 's'}
     169defGraph 'VLC Player' do |g|
     170  g.ms('video').select {[ :oml_sender_id, :oml_seq, :oml_ts_server, :i_played_video_frames ]}
     171  g.caption "VLC Player (frames played)"
     172  g.type 'line_chart3'
     173  g.mapping :x_axis => :oml_ts_server, :y_axis => :i_played_video_frames, :group_by => :oml_sender_id
     174  g.xaxis :legend => 'time [s]'
     175  g.yaxis :legend => 'Frames played', :ticks => {:format => 's'}
    176176end
    177177    }}}