Skip to content

Commit ed63cae

Browse files
authored
Update README and CHANGELOG (#191)
1 parent 74b79e0 commit ed63cae

File tree

2 files changed

+30
-21
lines changed

2 files changed

+30
-21
lines changed

CHANGELOG.md

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,21 @@
11
# Change Log
22

3-
## 1.4.0 (IN PROGRESS)
3+
## 1.4.0 (2021-05-08)
44

55
### Features / Enhancements
66

7-
- Update Grafana dependencies to 7.5.4
7+
- Update Grafana SDK 0.88 and other backend dependencies (#170)
8+
- Add $time field for Streams XRANGE (#175)
9+
- Add RG.PYDUMPREQS command and integration test fix (#183)
10+
- Add Integration tests to CI (#184)
11+
- Upgrade Grafana dependencies to 7.5.4 (#185)
12+
- Update Dashboard to 7.5.4 and add data source variable (#186)
13+
- Update backend dependencies and linting issues (#187)
14+
- Update Documentation (#188)
15+
16+
### Bug fixes
17+
18+
- Tls client certificates not working (#177)
819

920
## 1.3.1 (2021-02-04)
1021

README.md

Lines changed: 17 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -9,69 +9,67 @@
99
[![Go Report Card](https://goreportcard.com/badge/github.com/RedisGrafana/grafana-redis-datasource)](https://goreportcard.com/report/github.com/RedisGrafana/grafana-redis-datasource)
1010
![CI](https://github.com/RedisGrafana/grafana-redis-datasource/workflows/CI/badge.svg)
1111
[![codecov](https://codecov.io/gh/RedisGrafana/grafana-redis-datasource/branch/master/graph/badge.svg?token=YX7995RPCF)](https://codecov.io/gh/RedisGrafana/grafana-redis-datasource)
12+
[![Language grade: JavaScript](https://img.shields.io/lgtm/grade/javascript/g/RedisGrafana/grafana-redis-datasource.svg?logo=lgtm&logoWidth=18)](https://lgtm.com/projects/g/RedisGrafana/grafana-redis-datasource/context:javascript)
1213

1314
## Summary
1415

1516
- [**Introduction**](#introduction)
1617
- [**Getting Started**](#getting-started)
17-
- [**Supported commands**](#supported-commands)
18-
- [**Learn more**](#learn-more)
18+
- [**Documentation**](#documentation)
19+
- [**Development**](#development)
1920
- [**Feedback**](#feedback)
2021
- [**Contributing**](#contributing)
2122
- [**License**](#license)
2223

2324
## Introduction
2425

25-
The Redis Data Source for Grafana is a plug-in that allows users to connect to any Redis database On-Premises or in the Cloud. It provides an out-of-the-box predefined dashboards, but also lets you build customized dashboards to easily monitor Redis and application data.
26+
The Redis Data Source for Grafana is a plug-in that allows users to connect to any Redis database On-Premises or in the Cloud. It provides out-of-the-box predefined dashboards and lets you build customized dashboards to monitor Redis and application data.
2627

2728
### Requirements
2829

2930
Only **Grafana 7.1+** with a new Backend plug-in platform supports Redis plug-ins.
3031

3132
### Redis Application plug-in
3233

33-
You can add as many data sources as you want to support multiple Redis databases. [Redis Application plug-in](https://grafana.com/grafana/plugins/redis-app) helps to manage multiple Redis Data Sources and provides Custom panels.
34+
You can add as many data sources as you want to support multiple Redis databases. [Redis Application plug-in](https://grafana.com/grafana/plugins/redis-app) helps manage various Redis Data Sources and provides Custom panels.
3435

3536
## Getting Started
3637

37-
Use the `grafana-cli` tool to install from the commandline:
38+
Use the `grafana-cli` tool to install from the command line:
3839

3940
```bash
4041
grafana-cli plugins install redis-datasource
4142
```
4243

43-
For Docker instructions and installation without Internet access follow [Quickstart](https://redisgrafana.github.io/quickstart/) page.
44+
For Docker instructions and installation without Internet access, follow the [Quickstart](https://redisgrafana.github.io/quickstart/) page.
4445

4546
### Configuration
4647

47-
Data Source allows to connect to Redis using TCP port, Unix socket, Cluster, Sentinel and supports SSL/TLS authentication. For detailed information take a look at [Configuration](https://redisgrafana.github.io/redis-datasource/configuration/) page.
48+
Data Source allows to connect to Redis using TCP port, Unix socket, Cluster, Sentinel and supports SSL/TLS authentication. For detailed information, take a look at the [Configuration](https://redisgrafana.github.io/redis-datasource/configuration/) page.
4849

4950
![Datasource](https://raw.githubusercontent.com/RedisGrafana/grafana-redis-datasource/master/src/img/datasource.png)
5051

51-
### Development
52+
## Documentation
5253

53-
[Developing Redis Data Source](https://redisgrafana.github.io/development/redis-datasource/) page provides instructions on how to build data source.
54+
Please take a look at the [Documentation](https://redisgrafana.github.io/redis-datasource/overview/) to learn more about plug-in and features.
5455

55-
Interested in the latest features and updates? Start nightly built [Docker image for Redis Application plug-in](https://redisgrafana.github.io/development/images/), which includes Redis Data Source.
56-
57-
## Supported commands
56+
### Supported commands
5857

5958
List of all supported commands and how to use them with examples you can find in the [Commands](https://redisgrafana.github.io/redis-datasource/commands/) section.
6059

6160
![Query](https://raw.githubusercontent.com/RedisGrafana/grafana-redis-datasource/master/src/img/query.png)
6261

63-
## Learn more
62+
## Development
63+
64+
[Developing Redis Data Source](https://redisgrafana.github.io/development/redis-datasource/) page provides instructions on building the data source.
6465

65-
- [Introducing the Redis Data Source Plug-in for Grafana](https://redislabs.com/blog/introducing-the-redis-data-source-plug-in-for-grafana/)
66-
- [How to Use the New Redis Data Source for Grafana Plug-in](https://redislabs.com/blog/how-to-use-the-new-redis-data-source-for-grafana-plug-in/)
67-
- [3 Real-Life Apps Built with Redis Data Source for Grafana](https://redislabs.com/blog/3-real-life-apps-built-with-redis-data-source-for-grafana/)
68-
- [Real-time observability with Redis and Grafana](https://grafana.com/go/observabilitycon/real-time-observability-with-redis-and-grafana/)
66+
Are you interested in the latest features and updates? Start nightly built [Docker image for Redis Application plug-in](https://redisgrafana.github.io/development/images/), including Redis Data Source.
6967

7068
## Feedback
7169

72-
We love to hear from users, developers and the whole community interested by this plugin. These are various ways to get in touch with us:
70+
We love to hear from users, developers, and the whole community interested in this plugin. These are various ways to get in touch with us:
7371

74-
- Ask a question, request a new feature and file a bug with [GitHub issues](https://github.com/RedisGrafana/grafana-redis-datasource/issues/new/choose).
72+
- Ask a question, request a new feature, and file a bug with [GitHub issues](https://github.com/RedisGrafana/grafana-redis-datasource/issues/new/choose).
7573
- Star the repository to show your support.
7674

7775
## Contributing

0 commit comments

Comments
 (0)