Group command should really group the command outputs
Reported by Deleted User | October 6th, 2010 @ 04:26 PM | in Rundeck 1.0
When there is a large volume of output with interleaved output,
the group commands doesn't help clarify what's going on. What I
would expect to see the command for a node grouped together as if
it were a single command being run.
The way it's currently presented, should be described as "real-time" and highlight the time the output was present, like a timeline.
Comments and changes to this ticket
-
Greg Schueler October 7th, 2010 @ 10:09 AM
Group/browse mode was designed for original "defined commands", and not so much for interleaved script output from multiple nodes. It needs to be redone to support this, especially to demux interleaved output.
Current browse mode could just be called "annotated timeline" or something.
-
Deleted User November 2nd, 2010 @ 03:32 PM
- Tag changed from enhancement, ux to customer request, enhancement, ux
-
Greg Schueler November 12th, 2010 @ 11:29 AM
- State changed from new to needs_verification
- Assigned user set to Greg Schueler
have an initial working Node view mode here: https://github.com/gschueler/rundeck/tree/issue28-nodeview
I changed "Browse" button to be "Annotated", and added "Node Output" (maybe needs different name).
the Node output mode collates the output by Node, and only shows the number of lines output by each node. You can click a certain node to see all the output for that node.
try to run dispatch in parallel for multiple nodes, using some script to produce output text.
perl script:
#!/usr/bin/perl for(1..20){sleep int(rand(1));print "this is a line of data\n"x(int(rand(10)));}
-
Deleted User November 19th, 2010 @ 11:31 AM
- State changed from needs_verification to resolved
- Milestone order changed from 4 to 0
(from [08b74f689899ed3eb82954c0d0970b21ef91bd9a]) Add initial node mode JS [#28 state:resolved] https://github.com/dtolabs/rundeck/commit/08b74f689899ed3eb82954c0d...
Please Sign in or create a free account to add a new ticket.
With your very own profile, you can contribute to projects, track your activity, watch tickets, receive and update tickets through your email and much more.
Create your profile
Help contribute to this project by taking a few moments to create your personal profile. Create your profile ยป
(DEPRECATED) Please use github issues for issue tracking at http://github.com/dtolabs/rundeck/issues
People watching this ticket
Referenced by
- 28 Group command should really group the command outputs (from [08b74f689899ed3eb82954c0d0970b21ef91bd9a]) Add ini...