def qps(self, callback=None, errback=None): """ Return the current QPS for this zone :rtype: dict :return: QPS information """ stats = Stats(self.config) return stats.qps(zone=self.zone, callback=callback, errback=errback)
def qps(self, callback=None, errback=None): """ Return the current QPS for this record :rtype: dict :return: QPS information """ if not self.data: raise RecordException('record not loaded') stats = Stats(self.parentZone.config) return stats.qps(zone=self.parentZone.zone, domain=self.domain, type=self.type, callback=callback, errback=errback)