mirror of
https://github.com/gitpod-io/gitpod.git
synced 2025-12-08 17:36:30 +00:00
25 lines
1.4 KiB
Jsonnet
25 lines
1.4 KiB
Jsonnet
/**
|
|
* Copyright (c) 2021 Gitpod GmbH. All rights reserved.
|
|
* Licensed under the GNU Affero General Public License (AGPL).
|
|
* See License.AGPL.txt in the project root for license information.
|
|
*/
|
|
|
|
{
|
|
grafanaDashboards+:: {
|
|
// Import raw json files here.
|
|
// Example:
|
|
// 'my-new-dashboard.json': (import 'dashboards/components/new-component.json'),
|
|
'gitpod-component-blobserve.json': (import 'dashboards/components/blobserve.json'),
|
|
'gitpod-component-openvsx-proxy.json': (import 'dashboards/components/openvsx-proxy.json'),
|
|
'gitpod-component-openvsx-mirror.json': (import 'dashboards/components/openvsx-mirror.json'),
|
|
'gitpod-component-ssh-gateway.json': (import 'dashboards/components/ssh-gateway.json'),
|
|
'gitpod-component-supervisor.json': (import 'dashboards/components/supervisor.json'),
|
|
'gitpod-component-jb.json': (import 'dashboards/components/jb.json'),
|
|
'gitpod-component-browser-overview.json': (import 'dashboards/components/browser-overview.json'),
|
|
'gitpod-component-code-browser.json': (import 'dashboards/components/code-browser.json'),
|
|
'gitpod-component-ide-startup-time.json': (import 'dashboards/components/ide-startup-time.json'),
|
|
'gitpod-component-ide-service.json': (import 'dashboards/components/ide-service.json'),
|
|
'gitpod-component-local-ssh.json': (import 'dashboards/components/local-ssh.json'),
|
|
},
|
|
}
|