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
* [SDTEST-1174] Add support for Go
* Update action.yml
Co-authored-by: Nikita Tkachenko <[email protected]>
* Update action.yml
* Add more info about orchestrion
---------
Co-authored-by: Nikita Tkachenko <[email protected]>
| languages | List of languages to be instrumented. Can be either "all" or any of "java", "js", "python", "dotnet", "ruby"(multiple languages can be specified as a space-separated list). | true | |
40
+
| languages | List of languages to be instrumented. Can be either "all" or any of "java", "js", "python", "dotnet", "ruby", "go" (multiple languages can be specified as a space-separated list). | true | |
41
41
| api_key | Datadog API key. Can be found at https://app.datadoghq.com/organization-settings/api-keys | true | |
42
42
| site | Datadog site. See https://docs.datadoghq.com/getting_started/site for more information about sites. | false | datadoghq.com |
43
43
| service | The name of the service or library being tested. | false | |
@@ -46,6 +46,7 @@ The action has the following parameters:
46
46
| js-tracer-version | The version of Datadog JS tracer to use. Defaults to the latest release. | false | |
47
47
| python-tracer-version | The version of Datadog Python tracer to use. Defaults to the latest release. | false | |
48
48
| ruby-tracer-version | The version of datadog-ci Ruby gem to use. Defaults to the latest release. | false | |
49
+
| go-tracer-version | The version of Orchestrion to use. Defaults to the latest release. | false | |
49
50
| java-instrumented-build-system | If provided, only the specified build systems will be instrumented (allowed values are `gradle`,`maven`,`sbt`,`ant`,`all`). `all` is a special value that instruments every Java process. If this property is not provided, all known build systems will be instrumented (Gradle, Maven, SBT, Ant). | false | |
Copy file name to clipboardExpand all lines: action.yml
+10-3Lines changed: 10 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -5,7 +5,7 @@ branding:
5
5
color: 'purple'
6
6
inputs:
7
7
languages:
8
-
description: 'List of languages to be instrumented. Can be either "all" or any of "java", "js", "python", "dotnet", "ruby" (multiple languages can be specified as a space-separated list).'
8
+
description: 'List of languages to be instrumented. Can be either "all" or any of "java", "js", "python", "dotnet", "ruby", "go" (multiple languages can be specified as a space-separated list).'
9
9
required: true
10
10
api_key:
11
11
description: 'Datadog API key. Can be found at https://app.datadoghq.com/organization-settings/api-keys'
@@ -32,6 +32,9 @@ inputs:
32
32
ruby-tracer-version:
33
33
description: 'The version of datadog-ci Ruby gem to use (optional). Defaults to the latest release.'
34
34
required: false
35
+
go-tracer-version:
36
+
description: 'The version of Orchestrion automatic compile-time instrumentation of Go code (https://github.com/datadog/orchestrion) to use (optional). Defaults to the latest release.'
37
+
required: false
35
38
java-instrumented-build-system:
36
39
description: 'If provided, only the specified build systems will be instrumented (allowed values are `gradle` and `maven`). Otherwise every Java process will be instrumented.'
0 commit comments