blob: 218854b1636538836791e7a5b2f8714e94be5a3f [file] [log] [blame]
/*
* Copyright 2018, OpenCensus Authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package io.opencensus.contrib.spring.aop;
import io.opencensus.common.Scope;
import io.opencensus.trace.AttributeValue;
import io.opencensus.trace.Span;
import io.opencensus.trace.Status;
import io.opencensus.trace.Tracer;
import java.util.HashMap;
import java.util.Map;
import org.aspectj.lang.ProceedingJoinPoint;
/** Handler defines common logic for wrapping a span around the specified JoinPoint. */
final class Handler {
private Handler() {}
static Object proceed(
ProceedingJoinPoint call, Tracer tracer, String spanName, String... annotations)
throws Throwable {
Scope scope = tracer.spanBuilder(spanName).startScopedSpan();
try {
for (String annotation : annotations) {
tracer.getCurrentSpan().addAnnotation(annotation);
}
return call.proceed();
} catch (Throwable t) {
Map<String, AttributeValue> attributes = new HashMap<String, AttributeValue>();
String message = t.getMessage();
attributes.put(
"message", AttributeValue.stringAttributeValue(message == null ? "null" : message));
attributes.put("type", AttributeValue.stringAttributeValue(t.getClass().toString()));
Span span = tracer.getCurrentSpan();
span.addAnnotation("error", attributes);
span.setStatus(Status.UNKNOWN);
throw t;
} finally {
scope.close();
}
}
}