|
|
|
@@ -10,13 +10,6 @@ import LogList from '../components/LogList'; |
|
|
|
import { experimentStatusInfo } from '../status'; |
|
|
|
import styles from './props.less'; |
|
|
|
|
|
|
|
export type ExperimentLog = { |
|
|
|
log_type: 'normal' | 'resource'; // 日志类型 |
|
|
|
pod_name?: string; // 分布式名称 |
|
|
|
log_content?: string; // 日志内容 |
|
|
|
start_time?: string; // 日志开始时间 |
|
|
|
}; |
|
|
|
|
|
|
|
type ExperimentDrawerProps = { |
|
|
|
open: boolean; |
|
|
|
onClose: () => void; |
|
|
|
@@ -25,8 +18,8 @@ type ExperimentDrawerProps = { |
|
|
|
instanceNamespace?: string; // 实验实例 namespace |
|
|
|
instanceNodeData: PipelineNodeModelSerialize; // 节点数据,在定时刷新实验实例状态中不会变化 |
|
|
|
workflowId?: string; // 实验实例工作流 id |
|
|
|
instanceNodeStatus?: ExperimentStatus; // 在定时刷新实验实例状态中,变化一两次 |
|
|
|
instanceNodeStartTime?: string; // 在定时刷新实验实例状态中,变化一两次 |
|
|
|
instanceNodeStatus?: ExperimentStatus; // 实例节点状态 |
|
|
|
instanceNodeStartTime?: string; // 开始时间 |
|
|
|
instanceNodeEndTime?: string; // 在定时刷新实验实例状态中,会经常变化 |
|
|
|
}; |
|
|
|
|
|
|
|
|