Files
scylladb/test/pylib/db/model.py
Avi Kivity 0ae22a09d4 LICENSE: Update to version 1.1
Updated terms of non-commercial use (must be a never-customer).
2026-04-12 19:46:33 +03:00

49 lines
798 B
Python

#
# Copyright (C) 2024-present ScyllaDB
#
# SPDX-License-Identifier: LicenseRef-ScyllaDB-Source-Available-1.1
#
from datetime import datetime
from attr import define
@define
class CgroupMetric:
memory: int
test_id: int
host_id: str
timestamp: datetime
@define
class Metric:
test_id: int
host_id: str
memory_peak: int = None
success: bool = None
system_sec: float = None
time_end: datetime = None
time_start: datetime = None
time_taken: float = None
usage_sec: float = None
user_sec: float = None
@define
class SystemResourceMetric:
host_id: str
cpu: float
memory: float
timestamp: datetime
@define
class Test:
host_id: str
architecture: str
directory: str
mode: str
run_id: int
test_name: str