Skip to content

Commit 6ec44a5

Browse files
Copilotpatrickmannxd4rker
authored
UI improvements for stream pipeline routing sections (#24914)
Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: patrickmann <patrick.mann@graylog.com> Co-authored-by: Ismail Belkacim <xd4rker@users.noreply.github.com>
1 parent 62e5393 commit 6ec44a5

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

graylog2-server/src/main/java/org/graylog2/rest/resources/streams/StreamPipelineRulesResource.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,8 +73,8 @@ public class StreamPipelineRulesResource extends RestResource {
7373
EntityAttribute.builder().id("rule_id").title("Pipeline Rule ID").searchable(false).hidden(true).build(),
7474
EntityAttribute.builder().id(ATTRIBUTE_PIPELINE_RULE).title("Pipeline Rule").searchable(false).build(),
7575
EntityAttribute.builder().id("pipeline_id").title("Pipeline ID").searchable(false).hidden(true).build(),
76-
EntityAttribute.builder().id(ATTRIBUTE_PIPELINE).title("Pipeline").searchable(false).build(),
77-
EntityAttribute.builder().id(ATTRIBUTE_CONNECTED_STREAM).title("Connected Streams").searchable(false).build()
76+
EntityAttribute.builder().id(ATTRIBUTE_PIPELINE).title("Source pipeline").searchable(false).build(),
77+
EntityAttribute.builder().id(ATTRIBUTE_CONNECTED_STREAM).title("Source streams").searchable(false).build()
7878
);
7979
private static final EntityDefaults settings = EntityDefaults.builder()
8080
.sort(Sorting.create(DEFAULT_SORT_FIELD, Sorting.Direction.valueOf(DEFAULT_SORT_DIRECTION.toUpperCase(Locale.ROOT)))).build();

graylog2-web-interface/src/components/streams/StreamDetails/StreamDataRoutingIntake/StreamConnectedPipelines.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ const ListCol = styled(Col)(
4848
);
4949

5050
const StreamConnectedPipelines = ({ stream }: Props) => (
51-
<Section title="Connected Pipelines" collapsible defaultClosed>
51+
<Section title="Pipelines" collapsible>
5252
<Row>
5353
<ListCol md={12}>
5454
<PaginatedEntityTable<StreamConnectedPipeline>

graylog2-web-interface/src/components/streams/StreamDetails/StreamDataRoutingIntake/StreamRules.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,6 @@ const StreamRules = ({ stream }: Props) => {
5151
<Section
5252
title="Stream rules"
5353
collapsible
54-
defaultClosed
5554
actions={
5655
<IfPermitted permissions={`streams:edit:${stream.id}`}>
5756
<CreateStreamRuleButton

0 commit comments

Comments
 (0)