Add CockroachDB as an enterprise data source (#90860)

This commit is contained in:
Alyssa (Bull) Joyner 2024-08-01 10:59:40 -06:00 committed by GitHub
parent dbb64b3ff0
commit c0f01c30c8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 8 additions and 1 deletions

View File

@ -80,6 +80,7 @@ With a Grafana Enterprise license, you also get access to premium data sources,
- [Azure Devops](/grafana/plugins/grafana-azuredevops-datasource)
- [Catchpoint](/grafana/plugins/grafana-catchpoint-datasource)
- [Cloudflare](/grafana/plugins/grafana-cloudflare-datasource)
- [CockroachDB](/grafana/plugins/grafana-cockroachdb-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(23);
expect(enterprisePluginsCategory.plugins.length).toBe(24);
expect(enterprisePluginsCategory.plugins[0].name).toBe('Adobe Analytics');
expect(enterprisePluginsCategory.plugins[enterprisePluginsCategory.plugins.length - 1].name).toBe('Wavefront');
});

View File

@ -233,6 +233,12 @@ function getEnterprisePhantomPlugins(): DataSourcePluginMeta[] {
name: 'Cloudflare',
imgUrl: 'public/img/plugins/cloudflare.jpg',
}),
getPhantomPlugin({
id: 'grafana-cockroachdb-datasource',
description: 'CockroachDB datasource',
name: 'CockroachDB',
imgUrl: 'public/img/plugins/cockroachdb.jpg',
}),
];
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 19 KiB