Skip to content
Open
Show file tree
Hide file tree
Changes from all 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
2 changes: 1 addition & 1 deletion config/config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ bee-configs:
swap-factory-address: "0xdD661f2500bA5831e3d1FEbAc379Ea1bF80773Ac"
swap-initial-deposit: 500000000000000000
tracing-enable: true
tracing-endpoint: "10.10.11.199:6831"
tracing-endpoint: "10.10.11.199:4318"
tracing-service-name: "bee"
verbosity: 5 # 1=error, 2=warn, 3=info, 4=debug, 5=trace
warmup-time: 0s
Expand Down
2 changes: 1 addition & 1 deletion config/staging.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ bee-configs:
password: "beekeeper"
swap-enable: true
tracing-enable: true
tracing-endpoint: "10.10.11.199:6831"
tracing-endpoint: "10.10.11.199:4318"
tracing-service-name: "bee"
verbosity: 4
welcome-message: Welcome to the bee staging environment created by Beekeeper!
Expand Down
7 changes: 4 additions & 3 deletions pkg/orchestration/node.go
Original file line number Diff line number Diff line change
Expand Up @@ -149,9 +149,10 @@ type Config struct {
SwapInitialDeposit *string `yaml:"swap-initial-deposit,omitempty"` // initial deposit if deploying a new chequebook
TargetNeighborhood *string `yaml:"target-neighborhood,omitempty"` // neighborhood to target in binary format (ex: 111111001) for mining the initial overlay
TracingEnabled *bool `yaml:"tracing-enable,omitempty"` // enable tracing
TracingEndpoint *string `yaml:"tracing-endpoint,omitempty"` // endpoint to send tracing data
TracingHost *string `yaml:"tracing-host,omitempty"` // host to send tracing data
TracingPort *string `yaml:"tracing-port,omitempty"` // port to send tracing data
TracingEndpoint *string `yaml:"tracing-endpoint,omitempty"` // OTLP collector endpoint for tracing data (host:port)
TracingInsecure *bool `yaml:"tracing-insecure,omitempty"` // disable TLS for the OTLP exporter
TracingProtocol *string `yaml:"tracing-protocol,omitempty"` // OTLP exporter transport: http or grpc
TracingSamplingRatio *float64 `yaml:"tracing-sampling-ratio,omitempty"` // head-based sampling ratio in [0,1]; 1 samples everything
TracingServiceName *string `yaml:"tracing-service-name,omitempty"` // service name identifier for tracing
TransactionDebugMode *bool `yaml:"transaction-debug-mode,omitempty"` // skips the gas estimate step for contract transactions
UseSIMD *bool `yaml:"use-simd,omitempty"` // use SIMD BMT hasher (available only on linux amd64 platforms)
Expand Down
Loading