public AgentConfiguration()

in aws-xray-agent/src/main/java/com/amazonaws/xray/agent/runtime/config/AgentConfiguration.java [41:58]


    public AgentConfiguration() {
        serviceName = DEFAULT_SERVICE_NAME;
        contextMissingStrategy = "LOG_ERROR";
        daemonAddress = "127.0.0.1:2000";
        samplingStrategy = "CENTRAL";
        traceIdInjectionPrefix = "";
        maxStackTraceLength = 50;
        streamingThreshold = 100;
        samplingRulesManifest = null; // Manifests are null by default since the default location file will be found later
        awsSdkVersion = 2;
        awsServiceHandlerManifest = null;
        pluginsEnabled = true;
        tracingEnabled = true;
        collectSqlQueries = false;
        traceIdInjection = true;
        contextPropagation = true;
        traceIncomingRequests = true;
    }