mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2026-09-25 00:00:53 +00:00
44 lines
1.6 KiB
Go
44 lines
1.6 KiB
Go
import http from '@/api';
|
|
import { HostTool } from '../interface/host-tool';
|
|
import { TimeoutEnum } from '@/enums/http-enum';
|
|
|
|
export const GetSupervisorStatus = () => {
|
|
return http.post<HostTool.HostTool>(`/hosts/tool`, { type: 'supervisord', operate: 'status' });
|
|
};
|
|
|
|
export const OperateSupervisor = (operate: string) => {
|
|
return http.post<any>(`/hosts/tool/operate`, { type: 'supervisord', operate: operate });
|
|
};
|
|
|
|
export const OperateSupervisorConfig = (req: HostTool.SupersivorConfig) => {
|
|
return http.post<HostTool.SupersivorConfigRes>(`/hosts/tool/config`, req);
|
|
};
|
|
|
|
export const GetSupervisorLog = () => {
|
|
return http.post<any>(`/hosts/tool/log`, { type: 'supervisord' });
|
|
};
|
|
|
|
export const InitSupervisor = (req: HostTool.SupersivorInit) => {
|
|
return http.post<any>(`/hosts/tool/init`, req);
|
|
};
|
|
|
|
export const CreateSupervisorProcess = (req: HostTool.SupersivorProcess) => {
|
|
return http.post<any>(`/hosts/tool/supervisor/process`, req);
|
|
};
|
|
|
|
export const OperateSupervisorProcess = (req: HostTool.ProcessReq) => {
|
|
return http.post<any>(`/hosts/tool/supervisor/process`, req, TimeoutEnum.T_60S);
|
|
};
|
|
|
|
export const LoadProcessStatus = () => {
|
|
return http.post<Array<HostTool.ProcessStatus>>(`/hosts/tool/supervisor/process/load`, {}, TimeoutEnum.T_40S);
|
|
};
|
|
|
|
export const GetSupervisorProcess = () => {
|
|
return http.get<HostTool.SupersivorProcess[]>(`/hosts/tool/supervisor/process`);
|
|
};
|
|
|
|
export const OperateSupervisorProcessFile = (req: HostTool.ProcessFileReq) => {
|
|
return http.post<any>(`/hosts/tool/supervisor/process/file`, req, TimeoutEnum.T_60S);
|
|
};
|