| 
                Last change
                  on this file since 653 was
                  653,
                  checked in by price, 17 years ago
           | 
        
        
          | 
               
err, what I meant 
 
This is what happens when you have a race you can't actually reproduce. 
 
           | 
        
        
          
            
              - 
                  Property svn:executable set to
                  
*
               
             
           | 
        
        | 
            File size:
            1.3 KB
           | 
      
      
        
  | Rev | Line |   | 
|---|
| [531] | 1 | #!/usr/bin/python | 
|---|
| [122] | 2 |  | 
|---|
| [531] | 3 | import sys | 
|---|
| [533] | 4 | import time | 
|---|
| [531] | 5 | sys.path.insert(0, '/usr/lib/xen-3.1-1/lib/python') | 
|---|
 | 6 | from xen.lowlevel.xs import xs | 
|---|
 | 7 |  | 
|---|
 | 8 | trans = xs() | 
|---|
 | 9 |  | 
|---|
 | 10 | def live_vms(): | 
|---|
 | 11 |     domids = set(trans.ls('', '/local/domain')) | 
|---|
| [533] | 12 |     domids.discard('0') | 
|---|
| [531] | 13 |  | 
|---|
 | 14 |     vms = dict() | 
|---|
 | 15 |  | 
|---|
 | 16 |     for domid in domids: | 
|---|
| [652] | 17 |         try: | 
|---|
 | 18 |             name, data = get_dom(int(domid)) | 
|---|
 | 19 |         except ValueError: | 
|---|
| [653] | 20 |             next # went down since we started | 
|---|
| [531] | 21 |         if name.startswith('d_'): | 
|---|
 | 22 |             name = name[2:] | 
|---|
 | 23 |             vms[name] = data | 
|---|
 | 24 |     return vms | 
|---|
 | 25 |  | 
|---|
 | 26 | def get_dom(domid): | 
|---|
 | 27 |     name = trans.read('', '/local/domain/%d/name' % domid) | 
|---|
 | 28 |     data = dict() | 
|---|
 | 29 |     data['domid'] = domid | 
|---|
 | 30 |     # presence of a graphical console | 
|---|
 | 31 |     data['console'] = trans.read('', '/local/domain/%d/device/vfb/0/state' % domid) | 
|---|
 | 32 |     # uptime | 
|---|
 | 33 |     data['vm'] = trans.read('', '/local/domain/%d/vm' % domid) | 
|---|
 | 34 |     data['start_time'] = float(trans.read('', '%s/start_time' % data['vm'])) | 
|---|
| [533] | 35 |     data['uptime'] = time.time()-data['start_time'] | 
|---|
| [531] | 36 |      | 
|---|
 | 37 |     return name, data | 
|---|
 | 38 |  | 
|---|
 | 39 | if __name__ == '__main__': | 
|---|
 | 40 |     vms = live_vms() | 
|---|
| [553] | 41 |     if '--json' in sys.argv[1:]: | 
|---|
 | 42 |         import cjson | 
|---|
 | 43 |         print cjson.encode(vms) | 
|---|
 | 44 |     elif '--pickle' in sys.argv[1:]: | 
|---|
 | 45 |         import cPickle | 
|---|
 | 46 |         cPickle.dump(vms, sys.stdout, cPickle.HIGHEST_PROTOCOL) | 
|---|
 | 47 |     else: | 
|---|
 | 48 |         import yaml | 
|---|
| [564] | 49 |         print yaml.dump(vms, Dumper=yaml.CSafeDumper, default_flow_style=False) | 
|---|
       
      
      Note: See 
TracBrowser
        for help on using the repository browser.