PostHog · Schema
ErrorTrackingSpikeDetectionConfig
A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording
Properties
| Name | Type | Description |
|---|---|---|
| snooze_duration_minutes | integer | Time to wait before alerting again for the same issue after a spike is detected. |
| multiplier | integer | The factor by which the current exception count must exceed the baseline to be considered a spike. |
| threshold | integer | The minimum number of exceptions required in a 5-minute window before a spike can be detected. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/ErrorTrackingSpikeDetectionConfig",
"title": "ErrorTrackingSpikeDetectionConfig",
"type": "object",
"properties": {
"snooze_duration_minutes": {
"type": "integer",
"minimum": 1,
"description": "Time to wait before alerting again for the same issue after a spike is detected."
},
"multiplier": {
"type": "integer",
"minimum": 1,
"description": "The factor by which the current exception count must exceed the baseline to be considered a spike."
},
"threshold": {
"type": "integer",
"minimum": 1,
"description": "The minimum number of exceptions required in a 5-minute window before a spike can be detected."
}
},
"required": [
"multiplier",
"snooze_duration_minutes",
"threshold"
]
}