File tree Expand file tree Collapse file tree 3 files changed +3
-4
lines changed
graylog2-server/src/main/java/org/graylog2/rest/resources/streams
graylog2-web-interface/src/components/streams/StreamDetails/StreamDataRoutingIntake Expand file tree Collapse file tree 3 files changed +3
-4
lines changed Original file line number Diff line number Diff 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 ();
Original file line number Diff line number Diff line change @@ -48,7 +48,7 @@ const ListCol = styled(Col)(
4848) ;
4949
5050const StreamConnectedPipelines = ( { stream } : Props ) => (
51- < Section title = "Connected Pipelines" collapsible defaultClosed >
51+ < Section title = "Pipelines" collapsible >
5252 < Row >
5353 < ListCol md = { 12 } >
5454 < PaginatedEntityTable < StreamConnectedPipeline >
Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments