You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
description: Source of logs that Vercel forwards to Datadog.
106812
+
enum:
106813
+
- static
106814
+
- lambda
106815
+
- edge
106816
+
- build
106817
+
- external
106818
+
- firewall
106819
+
example: lambda
106820
+
type: string
106821
+
x-enum-varnames:
106822
+
- STATIC
106823
+
- LAMBDA
106824
+
- EDGE
106825
+
- BUILD
106826
+
- EXTERNAL
106827
+
- FIREWALL
106828
+
VercelLogsConfig:
106829
+
description: Logs forwarding configuration for the Vercel integration.
106830
+
properties:
106831
+
enabled:
106832
+
description: Whether logs forwarding is enabled.
106833
+
example: true
106834
+
type: boolean
106835
+
environments:
106836
+
description: List of Vercel deployment environments to forward telemetry from.
106837
+
example:
106838
+
- production
106839
+
items:
106840
+
$ref: "#/components/schemas/VercelEnvironment"
106841
+
type: array
106842
+
logSources:
106843
+
description: List of Vercel log sources to forward to Datadog.
106844
+
example:
106845
+
- lambda
106846
+
items:
106847
+
$ref: "#/components/schemas/VercelLogSource"
106848
+
type: array
106849
+
samplingPercentage:
106850
+
description: Percentage of logs to forward to Datadog, between 0 and 100.
106851
+
example: 100
106852
+
format: int32
106853
+
maximum: 100
106854
+
minimum: 0
106855
+
type: integer
106856
+
required:
106857
+
- enabled
106858
+
- samplingPercentage
106859
+
- logSources
106860
+
- environments
106861
+
type: object
106862
+
VercelTokenCreateRequest:
106863
+
description: Request to exchange a Vercel marketplace authorization code for a Datadog-managed access token.
106864
+
properties:
106865
+
authGrantCode:
106866
+
description: OAuth authorization code received from the Vercel marketplace flow.
106867
+
example: code
106868
+
type: string
106869
+
vercelConfigurationId:
106870
+
description: Vercel configuration identifier returned by the marketplace flow.
106871
+
example: icfg_abc123
106872
+
type: string
106873
+
required:
106874
+
- authGrantCode
106875
+
- vercelConfigurationId
106876
+
type: object
106877
+
VercelTraceConfig:
106878
+
description: Tracing configuration for the Vercel integration.
106879
+
properties:
106880
+
enabled:
106881
+
description: Whether tracing is enabled.
106882
+
example: true
106883
+
type: boolean
106884
+
isDeprecatedOtel:
106885
+
description: Whether the configuration uses the deprecated OpenTelemetry tracing setup.
106886
+
example: false
106887
+
type: boolean
106888
+
samplingPercentage:
106889
+
description: Percentage of traces to forward to Datadog, between 0 and 100.
106890
+
example: 100
106891
+
format: int32
106892
+
maximum: 100
106893
+
minimum: 0
106894
+
type: integer
106895
+
required:
106896
+
- enabled
106897
+
- samplingPercentage
106898
+
- isDeprecatedOtel
106899
+
type: object
106730
106900
Version:
106731
106901
description: Version of the notification rule. It is updated when the rule is modified.
106732
106902
example: 1
@@ -191561,6 +191731,154 @@ paths:
191561
191731
"x-permission":
191562
191732
operator: OPEN
191563
191733
permissions: []
191734
+
/api/v2/vercel/config/{configuration_id}:
191735
+
get:
191736
+
description: Retrieve the Datadog Vercel integration configuration for a given Vercel configuration. The response contains the API key reference, logs forwarding settings, and tracing settings stored in Datadog for this configuration.
description: Update the Datadog Vercel integration configuration for a given Vercel configuration. The provided payload replaces the existing API key reference, logs forwarding settings, and tracing settings stored in Datadog for this configuration.
description: Exchange a Vercel marketplace authorization code for an access token and store it in Datadog so that the integration can call Vercel APIs on behalf of the customer. This endpoint is invoked once when a customer installs the Datadog integration from the Vercel marketplace.
- description: Configure the Datadog Vercel integration. Endpoints in this section let you exchange a Vercel marketplace authorization code for a Datadog-managed access token and read or update the logs, traces, and API key configuration associated with a Vercel project.
193878
+
name: Vercel
193559
193879
- description: |-
193560
193880
Manage web integration accounts programmatically through the Datadog API.
193561
193881
See the [Web Integrations page](https://app.datadoghq.com/integrations) for more information.
0 commit comments