forked from TrueCloudLab/frostfs-testlib
local scenario
Signed-off-by: m.malygina <m.malygina@yadro.com>
This commit is contained in:
parent
64f004d5a5
commit
9feb8135e3
3 changed files with 5 additions and 0 deletions
|
@ -165,6 +165,7 @@ class S3Metrics(MetricsBase):
|
|||
class LocalMetrics(MetricsBase):
|
||||
_WRITE_SUCCESS = "local_obj_put_total"
|
||||
_WRITE_ERRORS = "local_obj_put_fails"
|
||||
_WRITE_LATENCY = "local_obj_put_duration"
|
||||
|
||||
_READ_SUCCESS = "local_obj_get_total"
|
||||
_READ_ERRORS = "local_obj_get_fails"
|
||||
|
|
|
@ -4,6 +4,7 @@ class ConfigAttributes:
|
|||
WALLET_PATH = "wallet_path"
|
||||
WALLET_CONFIG = "wallet_config"
|
||||
CONFIG_PATH = "config_path"
|
||||
SHARD_CONFIG_PATH = "shard_config_path"
|
||||
LOCAL_WALLET_PATH = "local_wallet_path"
|
||||
LOCAL_WALLET_CONFIG = "local_config_path"
|
||||
ENDPOINT_DATA_0 = "endpoint_data0"
|
||||
|
|
|
@ -138,6 +138,9 @@ class StorageNode(NodeBase):
|
|||
)
|
||||
return health_metric in output
|
||||
|
||||
def get_shard_config_path(self) -> str:
|
||||
return self._get_attribute(ConfigAttributes.SHARD_CONFIG_PATH)
|
||||
|
||||
def get_control_endpoint(self) -> str:
|
||||
return self._get_attribute(ConfigAttributes.CONTROL_ENDPOINT)
|
||||
|
||||
|
|
Loading…
Reference in a new issue