search
HomeSystem TutorialLINUXAnalyzing RedisLive: Redis's visual graph monitoring platform

Analyzing RedisLive: Redis's visual graph monitoring platform

Jan 01, 2024 pm 04:02 PM
linuxlinux tutorialRed Hatlinux systemlinux commandlinux certificationred hat linuxlinux video

As an open source Redis graphical monitoring tool, RedisLive provides monitoring of the memory usage of Redis instances, received client commands, number of received requests, and keys. The working principle of RedisLive is based on the INFO and MONITOR commands of Redis. The current running data of the Redis instance can be obtained by sending INFO and MONITOR commands to the Redis instance.

The graphical display interface provided by RedisLive is as shown below:

详解Redis 可视化图形监控界面 RedisLive

Install

RedisLive is implemented in Python and uses Tornado as its own web server. No additional compilation process is required to run RedisLive. After downloading the RedisLive code, you only need to install the dependent Python extension packages to run it directly.
You can download the latest RedisLive source code through Git:

git clone https//githup.com/kumarnitin/RedisLive.git

Go to the downloaded RedisLive directory and you can see that the Python extension packages that RedisLive depends on have been written in the requirements.txt file. The content of requirements.txt is as follows:

argparse==1.2.1
python-dateutil==1.5
redis
tornado==2.1.1

Friends who are familiar with Python must also feel very familiar with the requirements.txt file. Use the following command to install the expansion package inside (specify Douban source to install faster):

pip install -r requirements.txt -i http://pypi.douban.com/simple/–trusted-host pypi.douban.com
run

After installing the dependencies, you can run RedisLive. Enter the RedisLive/src directory and you can see the redis-live.conf.example file. This file is an example configuration file for RedisLive. The content is as follows:

详解Redis 可视化图形监控界面 RedisLive

  • RedisServers: List of monitored Redis instances, RedisLive supports monitoring multiple Redis instances at the same time
  • RedisStatsServer: Redis instance used to store monitoring data. This configuration is different from RedisServers. RedisLive does not monitor RedisStatsServer. RedisStatsServer is only used to store monitoring data.
  • DataStoreType: The storage solution for monitoring data, which can be configured as redis or sqlite
  • SqliteStatsStore: sqlite configuration for storing monitoring data

The redis-live.conf (need to remove the .example suffix) used by our instance is set as follows:

详解Redis 可视化图形监控界面 RedisLive

That is, the monitored Redis instance is 127.0.0.1:6379, and the sqlite function is used to store the monitoring data solution. The sqlite database path is
db/redislive.sqlite
After the configuration is complete, you can run RedisLive. The operation of RedisLive consists of two parts (in the RedisLive/src directory), redis-monitor.py is used to send INFO and MONITOR commands to the Redis instance and obtain their returns, redis-live.pyUsed to run the web server.

We first start the redis-monitor.py script and set the duration parameter to 120 seconds. The duration parameter specifies the running duration of the monitoring script. For example, if it is set to 120 seconds, that is, after 120 seconds, the monitoring script will automatically exit and print the shutting down... prompt on the terminal.

./redis-monitor.py --duration=120

Next start the web server:

./redis-live.py

Open the browser, enter http://localhost:8888/index.html in the address bar, and press Enter to see the monitoring data of the Redis instance.

详解Redis 可视化图形监控界面 RedisLive

It should be pointed out that since the redis-monitor.py script uses MONITOR commands and INFO commands to the Redis instance to obtain monitoring data, the MONITOR command has a greater impact on the performance of the Redis instance. , Therefore, for the deployment of redis-monitor.py in the production environment, you need to set a more appropriate duration parameter and use crontab to execute the script regularly.

Reference materials
  1. https://github.com/nkrode/RedisLive
  2. http://www.nkrode.com/article/real-time-dashboard-for-redis
  3. http://wxmimperio.tk/2016/02/25/Redis-Monitor-Tools/
  4. In-depth understanding of Redis, written by Jeremy Nelson, translated by Wang Jianan, Electronic Industry Press, April 2017
  5. http://redis.io/commands/monitor

The above is the detailed content of Analyzing RedisLive: Redis's visual graph monitoring platform. For more information, please follow other related articles on the PHP Chinese website!

Statement
This article is reproduced at:Linux就该这么学. If there is any infringement, please contact admin@php.cn delete
What are the differences in user account management between Linux and Windows?What are the differences in user account management between Linux and Windows?May 02, 2025 am 12:02 AM

The main difference between Linux and Windows in user account management is the permission model and management tools. Linux uses Unix-based permissions models and command-line tools (such as useradd, usermod, userdel), while Windows uses its own security model and graphical user interface (GUI) management tools.

How does the command line environment of Linux make it more/less secure than Windows?How does the command line environment of Linux make it more/less secure than Windows?May 01, 2025 am 12:03 AM

Linux'scommandlinecanbemoresecurethanWindowsifmanagedcorrectly,butrequiresmoreuserknowledge.1)Linux'sopen-sourcenatureallowsforquicksecurityupdates.2)Misconfigurationcanleadtovulnerabilities.Windows'commandlineismorecontrolledbutlesscustomizable,with

How to Make a USB Drive Mount Automatically in LinuxHow to Make a USB Drive Mount Automatically in LinuxApr 30, 2025 am 10:04 AM

This guide explains how to automatically mount a USB drive on boot in Linux, saving you time and effort. Step 1: Identify Your USB Drive Use the lsblk command to list all block devices. Your USB drive will likely be labeled /dev/sdb1, /dev/sdc1, etc

Best Cross-Platform Apps for Linux, Windows, and Mac in 2025Best Cross-Platform Apps for Linux, Windows, and Mac in 2025Apr 30, 2025 am 09:57 AM

Cross-platform applications have revolutionized software development, enabling seamless functionality across operating systems like Linux, Windows, and macOS. This eliminates the need to switch apps based on your device, offering consistent experien

Best Linux Tools for AI and Machine Learning in 2025Best Linux Tools for AI and Machine Learning in 2025Apr 30, 2025 am 09:44 AM

Artificial Intelligence (AI) is rapidly transforming numerous sectors, from healthcare and finance to creative fields like art and music. Linux, with its open-source nature, adaptability, and performance capabilities, has emerged as a premier platfo

5 Best Lightweight Linux Distros Without a GUI5 Best Lightweight Linux Distros Without a GUIApr 30, 2025 am 09:38 AM

Looking for a fast, minimal, and efficient Linux distribution without a graphical user interface (GUI)? Lightweight, GUI-less Linux distros are perfect for older hardware or specialized tasks like servers and embedded systems. They consume fewer res

How to Install Wine 10.0 in RedHat DistributionsHow to Install Wine 10.0 in RedHat DistributionsApr 30, 2025 am 09:32 AM

Wine 10.0 stable version release: Running Windows applications on Linux to a higher level Wine, this open source and free application, allows Linux users to run Windows software and games on Unix/Linux operating systems, ushering in the release of the 10.0 stable version! This version has been provided with source code and binary package downloads, and supports various distributions such as Linux, Windows and Mac. This edition embodies a year of hard work and over 8,600 improvements, bringing many exciting improvements. Key highlights include: Enhanced support for Bluetooth devices. Improve support for HID input devices. Optimized performance of 32-bit and 64-bit applications.

How to Install and Configure SQL Server on RHELHow to Install and Configure SQL Server on RHELApr 30, 2025 am 09:27 AM

This tutorial guides you through installing SQL Server 2022 on RHEL 8.x or 9.x, connecting via the sqlcmd command-line tool, database creation, and basic querying. Prerequisites Before beginning, ensure: A supported RHEL version (RHEL 8 or 9). Sudo

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

EditPlus Chinese cracked version

EditPlus Chinese cracked version

Small size, syntax highlighting, does not support code prompt function

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.