Skip to content

Commit 98f6b18

Browse files
authored
feat: datadog-lambda-go (#3943)
1 parent 284745b commit 98f6b18

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

46 files changed

+5455
-0
lines changed

CODEOWNERS

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,9 @@
6262
/internal/orchestrion @DataDog/apm-orchestrion
6363
/**/orchestrion.yml @DataDog/apm-orchestrion
6464

65+
# Serverless
66+
/contrib/aws/datadog-lambda-go @DataDog/apm-serverless @DataDog/serverless-aws
67+
6568
# no owner: changes to these files will not automatically ping any particular
6669
# team and can be reviewed by anybody with the appropriate permissions. This is
6770
# meant to avoid pinging all of @DataDog/dd-trace-go-guild for every PR that
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
//go:build lambda.norpc
2+
// +build lambda.norpc
3+
4+
// Unless explicitly stated otherwise all files in this repository are licensed
5+
// under the Apache License Version 2.0.
6+
// This product includes software developed at Datadog (https://www.datadoghq.com/).
7+
// Copyright 2016 Datadog, Inc.
8+
9+
package ddlambda
10+
11+
const awsLambdaRpcSupport = false
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
//go:build !lambda.norpc
2+
// +build !lambda.norpc
3+
4+
// Unless explicitly stated otherwise all files in this repository are licensed
5+
// under the Apache License Version 2.0.
6+
// This product includes software developed at Datadog (https://www.datadoghq.com/).
7+
// Copyright 2016 Datadog, Inc.
8+
9+
package ddlambda
10+
11+
const awsLambdaRpcSupport = true

0 commit comments

Comments
 (0)