-
Notifications
You must be signed in to change notification settings - Fork 8.5k
Closed
Labels
Feature:Logs UILogs UI featureLogs UI featureTeam:Infra Monitoring UI - DEPRECATEDDEPRECATED - Label for the Infra Monitoring UI team. Use Team:obs-ux-infra_servicesDEPRECATED - Label for the Infra Monitoring UI team. Use Team:obs-ux-infra_servicesv7.4.0
Description
Acceptance criteria
POST /api/infra/log_analysis/jobs/remove
- This stops and removes the three ML jobs.
- If not all jobs exist anymore, it removes any remaining of the three ML jobs.
interface RemoveJobsRequest {
data: {
sourceId: string;
};
}interface RemoveJobsSuccessResponse {
data: {
jobs: Array<{
jobId: string;
jobType: JobType;
jobStatus: 'missing';
}>;
};
}interface RemoveJobsFailureResponse {
errors: Array<HTTPError>;
}
interface HTTPError {
statusCode: number;
error: string;
message: string;
attributes?: Object;
}Metadata
Metadata
Assignees
Labels
Feature:Logs UILogs UI featureLogs UI featureTeam:Infra Monitoring UI - DEPRECATEDDEPRECATED - Label for the Infra Monitoring UI team. Use Team:obs-ux-infra_servicesDEPRECATED - Label for the Infra Monitoring UI team. Use Team:obs-ux-infra_servicesv7.4.0