Skip to content

Commit e324ccc

Browse files
committed
Rebranding
1 parent 3c36108 commit e324ccc

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22

33
[![Grafana 9.5](https://img.shields.io/badge/Grafana-9.5-orange)](https://www.grafana.com)
44
[![Grafana 10.2](https://img.shields.io/badge/Grafana-10.2-orange)](https://www.grafana.com)
5-
[![Checkmk cloud data source](https://img.shields.io/badge/dynamic/json?color=blue&label=Checkmk%20for%20Cloud%20Edition&query=%24.version&url=https%3A%2F%2Fgrafana.com%2Fapi%2Fplugins%2Fcheckmk-cloud-datasource)](https://grafana.com/grafana/plugins/checkmk-cloud-datasource)
5+
[![Checkmk data source for Checkmk Cloud & MSP](https://img.shields.io/badge/dynamic/json?color=blue&label=Checkmk%20for%20Cloud%20Edition&query=%24.version&url=https%3A%2F%2Fgrafana.com%2Fapi%2Fplugins%2Fcheckmk-cloud-datasource)](https://grafana.com/grafana/plugins/checkmk-cloud-datasource)
66
[![Checkmk unsigned data source](https://img.shields.io/badge/dynamic/json?color=blue&label=Checkmk&query=tag_name&url=https%3A%2F%2Fapi.github.com%2Frepos%2Ftribe29%2Fgrafana-checkmk-datasource%2Freleases%2Flatest)](https://github.com/Checkmk/grafana-checkmk-datasource)
7-
[![CI](https://github.com/Checkmk/grafana-checkmk-datasource/actions/workflows/ci.yml/badge.svg)](https://github.com/Checkmk/grafana-checkmk-datasource/actions/workflows/ci.yml?query=event%3Aschedule)
7+
[![CI](https://github.com/Checkmk/grafana-checkmk-datasource/actions/workflows/ci.yml/badge.svg?branch=main&event=schedule)](https://github.com/Checkmk/grafana-checkmk-datasource/actions/workflows/ci.yml?query=event%3Aschedule)
88

99

1010
![Checkmk Grafana Data Source Plugin](https://github.com/checkmk/grafana-checkmk-datasource/raw/ebf24142922ccce5cc5649aa4809d1c19d55958f/grafana-checkmk-datasource.png)
@@ -17,7 +17,7 @@ This [data source][2] plugin for [Grafana][1] allows to address Checkmk as sourc
1717
To make use of the plugin, you need to take care the correct versions are installed. You need to match both, the Grafana and the Checkmk version:
1818

1919
- **Grafana 9.5.15 or higher** Current and previous major version of Grafana
20-
- **Checkmk Cloud Edition 2.2.0 or higher** for the signed plugin available from [Grafana][6]
20+
- **Checkmk Cloud or Checkmk MSP 2.2.0 or higher** for the signed plugin available from [Grafana][6]
2121
- **Checkmk 2.1.0 or higher** for the unsigned plugin available from [Github][8]
2222

2323
## Installing the plug-in

src/backend/rest.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -248,7 +248,7 @@ export default class RestApiBackend implements Backend {
248248
const allowedEditions = new Set(['cce', 'cme']);
249249
if (process.env.BUILD_EDITION === 'CLOUD' && !allowedEditions.has(checkmkEdition || '')) {
250250
throw new Error(
251-
'This Checkmk data source is only compatible with Checkmk Cloud Edition and Checmk Managed Services Edition, but you are trying to connect to another edition.'
251+
'This Checkmk data source is only compatible with Checkmk Cloud and Checkmk MSP, but you are trying to connect to another edition.'
252252
);
253253
}
254254

src/plugin.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
{
22
"$schema": "https://raw.githubusercontent.com/grafana/grafana/master/docs/sources/developers/plugins/plugin.schema.json",
33
"type": "datasource",
4-
"name": "Checkmk for Cloud Edition",
4+
"name": "Checkmk data source for Checkmk Cloud & MSP",
55
"id": "checkmk-cloud-datasource",
66
"metrics": true,
77
"info": {
8-
"description": "Checkmk data source for Checkmk Cloud Edition",
8+
"description": "Checkmk data source for Checkmk Cloud or Checkmk MSP 2.2.0 or higher",
99
"author": {
1010
"name": "Checkmk GmbH",
1111
"url": "https://github.com/Checkmk/"

utils/plugin_json_to_cloud.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
jq ".info.description = \"Checkmk data source for Checkmk Cloud Edition\"" ./src/plugin.json > ./src/plugin.new.json
1+
jq ".info.description = \"Checkmk data source for Checkmk Cloud or Checkmk MSP 2.2.0 or higher\"" ./src/plugin.json > ./src/plugin.new.json
22
mv ./src/plugin.new.json ./src/plugin.json
33

4-
jq ".name = \"Checkmk for Cloud Edition\"" ./src/plugin.json > ./src/plugin.new.json
4+
jq ".name = \"Checkmk data source for Checkmk Cloud & MSP\"" ./src/plugin.json > ./src/plugin.new.json
55
mv ./src/plugin.new.json ./src/plugin.json
66

77
jq '.id = "checkmk-cloud-datasource"' ./src/plugin.json > ./src/plugin.new.json

0 commit comments

Comments
 (0)