def getStatNames(self): statsUrl = self.sessionIdUrl+'/ixLoad/stats' self.logInfo('\ngetStatNames: %s\n' % statsUrl) response = self.get(statsUrl) for eachStatName in response.json()['links']: self.logInfo('\t%s' % eachStatName['href'], timestamp=False) return response.json()