PINPOINT_VERSION=2.4.1 SPRING_PROFILES=release ### Pinpoint-Agent PINPOINT_AGENT_NAME=pinpoint-agent #network module(GRPC,THRIFT) PROFILER_TRANSPORT_MODULE=GRPC #collector information required COLLECTOR_IP= PROFILER_TRANSPORT_AGENT_COLLECTOR_PORT=9991 PROFILER_TRANSPORT_METADATA_COLLECTOR_PORT=9991 PROFILER_TRANSPORT_STAT_COLLECTOR_PORT=9992 PROFILER_TRANSPORT_SPAN_COLLECTOR_PORT=9993 COLLECTOR_TCP_PORT=9994 COLLECTOR_STAT_PORT=9995 COLLECTOR_SPAN_PORT=9996 # 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 AGENT_ID=app-in-docker APP_NAME=quickapp AGENT_DEBUG_LEVEL=INFO