Sha256: 1f7b0f10b9641ecc06c711e8c0284e5192d92b4861508724d08598c84eed2f83

Contents?: true

Size: 1.48 KB

Versions: 4

Compression:

Stored size: 1.48 KB

Contents


# Define a 'dashboard' consisting of two columns of widgets
#

widget:
  id: linked_graphs
  name: Dashboard
  top_level: true
  priority: 800
  type: layout/two_columns/50_50
  left:
    - name: Network
      type: data/network2
      width: 1.0
      height: 1.0
      data_source: 
        name: network
        unique_column: id  # only use the latest link and row descriptions
        dynamic: true
      mapping:
        nodes:
          x:
            property: x
          y: 
            property: y
          radius: 20
        links:
          stroke_width:
            property: rate
            scale: 1e-4
            min: 3
            max: 20
          stroke_color:
            property: load
            max: 1.0
            color: green_yellow80_red()
      margin: 
        left: 30
        right: 30
      #interaction_mode: click  # click on link to create event

        
  right:
    - name: Link Stats
      type: data/line_chart3
      #area: true # color the area between line and zero line
      width: 1.0
      height: 0.8
      data_source:
        name: link_history
      mapping:
        x_axis: ts
        y_axis: 
          property:  rate 
          #max: 1
        group_by: name
      axis:
        x:
          ticks:
            format: 's'
            #type: time
          legend: Time (sec)
          transition: 0
        y:
          min: 0
          legend: Rate (bps)
          ticks:
            format: 's'
          transition: 0
      margin: 
        left: 100

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
omf_web-1.0.0 example/openflow-gec15/dashboard_tab.yaml
omf_web-0.9.9 example/openflow-gec15/dashboard_tab.yaml
omf_web-0.9.8 example/openflow-gec15/dashboard_tab.yaml
omf_web-0.9.7 example/openflow-gec15/dashboard_tab.yaml