Changes between Version 5 and Version 6 of Old/Athstats/ScriptsRepository/AthstatsAppDef
- Timestamp:
- Feb 12, 2006, 2:01:45 AM (19 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Old/Athstats/ScriptsRepository/AthstatsAppDef
v5 v6 1 [wiki:WikiStart Orbit] > [wiki: Athstats Athstats] > [wiki:Athstats/ScriptsRepository Scripts Repository] > athstats.rb1 [wiki:WikiStart Orbit] > [wiki:Documentation/Athstats Athstats] > [wiki:Documentation/Athstats/ScriptsRepository Scripts Repository] > athstats.rb 2 2 3 3 {{{ … … 10 10 a = AppDefinition.create('test:app:athstats') 11 11 a.name = "athstats" 12 a.version(1, 1, 0)12 a.version(1, 1, 1) 13 13 a.shortDescription = "Application to gather madwifi driver statistics" 14 14 a.description = <<TEXT … … 23 23 # Metrics reported via OML. 24 24 a.addMeasurement("queryport", nil, [ 25 ['succ_tx_attempts','int'], 26 ['fail_xretries','int'], 27 ['total_frames_rcvd','int'] 25 ['succ_tx_attempts', 'int'], 26 ['fail_xretries', 'int'], 27 ['fail_fifoerr', 'int'], 28 ['fail_filtered', 'int'], 29 ['short_retries', 'int'], 30 ['long_retries', 'int'], 31 ['total_frames_rcvd', 'int'], 32 ['crc_errors', 'int'], 33 ['fifo_errors', 'int'], 34 ['phy_errors', 'int'] 28 35 ]) 29 36 a.path = "/usr/bin/athstats-oml"