38 lines
1.6 KiB
Plaintext
38 lines
1.6 KiB
Plaintext
# The application name in UI
|
||
agent.application_code=Your_ApplicationName
|
||
|
||
# The number of sampled traces per 3 seconds
|
||
# Negative number means sample traces as many as possible, most likely 100%
|
||
# agent.sample_n_per_3_secs=-1
|
||
|
||
# The max amount of spans in a single segment.
|
||
# Through this config item, skywalking keep your application memory cost estimated.
|
||
# agent.span_limit_per_segment=300
|
||
|
||
# Ignore the segments if their operation names start with these suffix.
|
||
# agent.ignore_suffix=.jpg,.jpeg,.js,.css,.png,.bmp,.gif,.ico,.mp3,.mp4,.html,.svg
|
||
|
||
# If true, skywalking agent will save all instrumented classes files in `/debugging` folder.
|
||
# Skywalking team may ask for these files in order to resolve compatible problem.
|
||
# agent.is_open_debugging_class = true
|
||
|
||
# Server addresses.
|
||
# Primary address setting.
|
||
#
|
||
# Mapping to `naming/jetty/ip:port` in `config/application.yml` of Collector.
|
||
# Examples:
|
||
# Single collector:SERVERS="127.0.0.1:8080"
|
||
# Collector cluster:SERVERS="10.2.45.126:8080,10.2.45.127:7600"
|
||
collector.servers=127.0.0.1:10800
|
||
|
||
# Collector agent_gRPC/grpc service addresses.
|
||
# Secondary address setting, only effect when "collector.servers" is empty.
|
||
# By using this, no discovery mechanism provided. The agent only uses these addresses to uplink data.
|
||
# Recommend to use this only when collector cluster IPs are unreachable from agent side. Such as:
|
||
# 1. Agent and collector cluster are in different VPC in Cloud.
|
||
# 2. Agent uplinks data to collector cluster through Internet.
|
||
# collector.direct_servers=www.skywalking.service.io
|
||
|
||
# Logging level
|
||
logging.level=DEBUG
|