Sha256: fbb15496da027baf305f35ce793ebbf74e2bca917ff987ae72d5e0d99bd65243

Contents?: true

Size: 1.51 KB

Versions: 3

Compression:

Stored size: 1.51 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
        sub_sources: [nodes, links]
        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

3 entries across 3 versions & 1 rubygems

Version Path
omf_web-1.2.9 example/openflow-gec15/dashboard_tab.yaml
omf_web-1.2.8 example/openflow-gec15/dashboard_tab.yaml
omf_web-1.2.7 example/openflow-gec15/dashboard_tab.yaml