Skip to content

Feature Monitoring Window Configuration#

[source]

MonitoringWindowConfig#

hsfs.core.monitoring_window_config.MonitoringWindowConfig(
    id=None,
    window_config_type=SPECIFIC_VALUE,
    time_offset=None,
    window_length=None,
    training_dataset_version=None,
    specific_value=None,
    row_percentage=None,
    **kwargs
)

Properties#

[source]

id#

Id of the window configuration.


[source]

row_percentage#

The percentage of rows to fetch and compute the statistics on. Only used for windows of type ROLLING_TIME and ALL_TIME.


[source]

specific_value#

The specific value to use as reference. Only used for windows of type SPECIFIC_VALUE.


[source]

time_offset#

The time offset from the current time to the start of the time window. Only used for windows of type ROLLING_TIME.


[source]

training_dataset_version#

The version of the training dataset to use as reference. Only used for windows of type TRAINING_DATASET.


[source]

window_config_type#

Type of the window. It can be one of ALL_TIME, ROLLING_TIME, TRAINING_DATASET or SPECIFIC_VALUE.


[source]

window_length#

The length of the time window. Only used for windows of type ROLLING_TIME.