Redis - OpenTelemetry Collector
Redis is an in-memory data structure that implements a distributed, in-memory key-value database with durability options.
The Sumo Logic App for Redis helps you monitor the Redis database cluster. The preconfigured dashboards provide detailed analysis based on logs. The panels provide details such as RDBMemory Usage, events, RDB, and AOF events.
Redis logs are sent to Sumo Logic through OpenTelemetry filelog receiver.
Log Types
This app supports logs for Redis in Cluster mode or Standalone mode. The Redis logs are generated in files as configured in the cluster node configuration files in /etc/redis/redis.conf
. For more details on Redis logs, click here.
Creating Fields in Sumo Logic for Redis
The following are Fields that will be created as part of the Redis App install if not already present.
db.cluster.name
. User configured. Enter a name to identify this Redis cluster. This cluster name will be shown in the Sumo Logic dashboards.db.system
. Has fixed value of redis.deployment.environment
. User configured. This is the deployment environment where the Redis cluster resides. For example: dev, prod or qa.sumo.datasource
. Has fixed value of redis.
Prerequisites
This section provides instructions for configuring log collection for Redis running on a non-Kubernetes environment. By default, Redis logs are stored in a log file.
Follow the instructions to set up log collection:
- To configure the Redis log file, locate your local
redis.conf
configuration file in the database directory. By default, Redis logs are stored in/var/log/redis/redis-server.log
. - After determining the location of conf file, open your
redis.conf
configuration file in a text editor to modify its logging parameters as such:- Specify the server verbosity level. The value
loglevel
in conf file can be set to one of the following, in ascending order of severity:debug
,verbose
,notice
,warning
. - Specify the log file name. Also the empty string can be used to force Redis to log on the standard output. If you use the standard output for logging but daemonize, logs will be sent to
/dev/null
logfile.
- Specify the server verbosity level. The value
- Save the
redis.conf
file and restart the Redis server using the command:sudo service redis-server restart
.
Once the logs are configured to write to a local file, follow the steps below to configure the collection in Sumo Logic.
Configuring Collection and Installing the Redis App
As part of data collection setup and app installation, you can select the App from App Catalog and click on Install App. Follow the steps below.
Step 1: Set up Collector
If you want to use an existing OpenTelemetry Collector, you can skip this step by selecting the Use an existing Collector option.
To create a new Collector:
- Select the Add a new Collector option.
- Select the platform where you want to install the Sumo Logic OpenTelemetry Collector.
This will generate a command that you can execute in the machine environment you need to monitor. Once executed, it will install the Sumo Logic OpenTelemetry Collector.
Step 2: Configure integration
OpenTelemetry works with a configuration yaml file with all the details concerning the data that needs to be collected. For example, it specifies the location of a log file that is read and sent to the Sumo Logic platform.
In this step, you will configure the yaml file required for Redis Collection.
The log file path configured to capture redis logs must be given here. The files are typically located in /var/log/redis/redis-server.log
. If you are using a customized path, check the redis.conf
file for this information.
You can add any custom fields which you want to tag along with the data ingested in Sumo. Click on the Download YAML File button to get the yaml file.
Step 3: Send logs to Sumo Logic
Once you have downloaded the yaml file as described in the previous step, follow the below steps based on your platform.
- Linux
- macOS
- Copy the yaml at
/etc/otelcol-sumo/conf.d/
folder in the Redis instance that needs to be monitored. - Restart the otelcol-sumo process using:
sudo systemctl restart otelcol-sumo
- Copy the yaml at
/etc/otelcol-sumo/conf.d/
folder in the Redis instance that needs to be monitored. - Restart the otelcol-sumo process using:
otelcol-sumo --config /etc/otelcol-sumo/sumologic.yaml --conf "glob:/etc/otelcol-sumo/conf.d/*.yaml"
After successfully executing the above command, Sumo Logic will start receiving data from your host machine.
Click Next. This will install the app (dashboards and monitors) to your Sumo Logic Org.
Dashboard panels will start to fill automatically. It's important to note that each panel fills with data matching the time range query and received since the panel was created. Results won't immediately be available, but within 20 minutes, you'll see full graphs and maps.
Sample Log Message
Here's a sample log message in a non-Kubernetes environment.
5275:S 17 Mar 2021 19:13:38.138 * MASTER <-> REPLICA sync: Finished with success
Sample Query
This sample query is from the Redis - Logs dashboard > Logs panel.
db.cluster.name=* sumo.datasource="redis"
| json auto maxdepth 1 nodrop
| if (isEmpty(log), _raw, log) as message
| count by message
| limit 100
| fields message
Viewing Redis Dashboards
Logs
The Redis - Logs dashboard provides a detailed analysis based on logs. The panels provide details such as RDBMemory Usage, events, RDB, and AOF events.
Use this dashboard to:
- Review errors and warnings generated by the server.
- Review the RDBMemory Usage, events, RDB, and AOF events.