Home | History | Annotate | Download | only in test
      1 
      2 # --------------------------------------------------
      3 # this is an example definition of a chart pipeline
      4 #
      5 
      6 
      7 DataSource = outfile.sdb
      8 DataSource {
      9 # TODO: specify time range for the dataset....
     10 }
     11 
     12 DomainData {
     13 # TODO: include data values for agents, queues, etc.
     14 }
     15 
     16 Filters {
     17 # TODO: configure filters to limit data
     18 }
     19 
     20 Chart {
     21   next_stage {
     22      id [attr=1, batter] = 1
     23      Type              = Mux
     24      Bucket            = Discrete
     25      Bucket.FieldId    = QUEUE
     26      Bucket.Dimension  = Y
     27      
     28      next_stage {
     29          id [attr=2, batter] = 2
     30          Type              = Mux
     31          Bucket            = Time
     32          Bucket.FieldId    = TIME
     33          Bucket.Dimension  = Y
     34 
     35          next_stage {
     36              id [attr=3] = 3
     37              Type              = Mux
     38              Bucket            = Discrete
     39              Bucket.FieldId    = AGENT
     40              Bucket.Dimension  = X
     41 
     42              next_stage {
     43                  id                  = 4
     44                  Type                = Accumulator
     45              }
     46          }
     47      }
     48     
     49   }
     50 }
     51