Source code for gamebench_api_client.models.dataframes.time_series.time_series_models

""" All modules that use the TimeSeriesMediator.

    The classes inherit from the AbstractTimeSeriesModel.
    Each model is kept as its own class so new behavior can be added
    individually as needed.
"""

from gamebench_api_client.models.dataframes.time_series.abstract_time_series import AbstractTimeSeriesModel


[docs]class Battery(AbstractTimeSeriesModel): """ Object to set the Battery information for a session.""" METRIC_PATH = '/battery'
[docs]class CpuCoreFrequency(AbstractTimeSeriesModel): """ Object to set the CPU Core Frequency information for a session.""" METRIC_PATH = '/corefreq'
[docs]class Cpu(AbstractTimeSeriesModel): """ Object to set the CPU usage information for a session.""" METRIC_PATH = '/cpu'
[docs]class Energy(AbstractTimeSeriesModel): """ Object to set the Energy information for a session.""" METRIC_PATH = '/energy'
[docs]class Fps(AbstractTimeSeriesModel): """ Object to set the FPS information for a session.""" METRIC_PATH = '/fps'
[docs]class GpuImg(AbstractTimeSeriesModel): """ Object to set the Imagination GPU information for a session.""" METRIC_PATH = '/gpu/img'
[docs]class Gpu(AbstractTimeSeriesModel): """ Object to set the non-Imagination GPU information for a session.""" METRIC_PATH = '/gpu/other'
[docs]class Janks(AbstractTimeSeriesModel): """ Object to set the Janks information for a session.""" METRIC_PATH = '/janks'
[docs]class Memory(AbstractTimeSeriesModel): """ Object to set the Memory information for a session.""" METRIC_PATH = '/memory'
[docs]class Network(AbstractTimeSeriesModel): """ Object to set the Network information for a session.""" METRIC_PATH = '/network'
[docs]class Power(AbstractTimeSeriesModel): """ Object to set the Power information for a session.""" METRIC_PATH = '/power'