kamon.instrumentation.mongo.BatchCursorGetMoreAdvice Maven / Gradle / Ivy
/*
* Copyright 2013-2020 The Kamon Project
*
* 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 kamon.instrumentation.mongo;
import com.mongodb.MongoNamespace;
import kamon.Kamon;
import kamon.context.Storage;
import kamon.instrumentation.context.HasContext;
import kamon.trace.Span;
import kanela.agent.libs.net.bytebuddy.asm.Advice;
public class BatchCursorGetMoreAdvice {
@Advice.OnMethodEnter
public static Storage.Scope enter(
@Advice.This Object batchCursor,
@Advice.FieldValue("namespace") MongoNamespace namespace) {
final Span parentSpan = ((HasContext) batchCursor).context().get(Span.Key());
final Span getMoreSpan = MongoClientInstrumentation.getMoreSpanBuilder(parentSpan, namespace).start();
return Kamon.storeContext(Kamon.currentContext().withEntry(Span.Key(), getMoreSpan));
}
@Advice.OnMethodExit(onThrowable = Throwable.class)
public static void exit(@Advice.Enter Storage.Scope scope, @Advice.Thrown Throwable t) {
final Span span = scope.context().get(Span.Key());
if(t == null) {
span.finish();
} else {
span.fail(t).finish();
}
scope.close();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy