Bug
In the Pipeline detail page (PipelineView.tsx), the Processors table has isEditable={false} and isCreateable={false} hardcoded. Users can only delete processors — cannot view their configuration or edit them. To change a processor, you must delete and recreate it.
Where
App/FeatureSet/Dashboard/src/Pages/Logs/Settings/PipelineView.tsx line 207-208:
<ModelTable<LogPipelineProcessor>
...
isDeleteable={true}
isEditable={false}
isCreateable={false}
Also: there's no detail view page for a single processor — clicking a row does nothing.
Reproduction
- Create a LogPipeline
- Add a processor via "Add Processor" button
- Try to edit the processor — no edit button
- Try to view processor config — no way to see it
Expected
At minimum: ability to view processor configuration (JSON). Ideally: edit existing processors.
Workaround
View processor config via direct DB query:
SELECT configuration FROM "LogPipelineProcessor" WHERE name = '...' AND "deletedAt" IS NULL;
Environment
OneUptime v10.8.2 Community Edition.
Bug
In the Pipeline detail page (
PipelineView.tsx), the Processors table hasisEditable={false}andisCreateable={false}hardcoded. Users can only delete processors — cannot view their configuration or edit them. To change a processor, you must delete and recreate it.Where
App/FeatureSet/Dashboard/src/Pages/Logs/Settings/PipelineView.tsxline 207-208:Also: there's no detail view page for a single processor — clicking a row does nothing.
Reproduction
Expected
At minimum: ability to view processor configuration (JSON). Ideally: edit existing processors.
Workaround
View processor config via direct DB query:
Environment
OneUptime v10.8.2 Community Edition.