-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfigSchema.d.ts
43 lines (39 loc) · 1.02 KB
/
configSchema.d.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
export interface Config {
grafanaCloudCatalogInfo?: {
/**
* @visibility backend
*
* @description Whether to enable the Grafana Cloud Catalog Plugin.
*/
enable: boolean;
/**
* @visibility backend
*
* @description A list of Backstage Kinds + types to send to Grafana Cloud.
* Note: User, System, and Domain do not have 'type' attributes
* e.g.
* allow: # These will be OR'd together
* - 'kind=Component,spec.type=service'
* - 'kind=Group,spec.type=team'
*/
allow: string[];
/**
* @visibility backend
*
* @description The slug (string) of the stack to use for the Grafana service.
*/
stack_slug: string;
/**
* @visibility backend
*
* @description The grafana.com server name. This will usually be https://grafana.com
*/
grafana_endpoint: string;
/**
* @visibility backend
*
* @description The Cloud Access token you created in Grafana Cloud.
*/
token: string;
};
}