1515 < i class ="icon icon-download-alt "> </ i >
1616 Outputs for Stream »@stream.getTitle«
1717 </ h1 >
18- Graylog2 nodes can forward messages of this stream via outputs. Launch or terminate as many outputs as you want here.
19- You can also reuse outputs for other streams. A global view of all configured outputs is < a href ="@routes.OutputsController.index() "> here</ a > .
18+ Graylog2 nodes can forward messages of streams via outputs. Launch or terminate as many outputs as you want here.
19+ You can also reuse outputs that are already running for other streams.
20+
21+ A global view of all configured outputs is available < a href ="@routes.OutputsController.index() "> here</ a > .
22+
23+ < br />
24+ < i > Removing</ i > an output removes it from this stream but is still in the list of available outputs
25+ and < i > terminating</ i > will stop it for all streams and remove it from all configurations and lists
26+ completely.
2027 </ div >
2128
2229 @if(isPermitted(OUTPUTS_CREATE)) {
2330 < div class ="output-new ">
2431 < select id ="input-type ">
25- < option selected disabled > -- Select new output type -- </ option >
32+ < option selected disabled > Select type of new output </ option >
2633 @for((inputType,info) < - availableOutputs.toSeq.sortBy(_._2.name)) {
2734 < option value ="@inputType "> @info.name</ option >
2835 }
2936 </ select >
3037
31- < button id ="configure-input " class ="btn btn-success "> Launch new input </ button >
38+ < button id ="configure-input " class ="btn btn-success "> Launch new Output </ button >
3239 </ div >
3340
3441 @views.html.system.outputs.partials.output_creation_forms.render(availableOutputs, routes.StreamOutputsController.create(stream.getId))
3542 }
36- @if(isPermitted(STREAM_OUTPUTS_CREATE)) {
43+ @if(isPermitted(STREAM_OUTPUTS_CREATE) && otherOutputs.size > 0 ) {
3744 < div class ="output-add ">
3845 @helper.form(routes.StreamOutputsController.add(stream.getId)) {
3946 < select name ="outputId ">
4047 @if(otherOutputs.size > 0) {
41- < option selected disabled > -- Select existing output -- </ option >
48+ < option selected disabled > Select existing output</ option >
4249 @for(output < - otherOutputs.toSeq.sortBy(_.getTitle)) {
4350 < option value ="@output.getId "> @output.getTitle</ option >
4451 }
4552 } else {
46- < option disabled > -- No outputs available -- </ option >
53+ < option disabled > No outputs available</ option >
4754 }
4855 </ select >
4956
@@ -60,7 +67,7 @@ <h2><i class="icon icon-cogs"></i> Configured outputs</h2>
6067 @views.html.system.outputs.partials.output_summary.render(output, stream)
6168 }
6269 } else {
63- < div class ="alert alert-info "> There are no outputs for this stream. All messages will go to the default output only</ div >
70+ < div class ="alert alert-info "> There are no outputs for this stream. All messages will go to the default output only. </ div >
6471 }
6572 </ div >
6673}
0 commit comments