486 lines
17 KiB
Python
486 lines
17 KiB
Python
# ------------------------------------------------------------------------------
|
|
# Copyright 2022 Upstream Data Inc -
|
|
# -
|
|
# Licensed under the Apache License, Version 2.0 (the "License"); -
|
|
# you may not use this file except in compliance with the License. -
|
|
# You may obtain a copy of the License at -
|
|
# -
|
|
# http://www.apache.org/licenses/LICENSE-2.0 -
|
|
# -
|
|
# Unless required by applicable law or agreed to in writing, software -
|
|
# distributed under the License is distributed on an "AS IS" BASIS, -
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -
|
|
# See the License for the specific language governing permissions and -
|
|
# limitations under the License. -
|
|
# ------------------------------------------------------------------------------
|
|
|
|
import copy
|
|
import json
|
|
import time
|
|
from dataclasses import asdict, dataclass, field, fields
|
|
from datetime import datetime, timezone
|
|
from typing import Any, List, Union
|
|
|
|
from pyasic.config import MinerConfig
|
|
from pyasic.config.mining import MiningModePowerTune
|
|
|
|
from .boards import HashBoard
|
|
from .device import DeviceInfo
|
|
from .error_codes import BraiinsOSError, InnosiliconError, WhatsminerError, X19Error
|
|
from .fans import Fan
|
|
from .hashrate import AlgoHashRate, HashUnit
|
|
from pyasic.data.pools import PoolMetrics
|
|
|
|
|
|
@dataclass
|
|
class MinerData:
|
|
"""A Dataclass to standardize data returned from miners (specifically `AnyMiner().get_data()`)
|
|
|
|
Attributes:
|
|
ip: The IP of the miner as a str.
|
|
datetime: The time and date this data was generated.
|
|
uptime: The uptime of the miner in seconds.
|
|
mac: The MAC address of the miner as a str.
|
|
device_info: Info about the device, such as model, make, and firmware.
|
|
model: The model of the miner as a str.
|
|
make: The make of the miner as a str.
|
|
firmware: The firmware on the miner as a str.
|
|
algo: The mining algorithm of the miner as a str.
|
|
api_ver: The current api version on the miner as a str.
|
|
fw_ver: The current firmware version on the miner as a str.
|
|
hostname: The network hostname of the miner as a str.
|
|
hashrate: The hashrate of the miner in TH/s as a float. Calculated automatically.
|
|
_hashrate: Backup for hashrate found via API instead of hashboards.
|
|
expected_hashrate: The factory nominal hashrate of the miner in TH/s as a float.
|
|
hashboards: A list of [`HashBoard`][pyasic.data.HashBoard]s on the miner with their statistics.
|
|
temperature_avg: The average temperature across the boards. Calculated automatically.
|
|
env_temp: The environment temps as a float.
|
|
wattage: Current power draw of the miner as an int.
|
|
voltage: Current output voltage of the PSU as an float.
|
|
wattage_limit: Power limit of the miner as an int.
|
|
fans: A list of fans on the miner with their speeds.
|
|
expected_fans: The number of fans expected on a miner.
|
|
fan_psu: The speed of the PSU on the fan if the miner collects it.
|
|
total_chips: The total number of chips on all boards. Calculated automatically.
|
|
expected_chips: The expected number of chips in the miner as an int.
|
|
percent_expected_chips: The percent of total chips out of the expected count. Calculated automatically.
|
|
percent_expected_hashrate: The percent of total hashrate out of the expected hashrate. Calculated automatically.
|
|
percent_expected_wattage: The percent of total wattage out of the expected wattage. Calculated automatically.
|
|
nominal: Whether the number of chips in the miner is nominal. Calculated automatically.
|
|
config: The parsed config of the miner, using [`MinerConfig`][pyasic.config.MinerConfig].
|
|
errors: A list of errors on the miner.
|
|
fault_light: Whether the fault light is on as a boolean.
|
|
efficiency: Efficiency of the miner in J/TH (Watts per TH/s). Calculated automatically.
|
|
is_mining: Whether the miner is mining.
|
|
pools: A list of PoolMetrics instances, each representing metrics for a pool.
|
|
"""
|
|
|
|
# general
|
|
ip: str
|
|
_datetime: datetime = field(repr=False, default=None)
|
|
datetime: str = field(init=False)
|
|
timestamp: int = field(init=False)
|
|
|
|
# about
|
|
device_info: DeviceInfo = None
|
|
make: str = field(init=False)
|
|
model: str = field(init=False)
|
|
firmware: str = field(init=False)
|
|
algo: str = field(init=False)
|
|
mac: str = None
|
|
api_ver: str = None
|
|
fw_ver: str = None
|
|
hostname: str = None
|
|
|
|
# hashrate
|
|
hashrate: AlgoHashRate = field(init=False)
|
|
_hashrate: AlgoHashRate = field(repr=False, default=None)
|
|
|
|
# expected
|
|
expected_hashrate: float = None
|
|
expected_hashboards: int = None
|
|
expected_chips: int = None
|
|
expected_fans: int = None
|
|
|
|
# % expected
|
|
percent_expected_chips: float = field(init=False)
|
|
percent_expected_hashrate: float = field(init=False)
|
|
percent_expected_wattage: float = field(init=False)
|
|
|
|
# temperature
|
|
temperature_avg: int = field(init=False)
|
|
env_temp: float = None
|
|
|
|
# power
|
|
wattage: int = None
|
|
wattage_limit: int = field(init=False)
|
|
voltage: float = None
|
|
_wattage_limit: int = field(repr=False, default=None)
|
|
|
|
# fans
|
|
fans: List[Fan] = field(default_factory=list)
|
|
fan_psu: int = None
|
|
|
|
# boards
|
|
hashboards: List[HashBoard] = field(default_factory=list)
|
|
total_chips: int = field(init=False)
|
|
nominal: bool = field(init=False)
|
|
|
|
# config
|
|
config: MinerConfig = None
|
|
fault_light: Union[bool, None] = None
|
|
|
|
# errors
|
|
errors: List[
|
|
Union[
|
|
WhatsminerError,
|
|
BraiinsOSError,
|
|
X19Error,
|
|
InnosiliconError,
|
|
]
|
|
] = field(default_factory=list)
|
|
|
|
# mining state
|
|
is_mining: bool = True
|
|
uptime: int = None
|
|
efficiency: int = field(init=False)
|
|
|
|
# pools
|
|
pools: list[PoolMetrics] = field(default_factory=list)
|
|
|
|
@classmethod
|
|
def fields(cls):
|
|
return [f.name for f in fields(cls) if not f.name.startswith("_")]
|
|
|
|
@staticmethod
|
|
def dict_factory(x):
|
|
return {k: v for (k, v) in x if not k.startswith("_")}
|
|
|
|
def __post_init__(self):
|
|
self._datetime = datetime.now(timezone.utc).astimezone()
|
|
|
|
def get(self, __key: str, default: Any = None):
|
|
try:
|
|
val = self.__getitem__(__key)
|
|
if val is None:
|
|
return default
|
|
return val
|
|
except KeyError:
|
|
return default
|
|
|
|
def __getitem__(self, item: str):
|
|
try:
|
|
return getattr(self, item)
|
|
except AttributeError:
|
|
raise KeyError(f"{item}")
|
|
|
|
def __setitem__(self, key, value):
|
|
return setattr(self, key, value)
|
|
|
|
def __iter__(self):
|
|
return iter([item for item in self.asdict()])
|
|
|
|
def __truediv__(self, other):
|
|
return self // other
|
|
|
|
def __floordiv__(self, other):
|
|
cp = copy.deepcopy(self)
|
|
for key in self:
|
|
item = getattr(self, key)
|
|
if isinstance(item, int):
|
|
setattr(cp, key, item // other)
|
|
if isinstance(item, float):
|
|
setattr(cp, key, round(item / other, 2))
|
|
return cp
|
|
|
|
def __add__(self, other):
|
|
if not isinstance(other, MinerData):
|
|
raise TypeError("Cannot add MinerData to non MinerData type.")
|
|
cp = copy.deepcopy(self)
|
|
for key in self:
|
|
item = getattr(self, key)
|
|
other_item = getattr(other, key)
|
|
if item is None:
|
|
item = 0
|
|
if other_item is None:
|
|
other_item = 0
|
|
|
|
if isinstance(item, int):
|
|
setattr(cp, key, item + other_item)
|
|
if isinstance(item, float):
|
|
setattr(cp, key, item + other_item)
|
|
if isinstance(item, str):
|
|
setattr(cp, key, "")
|
|
if isinstance(item, list):
|
|
setattr(cp, key, item + other_item)
|
|
if isinstance(item, bool):
|
|
setattr(cp, key, item & other_item)
|
|
return cp
|
|
|
|
@property
|
|
def hashrate(self): # noqa - Skip PyCharm inspection
|
|
if len(self.hashboards) > 0:
|
|
hr_data = []
|
|
for item in self.hashboards:
|
|
if item.hashrate is not None:
|
|
hr_data.append(item.hashrate)
|
|
if len(hr_data) > 0:
|
|
return sum(hr_data, start=type(hr_data[0])(0))
|
|
return self._hashrate
|
|
|
|
@hashrate.setter
|
|
def hashrate(self, val):
|
|
self._hashrate = val
|
|
|
|
@property
|
|
def wattage_limit(self): # noqa - Skip PyCharm inspection
|
|
if self.config is not None:
|
|
if isinstance(self.config.mining_mode, MiningModePowerTune):
|
|
return self.config.mining_mode.power
|
|
return self._wattage_limit
|
|
|
|
@wattage_limit.setter
|
|
def wattage_limit(self, val: int):
|
|
self._wattage_limit = val
|
|
|
|
@property
|
|
def total_chips(self): # noqa - Skip PyCharm inspection
|
|
if len(self.hashboards) > 0:
|
|
chip_data = []
|
|
for item in self.hashboards:
|
|
if item.chips is not None:
|
|
chip_data.append(item.chips)
|
|
if len(chip_data) > 0:
|
|
return sum(chip_data)
|
|
return None
|
|
|
|
@total_chips.setter
|
|
def total_chips(self, val):
|
|
pass
|
|
|
|
@property
|
|
def nominal(self): # noqa - Skip PyCharm inspection
|
|
if self.total_chips is None or self.expected_chips is None:
|
|
return None
|
|
return self.expected_chips == self.total_chips
|
|
|
|
@nominal.setter
|
|
def nominal(self, val):
|
|
pass
|
|
|
|
@property
|
|
def percent_expected_chips(self): # noqa - Skip PyCharm inspection
|
|
if self.total_chips is None or self.expected_chips is None:
|
|
return None
|
|
if self.total_chips == 0 or self.expected_chips == 0:
|
|
return 0
|
|
return round((self.total_chips / self.expected_chips) * 100)
|
|
|
|
@percent_expected_chips.setter
|
|
def percent_expected_chips(self, val):
|
|
pass
|
|
|
|
@property
|
|
def percent_expected_hashrate(self): # noqa - Skip PyCharm inspection
|
|
if self.hashrate is None or self.expected_hashrate is None:
|
|
return None
|
|
try:
|
|
return round((self.hashrate / self.expected_hashrate) * 100)
|
|
except ZeroDivisionError:
|
|
return 0
|
|
|
|
@percent_expected_hashrate.setter
|
|
def percent_expected_hashrate(self, val):
|
|
pass
|
|
|
|
@property
|
|
def percent_expected_wattage(self): # noqa - Skip PyCharm inspection
|
|
if self.wattage_limit is None or self.wattage is None:
|
|
return None
|
|
try:
|
|
return round((self.wattage / self.wattage_limit) * 100)
|
|
except ZeroDivisionError:
|
|
return 0
|
|
|
|
@percent_expected_wattage.setter
|
|
def percent_expected_wattage(self, val):
|
|
pass
|
|
|
|
@property
|
|
def temperature_avg(self): # noqa - Skip PyCharm inspection
|
|
total_temp = 0
|
|
temp_count = 0
|
|
for hb in self.hashboards:
|
|
if hb.temp is not None:
|
|
total_temp += hb.temp
|
|
temp_count += 1
|
|
if not temp_count > 0:
|
|
return None
|
|
return round(total_temp / temp_count)
|
|
|
|
@temperature_avg.setter
|
|
def temperature_avg(self, val):
|
|
pass
|
|
|
|
@property
|
|
def efficiency(self): # noqa - Skip PyCharm inspection
|
|
if self.hashrate is None or self.wattage is None:
|
|
return None
|
|
try:
|
|
return round(self.wattage / float(self.hashrate))
|
|
except ZeroDivisionError:
|
|
return 0
|
|
|
|
@efficiency.setter
|
|
def efficiency(self, val):
|
|
pass
|
|
|
|
@property
|
|
def datetime(self): # noqa - Skip PyCharm inspection
|
|
return self._datetime.isoformat()
|
|
|
|
@datetime.setter
|
|
def datetime(self, val):
|
|
pass
|
|
|
|
@property
|
|
def timestamp(self): # noqa - Skip PyCharm inspection
|
|
return int(time.mktime(self._datetime.timetuple()))
|
|
|
|
@timestamp.setter
|
|
def timestamp(self, val):
|
|
pass
|
|
|
|
@property
|
|
def make(self): # noqa - Skip PyCharm inspection
|
|
if self.device_info.make is not None:
|
|
return str(self.device_info.make)
|
|
|
|
@make.setter
|
|
def make(self, val):
|
|
pass
|
|
|
|
@property
|
|
def model(self): # noqa - Skip PyCharm inspection
|
|
if self.device_info.model is not None:
|
|
return str(self.device_info.model)
|
|
|
|
@model.setter
|
|
def model(self, val):
|
|
pass
|
|
|
|
@property
|
|
def firmware(self): # noqa - Skip PyCharm inspection
|
|
if self.device_info.firmware is not None:
|
|
return str(self.device_info.firmware)
|
|
|
|
@firmware.setter
|
|
def firmware(self, val):
|
|
pass
|
|
|
|
@property
|
|
def algo(self): # noqa - Skip PyCharm inspection
|
|
if self.device_info.algo is not None:
|
|
return str(self.device_info.algo)
|
|
|
|
@algo.setter
|
|
def algo(self, val):
|
|
pass
|
|
|
|
def keys(self) -> list:
|
|
return [f.name for f in fields(self)]
|
|
|
|
def asdict(self) -> dict:
|
|
return asdict(self, dict_factory=self.dict_factory)
|
|
|
|
def as_dict(self) -> dict:
|
|
"""Get this dataclass as a dictionary.
|
|
|
|
Returns:
|
|
A dictionary version of this class.
|
|
"""
|
|
return self.asdict()
|
|
|
|
def as_json(self) -> str:
|
|
"""Get this dataclass as JSON.
|
|
|
|
Returns:
|
|
A JSON version of this class.
|
|
"""
|
|
return json.dumps(self.as_dict())
|
|
|
|
def as_csv(self) -> str:
|
|
"""Get this dataclass as CSV.
|
|
|
|
Returns:
|
|
A CSV version of this class with no headers.
|
|
"""
|
|
data = self.asdict()
|
|
errs = []
|
|
for error in data["errors"]:
|
|
errs.append(error["error_message"])
|
|
data["errors"] = "; ".join(errs)
|
|
data_list = [str(data[item]) for item in data]
|
|
return ",".join(data_list)
|
|
|
|
def as_influxdb(self, measurement_name: str = "miner_data") -> str:
|
|
"""Get this dataclass as [influxdb line protocol](https://docs.influxdata.com/influxdb/v2.4/reference/syntax/line-protocol/).
|
|
|
|
Parameters:
|
|
measurement_name: The name of the measurement to insert into in influxdb.
|
|
|
|
Returns:
|
|
A influxdb line protocol version of this class.
|
|
"""
|
|
tag_data = [measurement_name]
|
|
field_data = []
|
|
|
|
tags = ["ip", "mac", "model", "hostname"]
|
|
for attribute in self:
|
|
if attribute in tags:
|
|
escaped_data = self.get(attribute, "Unknown").replace(" ", "\\ ")
|
|
tag_data.append(f"{attribute}={escaped_data}")
|
|
continue
|
|
elif str(attribute).startswith("_"):
|
|
continue
|
|
elif isinstance(self[attribute], str):
|
|
field_data.append(f'{attribute}="{self[attribute]}"')
|
|
continue
|
|
elif isinstance(self[attribute], bool):
|
|
field_data.append(f"{attribute}={str(self[attribute]).lower()}")
|
|
continue
|
|
elif isinstance(self[attribute], int):
|
|
field_data.append(f"{attribute}={self[attribute]}")
|
|
continue
|
|
elif isinstance(self[attribute], float):
|
|
field_data.append(f"{attribute}={self[attribute]}")
|
|
continue
|
|
elif attribute == "errors":
|
|
for idx, item in enumerate(self[attribute]):
|
|
field_data.append(f'error_{idx+1}="{item.error_message}"')
|
|
elif attribute == "hashboards":
|
|
for idx, item in enumerate(self[attribute]):
|
|
field_data.append(
|
|
f"hashboard_{idx+1}_hashrate={item.get('hashrate', 0.0)}"
|
|
)
|
|
field_data.append(
|
|
f"hashboard_{idx+1}_temperature={item.get('temp', 0)}"
|
|
)
|
|
field_data.append(
|
|
f"hashboard_{idx+1}_chip_temperature={item.get('chip_temp', 0)}"
|
|
)
|
|
field_data.append(f"hashboard_{idx+1}_chips={item.get('chips', 0)}")
|
|
field_data.append(
|
|
f"hashboard_{idx+1}_expected_chips={item.get('expected_chips', 0)}"
|
|
)
|
|
elif attribute == "fans":
|
|
for idx, item in enumerate(self[attribute]):
|
|
if item.speed is not None:
|
|
field_data.append(f"fan_{idx+1}={item.speed}")
|
|
|
|
tags_str = ",".join(tag_data)
|
|
field_str = ",".join(field_data)
|
|
timestamp = str(self.timestamp * 1e9)
|
|
|
|
return " ".join([tags_str, field_str, timestamp])
|