mirror of
https://github.com/gitpod-io/gitpod.git
synced 2025-12-08 17:36:30 +00:00
* [installer] make sure dashboard is deployed after server and papi-server * fix build * Add unit tests * address feedback * wait feature flag until get actual value of timed out * default config cat client nil * log avg fetch time * 1 * mock feature flag hang * Add metric * fixup
17 lines
491 B
Go
17 lines
491 B
Go
// Copyright (c) 2022 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.
|
|
|
|
package ide_metrics
|
|
|
|
import "github.com/gitpod-io/gitpod/installer/pkg/common"
|
|
|
|
const (
|
|
Component = common.IDEMetricsComponent
|
|
ContainerPort = common.IDEMetricsPort
|
|
PortName = "http"
|
|
ServicePort = common.IDEMetricsPort
|
|
ReadinessPort = common.IDEMetricsPort
|
|
VolumeConfig = "config"
|
|
)
|