add catchpoint to plugin list (#87438)

* add catchpoint to plugin list

* fix format

* bump the plugins number
This commit is contained in:
Taewoo K 2024-06-12 10:05:07 -04:00 committed by GitHub
parent c6d807e015
commit 5bb10d84e0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 1699 additions and 1 deletions

View File

@ -77,6 +77,7 @@ With a Grafana Enterprise license, you also get access to premium data sources,
- [AppDynamics](/grafana/plugins/dlopes7-appdynamics-datasource)
- [Azure CosmosDB](/grafana/plugins/grafana-azurecosmosdb-datasource)
- [Azure Devops](/grafana/plugins/grafana-azuredevops-datasource)
- [Catchpoint](/grafana/plugins/grafana-catchpoint-datasource)
- [Databricks](/grafana/plugins/grafana-databricks-datasource)
- [DataDog](/grafana/plugins/grafana-datadog-datasource)
- [Dynatrace](/grafana/plugins/grafana-dynatrace-datasource)

View File

@ -53,7 +53,7 @@ describe('buildCategories', () => {
it('should add enterprise phantom plugins', () => {
const enterprisePluginsCategory = categories[3];
expect(enterprisePluginsCategory.title).toBe('Enterprise plugins');
expect(enterprisePluginsCategory.plugins.length).toBe(20);
expect(enterprisePluginsCategory.plugins.length).toBe(21);
expect(enterprisePluginsCategory.plugins[0].name).toBe('AppDynamics');
expect(enterprisePluginsCategory.plugins[enterprisePluginsCategory.plugins.length - 1].name).toBe('Wavefront');
});

View File

@ -209,6 +209,12 @@ function getEnterprisePhantomPlugins(): DataSourcePluginMeta[] {
name: 'PagerDuty',
imgUrl: 'public/img/plugins/pagerduty.svg',
}),
getPhantomPlugin({
id: 'grafana-catchpoint-datasource',
description: 'Catchpoint datasource',
name: 'Catchpoint',
imgUrl: 'public/img/plugins/catchpoint.svg',
}),
getPhantomPlugin({
id: 'grafana-azurecosmosdb-datasource',
description: 'Azure CosmosDB datasource',

File diff suppressed because it is too large Load Diff

After

Width:  |  Height:  |  Size: 38 KiB