메인 콘텐츠로 건너뛰기

Documentation Index

Fetch the complete documentation index at: https://wb-21fd5541-john-wbdocs-2044-rename-serverless-products.mintlify.app/llms.txt

Use this file to discover all available pages before exploring further.

class MetricChangeFilter

메트릭 값의 변화를 사용자 정의 임곗값과 비교하는 필터입니다. 변화는 “텀블링” 윈도우에서 계산됩니다. 즉, 현재 윈도우와 겹치지 않는 직전 윈도우 간의 차이입니다.

방법 MetricChangeFilter.__init__

__init__(
    name: 'str',
    agg: 'Agg | None' = None,
    window: 'int' = 1,
    cmp: 'None' = None,
    threshold: 'Annotated | Annotated',
    prior_window: 'int' = None,
    change_type: 'ChangeType',
    change_dir: 'ChangeDir'
) → None
매개변수:
  • name (str):
  • agg (Optional[Agg]):
  • window (int):
  • cmp (None): 무시됩니다.
  • threshold (Union[Annotated, Annotated]):
  • prior_window (int): “이전” 메트릭 집계 윈도우의 크기(aggNone이면 무시됨). 생략하면 현재 윈도우 크기가 기본값으로 사용됩니다.
  • change_type (ChangeType):
  • change_dir (ChangeDir):
반환값: MetricChangeFilter 객체.