mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2025-11-22 00:38:34 +08:00
39 lines
1.4 KiB
Go
39 lines
1.4 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 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);
|
|
};
|