No commit activity in last 3 years
No release in over 3 years
enables to watch logs on multiple deploying hosts concurrently with colored hostnames
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

>= 0
>= 0
~> 2.11
>= 0

Runtime

 Project Readme

Capistrano Colorized Stream

testing ruby: 1.9.3; Capistrano: > 2.0

About capistrano-colorized-stream

capistrano-colorized-stream adds a feature to append colorized hostnames at the head of each line for the capistrano's stream method.

With this gem, it enables you to watch logs on multiple deploying hosts concurrently with colored hostnames like foreman, for example.

USAGE

For example, to stream /var/log/syslog files located on multiple hosts, use the extended stream method at config/deploy.rb as:

require 'capistrano/colorized_stream'

server host1, :web
server host2, :web

task :syslog, :roles => :web do
  stream "tail -f /var/log/syslog"
end

Then, execute the defined capistrano task

$ bundle exec cap syslog

Below is an example of results.

capistrano-colorized-stream.png

License

MIT License

Acknowledgement

Special thanks to @niku4i.