Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[datadog_synthetics_test] Add persistCookies option #2058

Merged
merged 6 commits into from
Aug 18, 2023
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions datadog/resource_datadog_synthetics_test_.go
Original file line number Diff line number Diff line change
Expand Up @@ -222,6 +222,11 @@ func syntheticsTestRequest() *schema.Resource {
Type: schema.TypeString,
},
},
"persist_cookies": {
Description: "Persist cookies across redirects",
Type: schema.TypeBool,
Optional: true,
},
},
}
}
Expand Down Expand Up @@ -1446,6 +1451,9 @@ func buildSyntheticsAPITestStruct(d *schema.ResourceData) *datadogV1.SyntheticsA
request.SetService("")
}
}
if attr, ok := d.GetOk("request_definition.0.persist_cookies"); ok {
request.SetPersistCookies(attr.(bool))
}

request = *completeSyntheticsTestRequest(request, d.Get("request_headers").(map[string]interface{}), d.Get("request_query").(map[string]interface{}), d.Get("request_basicauth").([]interface{}), d.Get("request_client_certificate").([]interface{}), d.Get("request_proxy").([]interface{}))

Expand Down Expand Up @@ -1516,6 +1524,7 @@ func buildSyntheticsAPITestStruct(d *schema.ResourceData) *datadogV1.SyntheticsA
request.SetTimeout(float64(requestMap["timeout"].(int)))
request.SetAllowInsecure(requestMap["allow_insecure"].(bool))
request.SetFollowRedirects(requestMap["follow_redirects"].(bool))
request.SetPersistCookies(requestMap["persist_cookies"].(bool))
}

request = *completeSyntheticsTestRequest(request, stepMap["request_headers"].(map[string]interface{}), stepMap["request_query"].(map[string]interface{}), stepMap["request_basicauth"].([]interface{}), stepMap["request_client_certificate"].([]interface{}), stepMap["request_proxy"].([]interface{}))
Expand Down Expand Up @@ -2307,6 +2316,9 @@ func buildLocalRequest(request datadogV1.SyntheticsTestRequest) map[string]inter
if request.HasCertificateDomains() {
localRequest["certificate_domains"] = request.GetCertificateDomains()
}
if request.HasPersistCookies() {
localRequest["persist_cookies"] = request.GetPersistCookies()
}

return localRequest
}
Expand Down
5 changes: 4 additions & 1 deletion datadog/tests/resource_datadog_synthetics_test_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -780,6 +780,7 @@ resource "datadog_synthetics_test" "advanced_scheduling" {
body_type = "text/plain"
timeout = 30
no_saving_response_body = true
persist_cookies = true
}
request_headers = {
Accept = "application/json"
Expand Down Expand Up @@ -861,6 +862,8 @@ func createSyntheticsAPITestStepAdvancedScheduling(ctx context.Context, accProvi
"datadog_synthetics_test.advanced_scheduling", "request_definition.0.body_type", "text/plain"),
resource.TestCheckResourceAttr(
"datadog_synthetics_test.advanced_scheduling", "request_definition.0.no_saving_response_body", "true"),
resource.TestCheckResourceAttr(
"datadog_synthetics_test.advanced_scheduling", "request_definition.0.persist_cookies", "true"),
resource.TestCheckResourceAttr(
"datadog_synthetics_test.advanced_scheduling", "assertion.#", "3"),
resource.TestCheckResourceAttr(
Expand Down Expand Up @@ -2816,7 +2819,7 @@ resource "datadog_synthetics_test" "bar" {
name = "EMAIL_VAR"
type = "email"
}

browser_variable {
type = "text"
name = "MY_SECRET"
Expand Down
44 changes: 22 additions & 22 deletions docs/resources/dashboard.md
Original file line number Diff line number Diff line change
Expand Up @@ -952,7 +952,7 @@ Optional:

Required:

- `comparator` (String) The comparator to use. Valid values are `>`, `>=`, `<`, `<=`.
- `comparator` (String) The comparator to use. Valid values are `=`, `>`, `>=`, `<`, `<=`.
- `palette` (String) The color palette to apply. Valid values are `blue`, `custom_bg`, `custom_image`, `custom_text`, `gray_on_white`, `grey`, `green`, `orange`, `red`, `red_on_white`, `white_on_gray`, `white_on_green`, `green_on_white`, `white_on_red`, `white_on_yellow`, `yellow_on_white`, `black_on_light_yellow`, `black_on_light_green`, `black_on_light_red`.
- `value` (Number) A value for the comparator.

Expand Down Expand Up @@ -1831,7 +1831,7 @@ Optional:

Required:

- `comparator` (String) The comparator to use. Valid values are `>`, `>=`, `<`, `<=`.
- `comparator` (String) The comparator to use. Valid values are `=`, `>`, `>=`, `<`, `<=`.
- `palette` (String) The color palette to apply. Valid values are `blue`, `custom_bg`, `custom_image`, `custom_text`, `gray_on_white`, `grey`, `green`, `orange`, `red`, `red_on_white`, `white_on_gray`, `white_on_green`, `green_on_white`, `white_on_red`, `white_on_yellow`, `yellow_on_white`, `black_on_light_yellow`, `black_on_light_green`, `black_on_light_red`.
- `value` (Number) A value for the comparator.

Expand Down Expand Up @@ -2386,7 +2386,7 @@ Optional:

Required:

- `comparator` (String) The comparator to use. Valid values are `>`, `>=`, `<`, `<=`.
- `comparator` (String) The comparator to use. Valid values are `=`, `>`, `>=`, `<`, `<=`.
- `palette` (String) The color palette to apply. Valid values are `blue`, `custom_bg`, `custom_image`, `custom_text`, `gray_on_white`, `grey`, `green`, `orange`, `red`, `red_on_white`, `white_on_gray`, `white_on_green`, `green_on_white`, `white_on_red`, `white_on_yellow`, `yellow_on_white`, `black_on_light_yellow`, `black_on_light_green`, `black_on_light_red`.
- `value` (Number) A value for the comparator.

Expand Down Expand Up @@ -3265,7 +3265,7 @@ Optional:

Required:

- `comparator` (String) The comparator to use. Valid values are `>`, `>=`, `<`, `<=`.
- `comparator` (String) The comparator to use. Valid values are `=`, `>`, `>=`, `<`, `<=`.
- `palette` (String) The color palette to apply. Valid values are `blue`, `custom_bg`, `custom_image`, `custom_text`, `gray_on_white`, `grey`, `green`, `orange`, `red`, `red_on_white`, `white_on_gray`, `white_on_green`, `green_on_white`, `white_on_red`, `white_on_yellow`, `yellow_on_white`, `black_on_light_yellow`, `black_on_light_green`, `black_on_light_red`.
- `value` (Number) A value for the comparator.

Expand Down Expand Up @@ -4859,7 +4859,7 @@ Optional:

Required:

- `comparator` (String) The comparator to use. Valid values are `>`, `>=`, `<`, `<=`.
- `comparator` (String) The comparator to use. Valid values are `=`, `>`, `>=`, `<`, `<=`.
- `palette` (String) The color palette to apply. Valid values are `blue`, `custom_bg`, `custom_image`, `custom_text`, `gray_on_white`, `grey`, `green`, `orange`, `red`, `red_on_white`, `white_on_gray`, `white_on_green`, `green_on_white`, `white_on_red`, `white_on_yellow`, `yellow_on_white`, `black_on_light_yellow`, `black_on_light_green`, `black_on_light_red`.
- `value` (Number) A value for the comparator.

Expand Down Expand Up @@ -4893,7 +4893,7 @@ Optional:

Required:

- `comparator` (String) The comparator to use. Valid values are `>`, `>=`, `<`, `<=`.
- `comparator` (String) The comparator to use. Valid values are `=`, `>`, `>=`, `<`, `<=`.
- `palette` (String) The color palette to apply. Valid values are `blue`, `custom_bg`, `custom_image`, `custom_text`, `gray_on_white`, `grey`, `green`, `orange`, `red`, `red_on_white`, `white_on_gray`, `white_on_green`, `green_on_white`, `white_on_red`, `white_on_yellow`, `yellow_on_white`, `black_on_light_yellow`, `black_on_light_green`, `black_on_light_red`.
- `value` (Number) A value for the comparator.

Expand Down Expand Up @@ -5479,7 +5479,7 @@ Optional:

Required:

- `comparator` (String) The comparator to use. Valid values are `>`, `>=`, `<`, `<=`.
- `comparator` (String) The comparator to use. Valid values are `=`, `>`, `>=`, `<`, `<=`.
- `palette` (String) The color palette to apply. Valid values are `blue`, `custom_bg`, `custom_image`, `custom_text`, `gray_on_white`, `grey`, `green`, `orange`, `red`, `red_on_white`, `white_on_gray`, `white_on_green`, `green_on_white`, `white_on_red`, `white_on_yellow`, `yellow_on_white`, `black_on_light_yellow`, `black_on_light_green`, `black_on_light_red`.
- `value` (Number) A value for the comparator.

Expand Down Expand Up @@ -5513,7 +5513,7 @@ Optional:

Required:

- `comparator` (String) The comparator to use. Valid values are `>`, `>=`, `<`, `<=`.
- `comparator` (String) The comparator to use. Valid values are `=`, `>`, `>=`, `<`, `<=`.
- `palette` (String) The color palette to apply. Valid values are `blue`, `custom_bg`, `custom_image`, `custom_text`, `gray_on_white`, `grey`, `green`, `orange`, `red`, `red_on_white`, `white_on_gray`, `white_on_green`, `green_on_white`, `white_on_red`, `white_on_yellow`, `yellow_on_white`, `black_on_light_yellow`, `black_on_light_green`, `black_on_light_red`.
- `value` (Number) A value for the comparator.

Expand Down Expand Up @@ -7103,7 +7103,7 @@ Optional:

Required:

- `comparator` (String) The comparator to use. Valid values are `>`, `>=`, `<`, `<=`.
- `comparator` (String) The comparator to use. Valid values are `=`, `>`, `>=`, `<`, `<=`.
- `palette` (String) The color palette to apply. Valid values are `blue`, `custom_bg`, `custom_image`, `custom_text`, `gray_on_white`, `grey`, `green`, `orange`, `red`, `red_on_white`, `white_on_gray`, `white_on_green`, `green_on_white`, `white_on_red`, `white_on_yellow`, `yellow_on_white`, `black_on_light_yellow`, `black_on_light_green`, `black_on_light_red`.
- `value` (Number) A value for the comparator.

Expand Down Expand Up @@ -7799,7 +7799,7 @@ Optional:

Required:

- `comparator` (String) The comparator to use. Valid values are `>`, `>=`, `<`, `<=`.
- `comparator` (String) The comparator to use. Valid values are `=`, `>`, `>=`, `<`, `<=`.
- `palette` (String) The color palette to apply. Valid values are `blue`, `custom_bg`, `custom_image`, `custom_text`, `gray_on_white`, `grey`, `green`, `orange`, `red`, `red_on_white`, `white_on_gray`, `white_on_green`, `green_on_white`, `white_on_red`, `white_on_yellow`, `yellow_on_white`, `black_on_light_yellow`, `black_on_light_green`, `black_on_light_red`.
- `value` (Number) A value for the comparator.

Expand Down Expand Up @@ -8490,7 +8490,7 @@ Optional:

Required:

- `comparator` (String) The comparator to use. Valid values are `>`, `>=`, `<`, `<=`.
- `comparator` (String) The comparator to use. Valid values are `=`, `>`, `>=`, `<`, `<=`.
- `palette` (String) The color palette to apply. Valid values are `blue`, `custom_bg`, `custom_image`, `custom_text`, `gray_on_white`, `grey`, `green`, `orange`, `red`, `red_on_white`, `white_on_gray`, `white_on_green`, `green_on_white`, `white_on_red`, `white_on_yellow`, `yellow_on_white`, `black_on_light_yellow`, `black_on_light_green`, `black_on_light_red`.
- `value` (Number) A value for the comparator.

Expand Down Expand Up @@ -8524,7 +8524,7 @@ Optional:

Required:

- `comparator` (String) The comparator to use. Valid values are `>`, `>=`, `<`, `<=`.
- `comparator` (String) The comparator to use. Valid values are `=`, `>`, `>=`, `<`, `<=`.
- `palette` (String) The color palette to apply. Valid values are `blue`, `custom_bg`, `custom_image`, `custom_text`, `gray_on_white`, `grey`, `green`, `orange`, `red`, `red_on_white`, `white_on_gray`, `white_on_green`, `green_on_white`, `white_on_red`, `white_on_yellow`, `yellow_on_white`, `black_on_light_yellow`, `black_on_light_green`, `black_on_light_red`.
- `value` (Number) A value for the comparator.

Expand Down Expand Up @@ -9043,7 +9043,7 @@ Optional:

Required:

- `comparator` (String) The comparator to use. Valid values are `>`, `>=`, `<`, `<=`.
- `comparator` (String) The comparator to use. Valid values are `=`, `>`, `>=`, `<`, `<=`.
- `palette` (String) The color palette to apply. Valid values are `blue`, `custom_bg`, `custom_image`, `custom_text`, `gray_on_white`, `grey`, `green`, `orange`, `red`, `red_on_white`, `white_on_gray`, `white_on_green`, `green_on_white`, `white_on_red`, `white_on_yellow`, `yellow_on_white`, `black_on_light_yellow`, `black_on_light_green`, `black_on_light_red`.
- `value` (Number) A value for the comparator.

Expand Down Expand Up @@ -10517,7 +10517,7 @@ Optional:

Required:

- `comparator` (String) The comparator to use. Valid values are `>`, `>=`, `<`, `<=`.
- `comparator` (String) The comparator to use. Valid values are `=`, `>`, `>=`, `<`, `<=`.
- `palette` (String) The color palette to apply. Valid values are `blue`, `custom_bg`, `custom_image`, `custom_text`, `gray_on_white`, `grey`, `green`, `orange`, `red`, `red_on_white`, `white_on_gray`, `white_on_green`, `green_on_white`, `white_on_red`, `white_on_yellow`, `yellow_on_white`, `black_on_light_yellow`, `black_on_light_green`, `black_on_light_red`.
- `value` (Number) A value for the comparator.

Expand Down Expand Up @@ -10551,7 +10551,7 @@ Optional:

Required:

- `comparator` (String) The comparator to use. Valid values are `>`, `>=`, `<`, `<=`.
- `comparator` (String) The comparator to use. Valid values are `=`, `>`, `>=`, `<`, `<=`.
- `palette` (String) The color palette to apply. Valid values are `blue`, `custom_bg`, `custom_image`, `custom_text`, `gray_on_white`, `grey`, `green`, `orange`, `red`, `red_on_white`, `white_on_gray`, `white_on_green`, `green_on_white`, `white_on_red`, `white_on_yellow`, `yellow_on_white`, `black_on_light_yellow`, `black_on_light_green`, `black_on_light_red`.
- `value` (Number) A value for the comparator.

Expand Down Expand Up @@ -11137,7 +11137,7 @@ Optional:

Required:

- `comparator` (String) The comparator to use. Valid values are `>`, `>=`, `<`, `<=`.
- `comparator` (String) The comparator to use. Valid values are `=`, `>`, `>=`, `<`, `<=`.
- `palette` (String) The color palette to apply. Valid values are `blue`, `custom_bg`, `custom_image`, `custom_text`, `gray_on_white`, `grey`, `green`, `orange`, `red`, `red_on_white`, `white_on_gray`, `white_on_green`, `green_on_white`, `white_on_red`, `white_on_yellow`, `yellow_on_white`, `black_on_light_yellow`, `black_on_light_green`, `black_on_light_red`.
- `value` (Number) A value for the comparator.

Expand Down Expand Up @@ -11171,7 +11171,7 @@ Optional:

Required:

- `comparator` (String) The comparator to use. Valid values are `>`, `>=`, `<`, `<=`.
- `comparator` (String) The comparator to use. Valid values are `=`, `>`, `>=`, `<`, `<=`.
- `palette` (String) The color palette to apply. Valid values are `blue`, `custom_bg`, `custom_image`, `custom_text`, `gray_on_white`, `grey`, `green`, `orange`, `red`, `red_on_white`, `white_on_gray`, `white_on_green`, `green_on_white`, `white_on_red`, `white_on_yellow`, `yellow_on_white`, `black_on_light_yellow`, `black_on_light_green`, `black_on_light_red`.
- `value` (Number) A value for the comparator.

Expand Down Expand Up @@ -12761,7 +12761,7 @@ Optional:

Required:

- `comparator` (String) The comparator to use. Valid values are `>`, `>=`, `<`, `<=`.
- `comparator` (String) The comparator to use. Valid values are `=`, `>`, `>=`, `<`, `<=`.
- `palette` (String) The color palette to apply. Valid values are `blue`, `custom_bg`, `custom_image`, `custom_text`, `gray_on_white`, `grey`, `green`, `orange`, `red`, `red_on_white`, `white_on_gray`, `white_on_green`, `green_on_white`, `white_on_red`, `white_on_yellow`, `yellow_on_white`, `black_on_light_yellow`, `black_on_light_green`, `black_on_light_red`.
- `value` (Number) A value for the comparator.

Expand Down Expand Up @@ -13457,7 +13457,7 @@ Optional:

Required:

- `comparator` (String) The comparator to use. Valid values are `>`, `>=`, `<`, `<=`.
- `comparator` (String) The comparator to use. Valid values are `=`, `>`, `>=`, `<`, `<=`.
- `palette` (String) The color palette to apply. Valid values are `blue`, `custom_bg`, `custom_image`, `custom_text`, `gray_on_white`, `grey`, `green`, `orange`, `red`, `red_on_white`, `white_on_gray`, `white_on_green`, `green_on_white`, `white_on_red`, `white_on_yellow`, `yellow_on_white`, `black_on_light_yellow`, `black_on_light_green`, `black_on_light_red`.
- `value` (Number) A value for the comparator.

Expand Down Expand Up @@ -14148,7 +14148,7 @@ Optional:

Required:

- `comparator` (String) The comparator to use. Valid values are `>`, `>=`, `<`, `<=`.
- `comparator` (String) The comparator to use. Valid values are `=`, `>`, `>=`, `<`, `<=`.
- `palette` (String) The color palette to apply. Valid values are `blue`, `custom_bg`, `custom_image`, `custom_text`, `gray_on_white`, `grey`, `green`, `orange`, `red`, `red_on_white`, `white_on_gray`, `white_on_green`, `green_on_white`, `white_on_red`, `white_on_yellow`, `yellow_on_white`, `black_on_light_yellow`, `black_on_light_green`, `black_on_light_red`.
- `value` (Number) A value for the comparator.

Expand Down Expand Up @@ -14182,7 +14182,7 @@ Optional:

Required:

- `comparator` (String) The comparator to use. Valid values are `>`, `>=`, `<`, `<=`.
- `comparator` (String) The comparator to use. Valid values are `=`, `>`, `>=`, `<`, `<=`.
- `palette` (String) The color palette to apply. Valid values are `blue`, `custom_bg`, `custom_image`, `custom_text`, `gray_on_white`, `grey`, `green`, `orange`, `red`, `red_on_white`, `white_on_gray`, `white_on_green`, `green_on_white`, `white_on_red`, `white_on_yellow`, `yellow_on_white`, `black_on_light_yellow`, `black_on_light_green`, `black_on_light_red`.
- `value` (Number) A value for the comparator.

Expand Down Expand Up @@ -14701,7 +14701,7 @@ Optional:

Required:

- `comparator` (String) The comparator to use. Valid values are `>`, `>=`, `<`, `<=`.
- `comparator` (String) The comparator to use. Valid values are `=`, `>`, `>=`, `<`, `<=`.
- `palette` (String) The color palette to apply. Valid values are `blue`, `custom_bg`, `custom_image`, `custom_text`, `gray_on_white`, `grey`, `green`, `orange`, `red`, `red_on_white`, `white_on_gray`, `white_on_green`, `green_on_white`, `white_on_red`, `white_on_yellow`, `yellow_on_white`, `black_on_light_yellow`, `black_on_light_green`, `black_on_light_red`.
- `value` (Number) A value for the comparator.

Expand Down
2 changes: 2 additions & 0 deletions docs/resources/synthetics_test.md
Original file line number Diff line number Diff line change
Expand Up @@ -515,6 +515,7 @@ Optional:
- `method` (String) Either the HTTP method/verb to use or a gRPC method available on the service set in the `service` field. Required if `subtype` is `HTTP` or if `subtype` is `grpc` and `callType` is `unary`.
- `no_saving_response_body` (Boolean) Determines whether or not to save the response body.
- `number_of_packets` (Number) Number of pings to use per test for ICMP tests (`subtype = "icmp"`) between 0 and 10.
- `persist_cookies` (Boolean) Persist cookies across redirects
romainberger marked this conversation as resolved.
Show resolved Hide resolved
- `port` (Number) Port to use when performing the test.
- `servername` (String) For SSL tests, it specifies on which server you want to initiate the TLS handshake, allowing the server to present one of multiple possible certificates on the same IP address and TCP port number.
- `service` (String) The gRPC service on which you want to perform the gRPC call.
Expand Down Expand Up @@ -857,6 +858,7 @@ Optional:
- `method` (String) Either the HTTP method/verb to use or a gRPC method available on the service set in the `service` field. Required if `subtype` is `HTTP` or if `subtype` is `grpc` and `callType` is `unary`.
- `no_saving_response_body` (Boolean) Determines whether or not to save the response body.
- `number_of_packets` (Number) Number of pings to use per test for ICMP tests (`subtype = "icmp"`) between 0 and 10.
- `persist_cookies` (Boolean) Persist cookies across redirects
romainberger marked this conversation as resolved.
Show resolved Hide resolved
- `port` (Number) Port to use when performing the test.
- `servername` (String) For SSL tests, it specifies on which server you want to initiate the TLS handshake, allowing the server to present one of multiple possible certificates on the same IP address and TCP port number.
- `service` (String) The gRPC service on which you want to perform the gRPC call.
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
module github.com/terraform-providers/terraform-provider-datadog

require (
github.com/DataDog/datadog-api-client-go/v2 v2.15.1-0.20230725211447-1b05fdc966d9
github.com/DataDog/datadog-api-client-go/v2 v2.15.1-0.20230814100126-4566521a2fc8
github.com/DataDog/dd-sdk-go-testing v0.0.0-20211116174033-1cd082e322ad
github.com/dnaeon/go-vcr v1.0.1
github.com/hashicorp/go-cleanhttp v0.5.2
Expand Down
4 changes: 2 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
cloud.google.com/go v0.26.0/go.mod h1:aQUYkXzVsufM+DwF1aE+0xfcU+56JwCaLick0ClmMTw=
github.com/BurntSushi/toml v0.3.1/go.mod h1:xHWCNGjB5oqiDr8zfno3MHue2Ht5sIBksp03qcyfWMU=
github.com/DataDog/datadog-api-client-go/v2 v2.15.1-0.20230725211447-1b05fdc966d9 h1:fJcheQiiK7ZvyA+fEQ7VFKKxwBpQsruHsQzIO2uFy3A=
github.com/DataDog/datadog-api-client-go/v2 v2.15.1-0.20230725211447-1b05fdc966d9/go.mod h1:oCUqT9SzZQYaH30GDjnSR1/Y0Xe+8P8RKoHDThHaQfk=
github.com/DataDog/datadog-api-client-go/v2 v2.15.1-0.20230814100126-4566521a2fc8 h1:qM5fCt7KQt9loBen4Z/Xqpar/HurlqdyTbb3NG7Fb4c=
github.com/DataDog/datadog-api-client-go/v2 v2.15.1-0.20230814100126-4566521a2fc8/go.mod h1:uJd7G1BONVIyiVw684VMn2XYI1FfN1tx4bRGenAf2bo=
github.com/DataDog/datadog-go v4.4.0+incompatible/go.mod h1:LButxg5PwREeZtORoXG3tL4fMGNddJ+vMq1mwgfaqoQ=
github.com/DataDog/datadog-go v4.8.3+incompatible h1:fNGaYSuObuQb5nzeTQqowRAd9bpDIRRV4/gUtIBjh8Q=
github.com/DataDog/datadog-go v4.8.3+incompatible/go.mod h1:LButxg5PwREeZtORoXG3tL4fMGNddJ+vMq1mwgfaqoQ=
Expand Down
Loading