blob: ebc00fcb6966d0cd7b63721b8062f2525093bbe2 (
plain) (
blame)
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
|
// Unless explicitly stated otherwise all files in this repository are licensed
// under the Apache License Version 2.0.
// This product includes software developed at Datadog (https://www.datadoghq.com/).
// Copyright 2024 Datadog, Inc.
package constants
const (
// CIVisibilityEnabledEnvironmentVariable indicates if CI Visibility mode is enabled.
// This environment variable should be set to "1" or "true" to enable CI Visibility mode, which activates tracing and other
// features related to CI Visibility in the Datadog platform.
CIVisibilityEnabledEnvironmentVariable = "DD_CIVISIBILITY_ENABLED"
// CIVisibilityAgentlessEnabledEnvironmentVariable indicates if CI Visibility agentless mode is enabled.
// This environment variable should be set to "1" or "true" to enable agentless mode for CI Visibility, where traces
// are sent directly to Datadog without using a local agent.
CIVisibilityAgentlessEnabledEnvironmentVariable = "DD_CIVISIBILITY_AGENTLESS_ENABLED"
// CIVisibilityAgentlessURLEnvironmentVariable forces the agentless URL to a custom one.
// This environment variable allows you to specify a custom URL for the agentless intake in CI Visibility mode.
CIVisibilityAgentlessURLEnvironmentVariable = "DD_CIVISIBILITY_AGENTLESS_URL"
// APIKeyEnvironmentVariable indicates the API key to be used for agentless intake.
// This environment variable should be set to your Datadog API key, allowing the agentless mode to authenticate and
// send data directly to the Datadog platform.
APIKeyEnvironmentVariable = "DD_API_KEY"
)
|