add efficiency to MinerData

This commit is contained in:
UpstreamData
2022-08-22 14:50:49 -06:00
parent 957c9a3678
commit abef0c3d59

View File

@@ -60,6 +60,7 @@ class MinerData:
pool_2_user: The second pool user on the miner as a str.
errors: A list of errors on the miner.
fault_light: Whether or not the fault light is on as a boolean.
efficiency: Efficiency of the miner in J/TH (Watts per TH/s). Calculated automatically.
"""
ip: str
@@ -101,6 +102,7 @@ class MinerData:
default_factory=list
)
fault_light: Union[bool, None] = None
efficiency: int = field(init=False)
def __post_init__(self):
self.datetime = datetime.now()
@@ -149,5 +151,15 @@ class MinerData:
def temperature_avg(self, val):
pass
@property
def efficiency(self): # noqa - Skip PyCharm inspection
if self.hashrate == 0:
return 0
return round(self.wattage / self.hashrate)
@efficiency.setter
def efficiency(self, val):
pass
def asdict(self):
return asdict(self)