Sha256: c823d1763495d4ba2c9e25738b7b295794f0483195119c1585b813242881c421

Contents?: true

Size: 1.48 KB

Versions: 7

Compression:

Stored size: 1.48 KB

Contents

#
# First tab showing the network on the left and
# link stats on the right.
#
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

7 entries across 7 versions & 1 rubygems

Version Path
omf_web-1.2.6 example/openflow-gec15/dashboard_tab.yaml
omf_web-1.2.5 example/openflow-gec15/dashboard_tab.yaml
omf_web-1.2.4 example/openflow-gec15/dashboard_tab.yaml
omf_web-1.2.3 example/openflow-gec15/dashboard_tab.yaml
omf_web-1.2.2 example/openflow-gec15/dashboard_tab.yaml
omf_web-1.2.1 example/openflow-gec15/dashboard_tab.yaml
omf_web-1.2.0 example/openflow-gec15/dashboard_tab.yaml