__init__(self,
        master,
        events='steps',
        username='statusClient',
        passwd='clientpw')
     (Constructor)
  
   | source code 
     | 
    
  
  
  
    - Parameters:
 
    
        master (string) - a host:port string to masters buildbot.status.client.PBListener 
        username (string) 
        passwd (string) 
        events (string, one of builders, builds, steps, logs, full) - specify what level of detail should be reported.
          
            - 
              'builders': only announce new/removed Builders
            
 
            - 
              'builds': also announce builderChangedState, buildStarted, 
              and buildFinished
            
 
            - 
              'steps': also announce buildETAUpdate, stepStarted, 
              stepFinished
            
 
            - 
              'logs': also announce stepETAUpdate, logStarted, logFinished
            
 
            - 
              'full': also announce log contents
            
 
            
      
   
 |