forked from platypush/platypush
Removed (now unused) CpuTimesResponse
.
This commit is contained in:
parent
b9286f50b0
commit
711cc2b239
1 changed files with 0 additions and 34 deletions
|
@ -28,40 +28,6 @@ class SensorResponse(SystemResponse):
|
|||
pass
|
||||
|
||||
|
||||
class CpuTimesResponse(CpuResponse):
|
||||
def __init__(
|
||||
self,
|
||||
user: float,
|
||||
nice: float,
|
||||
system: float,
|
||||
idle: float,
|
||||
iowait: float,
|
||||
irq: float,
|
||||
softirq: float,
|
||||
steal: float,
|
||||
guest: float,
|
||||
guest_nice: float,
|
||||
*args,
|
||||
**kwargs
|
||||
):
|
||||
super().__init__(
|
||||
*args,
|
||||
output={
|
||||
'user': user,
|
||||
'nice': nice,
|
||||
'system': system,
|
||||
'idle': idle,
|
||||
'iowait': iowait,
|
||||
'irq': irq,
|
||||
'softirq': softirq,
|
||||
'steal': steal,
|
||||
'guest': guest,
|
||||
'guest_nice': guest_nice,
|
||||
},
|
||||
**kwargs
|
||||
)
|
||||
|
||||
|
||||
class CpuStatsResponse(CpuResponse):
|
||||
def __init__(
|
||||
self,
|
||||
|
|
Loading…
Reference in a new issue