public Map getProperties()

in awsagentprovider/src/main/java/software/amazon/opentelemetry/javaagent/providers/AwsAgentProperties.java [24:29]


  public Map<String, String> getProperties() {
    Map<String, String> properties = new HashMap<>();
    properties.put("otel.propagators", "xray,tracecontext,b3,b3multi");
    properties.put("otel.instrumentation.aws-sdk.experimental-span-attributes", "true");
    return properties;
  }