pinpoint-docker-fork/pinpoint-agent/.env

48 lines
1.4 KiB
Bash
Raw Normal View History

2023-03-03 08:31:13 +00:00
PINPOINT_VERSION=2.5.1
SPRING_PROFILES=release
2018-05-11 09:30:45 +00:00
### Pinpoint-Agent
PINPOINT_AGENT_NAME=pinpoint-agent
2020-03-17 08:30:13 +00:00
2020-03-24 05:42:11 +00:00
#network module(GRPC,THRIFT)
PROFILER_TRANSPORT_MODULE=GRPC
2018-05-11 09:30:45 +00:00
#collector information required
COLLECTOR_IP=
2020-03-17 08:30:13 +00:00
PROFILER_TRANSPORT_AGENT_COLLECTOR_PORT=9991
PROFILER_TRANSPORT_METADATA_COLLECTOR_PORT=9991
PROFILER_TRANSPORT_STAT_COLLECTOR_PORT=9992
PROFILER_TRANSPORT_SPAN_COLLECTOR_PORT=9993
2020-03-24 05:42:11 +00:00
COLLECTOR_TCP_PORT=9994
COLLECTOR_STAT_PORT=9995
COLLECTOR_SPAN_PORT=9996
2020-03-17 08:30:13 +00:00
# Profiler Sampling Configurations
# If this value set to COUNTING(default), sampling rate is 1/n.
# If this value set to PERCENT, sampling rate is n%.
PROFILER_SAMPLING_TYPE=COUNTING
# depend on profiler.samplging.rate.type,
# if it's COUNTING(the default), then 1 out of n transactions will be sampled where n is the rate.
# eg. 1: 100% 20: 5% 50: 2% 100: 1%
PROFILER_SAMPLING_COUNTING_SAMPLING_RATE=1
# if it's PERCENT, then first x transactions out of y transactions will be sampled.
# Support from 100% to 0.01%
# eg. 100: 100% 50: 50% 5: 5% 0.01: 0.01%
PROFILER_SAMPLING_PERCENT_SAMPLING_RATE=100
# Permits per second, if throughput is 0, it is unlimited.
# "New" is a transaction that is newly traced.
PROFILER_SAMPLING_NEW_THROUGHPUT=0
# "Continue" is a transaction that is already being tracked.
PROFILER_SAMPLING_CONTINUE_THROUGHPUT=0
2018-05-11 09:30:45 +00:00
AGENT_ID=app-in-docker
APP_NAME=quickapp
AGENT_DEBUG_LEVEL=INFO