You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// A user-facing description of what this alert type means.
150
+
pubfndescription(&self) -> &'staticstr{
151
+
matchself{
152
+
AlertType::AutoDiscoverFailed => {
153
+
"Triggers when a capture's automated schema discovery fails. The capture may be unable to respond to schema changes in the source system."
154
+
}
155
+
AlertType::DataMovementStalled => {
156
+
"Triggers when a task has not processed any data during its configured alert interval."
157
+
}
158
+
AlertType::FreeTrial => {
159
+
"Triggers when a free trial begins, and resolves when the trial period ends."
160
+
}
161
+
AlertType::FreeTrialEnding => {
162
+
"Triggers when a free trial is getting close to expiring."
163
+
}
164
+
AlertType::FreeTrialStalled => {
165
+
"Triggers when a free trial has expired and no payment method has been added."
166
+
}
167
+
AlertType::MissingPaymentMethod => {
168
+
"Triggers when no payment method is on file, and resolves when one is added."
169
+
}
170
+
AlertType::ShardFailed => {
171
+
"Triggers when a task has experienced repeated failures. It may still make progress, but performance is degraded."
172
+
}
173
+
AlertType::TaskChronicallyFailing => {
174
+
"Triggers when a task has been unable to run for an extended period. It will be automatically disabled unless the issue is addressed."
175
+
}
176
+
AlertType::TaskAutoDisabledFailing => {
177
+
"Triggers when a task is automatically disabled after failing continuously for an extended period."
178
+
}
179
+
AlertType::TaskIdle => {
180
+
"Triggers when a task has not processed any data for an extended period and has not been modified recently. It will be automatically disabled unless a new version is published."
181
+
}
182
+
AlertType::TaskAutoDisabledIdle => {
183
+
"Triggers when a task is automatically disabled after being idle for an extended period without any spec changes."
184
+
}
185
+
AlertType::BackgroundPublicationFailed => {
186
+
"Triggers when an automated background publication fails. Affected tasks are unlikely to function until the issue is addressed."
0 commit comments