scout_realtime 1.0.3.pre → 1.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/CHANGELOG.md +2 -1
- data/README.md +3 -3
- data/lib/scout_realtime/version.rb +1 -1
- data/scout_realtime.gemspec +1 -1
- metadata +7 -6
    
        data/CHANGELOG.md
    CHANGED
    
    
    
        data/README.md
    CHANGED
    
    | @@ -22,12 +22,12 @@ When you're done, you can stop the daemon with: `scout_realtime stop` | |
| 22 22 | 
             
            Scout realtime is a better `top` command: it gives you disk, memory, network, CPU, and process metrics. And it gives you smooth-flowing charts for everything. **Troubleshooting is so much easier when you can see a few minutes worth of realtime data** instead of watching individual numbers flash on your terminal window.   
         | 
| 23 23 |  | 
| 24 24 |  | 
| 25 | 
            -
            ## Questions &  | 
| 25 | 
            +
            ## Questions & Troubleshooting
         | 
| 26 26 |  | 
| 27 | 
            -
            * **Something isn't working. Where's the log?** By default, the  | 
| 27 | 
            +
            * **Something isn't working. Where's the log?** By default, the log is written to `~/scout_realtime.log`
         | 
| 28 28 | 
             
            * **Does my server need to have a public IP or domain name?** Yes, you need a public IP or domain name to view Scout Realtime in your browser.
         | 
| 29 29 | 
             
            * **Installing the gem didn't work.** You need Ruby 1.8.7+ on your server to run Scout Realtime. Try `which ruby` (to confirm you have Ruby), `ruby -v` (to show Ruby's version), and `which gem` to confirm you have Ruby gems (Ruby's package manager) available.
         | 
| 30 | 
            -
            * **Can multiple people view the realtime stats?** Yes. You'll probably want to open a port in your firewall instead of relying  | 
| 30 | 
            +
            * **Can multiple people view the realtime stats?** Yes. You'll probably want to open a port in your firewall instead of relying on the SSH tunnel for access: `sudo iptables -A INPUT -p tcp --dport 5555 -j ACCEPT`
         | 
| 31 31 | 
             
            * **The SSH tunnel is a pain. Is there a way to set up persistent access?** Yes -- open a port in your firewall using the iptables command above.
         | 
| 32 32 | 
             
              * **Is that safe?** It's as safe or safer than any any other service you have listening for HTTP traffic. The realtime web server only serves two endpoints, and there's nothing available at either of those endpoints that can be used in an attack.
         | 
| 33 33 | 
             
            * **5555 is a strange number. Can I run it on a different port?** Yes. `scout_realtime --help` for options.
         | 
    
        data/scout_realtime.gemspec
    CHANGED
    
    
    
        metadata
    CHANGED
    
    | @@ -1,8 +1,8 @@ | |
| 1 1 | 
             
            --- !ruby/object:Gem::Specification
         | 
| 2 2 | 
             
            name: scout_realtime
         | 
| 3 3 | 
             
            version: !ruby/object:Gem::Version
         | 
| 4 | 
            -
              version: 1.0.3 | 
| 5 | 
            -
              prerelease:  | 
| 4 | 
            +
              version: 1.0.3
         | 
| 5 | 
            +
              prerelease: 
         | 
| 6 6 | 
             
            platform: ruby
         | 
| 7 7 | 
             
            authors:
         | 
| 8 8 | 
             
            - Andre Lewis
         | 
| @@ -116,7 +116,7 @@ dependencies: | |
| 116 116 | 
             
                requirements:
         | 
| 117 117 | 
             
                - - ~>
         | 
| 118 118 | 
             
                  - !ruby/object:Gem::Version
         | 
| 119 | 
            -
                    version: 1.2. | 
| 119 | 
            +
                    version: 1.2.3
         | 
| 120 120 | 
             
              type: :runtime
         | 
| 121 121 | 
             
              prerelease: false
         | 
| 122 122 | 
             
              version_requirements: !ruby/object:Gem::Requirement
         | 
| @@ -124,7 +124,7 @@ dependencies: | |
| 124 124 | 
             
                requirements:
         | 
| 125 125 | 
             
                - - ~>
         | 
| 126 126 | 
             
                  - !ruby/object:Gem::Version
         | 
| 127 | 
            -
                    version: 1.2. | 
| 127 | 
            +
                    version: 1.2.3
         | 
| 128 128 | 
             
            description: Realtime server metrics in your browser.
         | 
| 129 129 | 
             
            email:
         | 
| 130 130 | 
             
            - support@scoutapp.com
         | 
| @@ -711,9 +711,9 @@ required_ruby_version: !ruby/object:Gem::Requirement | |
| 711 711 | 
             
            required_rubygems_version: !ruby/object:Gem::Requirement
         | 
| 712 712 | 
             
              none: false
         | 
| 713 713 | 
             
              requirements:
         | 
| 714 | 
            -
              - - ! ' | 
| 714 | 
            +
              - - ! '>='
         | 
| 715 715 | 
             
                - !ruby/object:Gem::Version
         | 
| 716 | 
            -
                  version:  | 
| 716 | 
            +
                  version: '0'
         | 
| 717 717 | 
             
            requirements: []
         | 
| 718 718 | 
             
            rubyforge_project: 
         | 
| 719 719 | 
             
            rubygems_version: 1.8.23
         | 
| @@ -730,3 +730,4 @@ test_files: | |
| 730 730 | 
             
            - test/models/processes_test.rb
         | 
| 731 731 | 
             
            - test/runner_test.rb
         | 
| 732 732 | 
             
            - test/test_helper.rb
         | 
| 733 | 
            +
            has_rdoc: 
         |