Implementation:Infiniflow Ragflow Admin TaskExecutorDetail Component
Appearance
| Knowledge Sources | |
|---|---|
| Domains | Frontend, Admin |
| Last Updated | 2026-02-12 06:00 GMT |
Overview
Chart visualization component that displays task executor performance metrics and status history.
Description
The admin/task-executor-detail.tsx component renders performance charts (CPU, memory, task throughput) for a specific task executor instance. It uses chart libraries to visualize time-series data and provides a summary of executor health and workload distribution.
Usage
Embedded within the ServiceStatus page or accessed as a drill-down view from the task executor list.
Code Reference
Source Location
- Repository: Infiniflow_Ragflow
- File: web/src/pages/admin/task-executor-detail.tsx
- Lines: 1-173
Signature
export default function TaskExecutorDetail(): JSX.Element;
Import
import TaskExecutorDetail from '@/pages/admin/task-executor-detail';
I/O Contract
Inputs
| Name | Type | Required | Description |
|---|---|---|---|
| executorId | string | Yes | Task executor identifier for data fetching |
Outputs
| Name | Type | Description |
|---|---|---|
| Rendered component | JSX.Element | Chart visualization of executor metrics |
Usage Examples
<TaskExecutorDetail executorId="executor-001" />
Related Pages
Page Connections
Double-click a node to navigate. Hold to expand connections.
Principle
Implementation
Heuristic
Environment