scout_realtime 0.5.2 → 0.5.3
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGELOG.md +4 -0
- data/bin/scout_realtime +8 -2
- data/lib/scout_realtime/version.rb +1 -1
- metadata +1 -1
data/CHANGELOG.md
CHANGED
data/bin/scout_realtime
CHANGED
@@ -61,8 +61,14 @@ log_path = opts[:log_path]
|
|
61
61
|
pid_path = opts[:pid_path]
|
62
62
|
|
63
63
|
startup_message=<<EOS
|
64
|
-
|
65
|
-
|
64
|
+
To view in your browser, do ONE of the following:
|
65
|
+
|
66
|
+
A) create an SSH tunnel: ssh -NL #{opts[:port]}:localhost:#{opts[:port]} user@ip_or_hostname (run that command on your own computer, not the server)
|
67
|
+
then point your browser to: http://localhost:#{opts[:port]}
|
68
|
+
--- OR ---
|
69
|
+
B) open a port in your firewall: sudo iptables -A INPUT -p tcp --dport #{opts[:port]} -j ACCEPT (run that command on your server)
|
70
|
+
then point your browser to: http://your-ip-or-hostname:#{opts[:port]}
|
71
|
+
|
66
72
|
* FYI, the log file is: #{log_path}
|
67
73
|
EOS
|
68
74
|
|