setAttribute method

void setAttribute(
  1. String key,
  2. String value
)

Implementation

void setAttribute(String key, String value) {
  APM.setExecutionTraceAttribute(id, key, value);
  attributes[key] = value;
}