Changes between Version 11 and Version 12 of Tutorial/HowToStatus
- Timestamp:
- Nov 29, 2007, 12:21:24 AM (17 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Tutorial/HowToStatus
v11 v12 15 15 }}} 16 16 17 [[BR]] 17 18 === Getting Started === 18 19 … … 20 21 21 22 {{{ 22 statnodeall23 orbit stat all 23 24 # will query the status of the entire set of 20x20 nodes on the 'grid' 24 25 25 statnode[[3,1],[5,6],[1,1..2]]26 orbit stat [[3,1],[5,6],[1,1..2]] 26 27 # will query the status of nodes 3,1 and 5,6 and 1,1 and 1,2 27 28 28 statnodesystem:topo:circle29 orbit stat system:topo:circle 29 30 # will query the status of the nodes in the topology file 'repository/system/topo/circle.rb' 30 31 31 statnodemytopo32 orbit stat mytopo 32 33 # will query the status of the nodes in the topology file './mytopo.rb' 33 34 34 statnode-c35 orbit stat -c 35 36 # will return a summary of the state of the nodes on the grid 36 37 }}} 37 38 39 [[BR]] 38 40 === Learning More === 39 41 40 The complete available option /commands for ''statnode'' are:42 The complete available options for this command is given by ''"orbit help stat"'': 41 43 42 44 {{{ 43 statnode --help45 orbit help stat 44 46 45 47 Returns the status of the nodes in a testbed 46 48 Usage: 47 statnode[-h]48 statnode[-c] [DOMAIN]49 statnode[TOPOLOGY] [DOMAIN]49 orbit stat [-h] 50 orbit stat [-c] [DOMAIN] 51 orbit stat [TOPOLOGY] [DOMAIN] 50 52 51 53 With: … … 57 59 58 60 Some Examples: 59 statnodeall grid60 statnode1,1..261 statnode[[1,2],[1,1]] sb162 statnode[[1,1],[2..6,1..2]]63 statnodesystem:topo:all64 statnodesystem:topo:circle65 statnodetopo_grid_active61 orbit stat all grid 62 orbit stat 1,1..2 63 orbit stat [[1,2],[1,1]] sb1 64 orbit stat [[1,1],[2..6,1..2]] 65 orbit stat system:topo:all 66 orbit stat system:topo:circle 67 orbit stat topo_grid_active 66 68 }}} 67 69