redis-stat
(UNMAINTAINED) A real-time Redis monitoring tool
File Explorer
- redis-stat
- bootstrap-responsive.min.css
- bootstrap.min.css
- glyphicons-halflings-white.png
- glyphicons-halflings.png
- bootstrap.min.js
- site.css
- jqplot.canvasAxisLabelRenderer.min.js
- jqplot.canvasAxisTickRenderer.min.js
- jqplot.canvasTextRenderer.min.js
- jquery.jqplot.min.css
- jquery.jqplot.min.js
- site.js
- select2-bootstrap.css
- select2.css
- select2.min.js
- favicon.ico
- favicon.png
- jquery-1.8.2.min.js
- index.erb
- constants.rb
- elasticsearch.rb
- option.rb
- server.rb
- version.rb
- redis-stat.rb
- redis-stat-0.1.0.png
- redis-stat-0.2.4.png
- redis-stat-0.3.0.png
- redis-stat-web.png
- bin_helper.rb
- test_redis-stat.rb
- .gitignore
- Gemfile
- LICENSE
- Rakefile
- README.md
- redis-stat.gemspec
# Use via CDN
jsDelivrjsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.
Command Glossary
Commands referenced in this DOCs, explained below.
bundle
View Details ▼
bundle
Dependency manager for the Ruby programming language.
bundle install
Install all gems defined in the `Gemfile` expected in the working directory:
bundle exec {{command}} {{arguments}}
Execute a command in the context of the current bundle:
bundle update
Update all gems by the rules defined in the `Gemfile` and regenerate `Gemfile.lock`:
gem
View Details ▼
gem
A package manager for the Ruby programming language.
gem search {{regex}} {{[-a|--all]}}
Search for remote gem(s) and show all available versions:
gem install {{gem_name}}
Install the latest version of a gem:
gem install {{gem_name}} {{[-v|--version]}} {{1.0.0}}
Install a specific version of a gem:
git checkout
View Details ▼
git checkout
Checkout a branch or paths to the working tree.
git checkout -b {{branch_name}}
Create and switch to a new branch:
git checkout -b {{branch_name}} {{reference}}
Create and switch to a new branch based on a specific reference (branch, remote/branch, tag are examples of valid references):
git checkout {{branch_name}}
Switch to an existing local branch:
git commit
View Details ▼
git commit
Commit files to the repository.
git commit
Open an editor to write a message and commit staged files to the repository:
git commit {{[-m|--message]}} "{{message}}"
Commit staged files to the repository with the specified message:
git commit {{[-F|--file]}} {{path/to/commit_message_file}}
Commit staged files with a message read from a file:
git push
View Details ▼
git push
Push commits to a remote repository.
git push
Send local changes in the current branch to its default remote counterpart:
git push {{remote_name}} {{local_branch}}
Send changes from a specific local branch to its remote counterpart:
git push {{[-u|--set-upstream]}} {{remote_name}} {{local_branch}}
Send changes from a specific local branch to its remote counterpart, and set the remote one as the default push/pull target of the local one:
killall
View Details ▼
killall
Send kill signal to all instances of a process by name (must be exact name).
All signals except SIGKILL and SIGSTOP can be intercepted by the process, allowing a clean exit.
killall {{process_name}}
Terminate a process using the default SIGTERM (terminate) signal:
killall {{[-l|--list]}}
List available signal names (to be used without the `SIG` prefix):
killall {{[-i|--interactive]}} {{process_name}}
Interactively ask for confirmation before termination:
