Skip to content

Commit 1259231

Browse files
authored
feat: add goagent use_custom_bsp config value (#162)
1 parent 0c1dbb4 commit 1259231

File tree

9 files changed

+301
-171
lines changed

9 files changed

+301
-171
lines changed

ENV_VARS.md

+1
Original file line numberDiff line numberDiff line change
@@ -30,3 +30,4 @@ Agents can be configured using environment variables:
3030
| HT_JAVAAGENT_FILTER_JAR_PATHS | Is the list of path to filter jars, separated by `,`. The values should be separated by `,`. |
3131
| HT_TELEMETRY_STARTUP_SPAN_ENABLED | When `true`, an internal span is created and exported when the agent is initialized and started. It's useful to denote when the application the agent is in started. |
3232
| HT_TELEMETRY_METRICS_ENABLED | Whether to capture metrics or not. The metrics will be otel go metrics. See https://github.com/open-telemetry/opentelemetry-go/tree/main/metric |
33+
| HT_GOAGENT_USE_CUSTOM_BSP | Use the custom batch_span_processor adapted from the one in opentelemetry go and supports some additional metrics |

gen/go/go.mod

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ go 1.19
44

55
require (
66
github.com/ghodss/yaml v1.0.0
7-
github.com/stretchr/testify v1.8.4
8-
google.golang.org/protobuf v1.32.0
7+
github.com/stretchr/testify v1.9.0
8+
google.golang.org/protobuf v1.34.1
99
)
1010

1111
require (

gen/go/go.sum

+4-4
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@ github.com/ghodss/yaml v1.0.0/go.mod h1:4dBDuWmgqj2HViK6kFavaiC9ZROes6MMH2rRYeME
55
github.com/google/go-cmp v0.5.5 h1:Khx7svrCpmxxtHBq5j2mp/xVjsi8hQMfNLvJFAlrGgU=
66
github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM=
77
github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4=
8-
github.com/stretchr/testify v1.8.4 h1:CcVxjf3Q8PM0mHUKJCdn+eZZtm5yQwehR5yeSVQQcUk=
9-
github.com/stretchr/testify v1.8.4/go.mod h1:sz/lmYIOXD/1dqDmKjjqLyZ2RngseejIcXlSw2iwfAo=
8+
github.com/stretchr/testify v1.9.0 h1:HtqpIVDClZ4nwg75+f6Lvsy/wHu+3BoSGCbBAcpTsTg=
9+
github.com/stretchr/testify v1.9.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY=
1010
golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543 h1:E7g+9GITq07hpfrRu66IVDexMakfv52eLZ2CXBWiKr4=
11-
google.golang.org/protobuf v1.32.0 h1:pPC6BG5ex8PDFnkbrGU3EixyhKcQ2aDuBS36lqK/C7I=
12-
google.golang.org/protobuf v1.32.0/go.mod h1:c6P6GXX6sHbq/GpV6MGZEdwhWPcYBgnhAHhKbcUYpos=
11+
google.golang.org/protobuf v1.34.1 h1:9ddQBjfCyZPOHPUiPxpYESBLc+T8P3E+Vo4IbKZgFWg=
12+
google.golang.org/protobuf v1.34.1/go.mod h1:c6P6GXX6sHbq/GpV6MGZEdwhWPcYBgnhAHhKbcUYpos=
1313
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405 h1:yhCVgyC4o1eVCa2tZl7eS0r+SDo693bJlVdllGtEeKM=
1414
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
1515
gopkg.in/yaml.v2 v2.4.0 h1:D8xgwECY7CYvx+Y2n4sBz93Jn9JRvxdiyyo8CTfuKaY=

gen/go/v1/config.pb.go

+245-163
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

gen/go/v1/config.pbloader.go

+23
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

gen/go/v1/loader.go

+14
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

proto/hypertrace/agent/config/v1/config.proto

+10
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,9 @@ message AgentConfig {
3737

3838
// telemetry
3939
Telemetry telemetry = 8;
40+
41+
// Goagent specific config
42+
GoAgent goagent = 9;
4043
}
4144

4245
// Reporting covers the options related to the mechanics for sending data to the
@@ -176,6 +179,13 @@ message JavaAgent {
176179
repeated google.protobuf.StringValue filter_jar_paths = 1;
177180
}
178181

182+
// GoAgent has the configs specific to goagent
183+
message GoAgent {
184+
// use the custom batch_span_processor adapted from the one in opentelemetry go
185+
// and supports some additional metrics
186+
google.protobuf.BoolValue use_custom_bsp = 1;
187+
}
188+
179189
// Telemetry has config for agent telemetry: traces and metrics on agent's
180190
// performance and events.
181191
message Telemetry {

tools/env-vars-generator/protobuf

Submodule protobuf updated 3440 files
Submodule _protobuf updated 3440 files

0 commit comments

Comments
 (0)