diff --git a/changelog.txt b/changelog.txt
index c04eafff4..ff9811d73 100644
--- a/changelog.txt
+++ b/changelog.txt
@@ -7,8 +7,8 @@
- Fix JWT token refresh [52a5ebd7]
1.16.1 - 20 Dec 2024
-- Add tiered chache for HTTP proxied responses (#778) [00b6add7]
-- Improve boostrap info [d5c086da]
+- Add tiered cache for HTTP proxied responses (#778) [00b6add7]
+- Improve bootstrap info [d5c086da]
- Remove jitpack [67f91c8b]
1.16.0 - 17 Dec 2024
diff --git a/src/main/groovy/io/seqera/util/trace/TraceElapsedTime.groovy b/src/main/groovy/io/seqera/util/trace/TraceElapsedTime.groovy
new file mode 100644
index 000000000..5a08b4cf5
--- /dev/null
+++ b/src/main/groovy/io/seqera/util/trace/TraceElapsedTime.groovy
@@ -0,0 +1,41 @@
+/*
+ * Wave, containers provisioning service
+ * Copyright (c) 2023-2024, Seqera Labs
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Affero General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License
+ * along with this program. If not, see .
+ */
+
+package io.seqera.util.trace
+
+import java.lang.annotation.Documented
+import java.lang.annotation.Retention
+import java.lang.annotation.Target
+
+import io.micronaut.aop.Around
+import static java.lang.annotation.ElementType.METHOD
+import static java.lang.annotation.ElementType.TYPE
+import static java.lang.annotation.RetentionPolicy.RUNTIME
+/**
+ * When applied to a method or a class the elapsed time to carry out the method execution
+ * is reported in the application log file
+ *
+ * @author Paolo Di Tommaso
+ */
+@Documented
+@Retention(RUNTIME)
+@Target([TYPE, METHOD])
+@Around
+@interface TraceElapsedTime {
+ String thresholdMillis() default '0'
+}
diff --git a/src/main/groovy/io/seqera/util/trace/TraceElapsedTimeInterceptor.groovy b/src/main/groovy/io/seqera/util/trace/TraceElapsedTimeInterceptor.groovy
new file mode 100644
index 000000000..cfb8218a6
--- /dev/null
+++ b/src/main/groovy/io/seqera/util/trace/TraceElapsedTimeInterceptor.groovy
@@ -0,0 +1,74 @@
+/*
+ * Wave, containers provisioning service
+ * Copyright (c) 2023-2024, Seqera Labs
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Affero General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License
+ * along with this program. If not, see .
+ */
+
+package io.seqera.util.trace
+
+import java.time.Duration
+
+import groovy.transform.CompileStatic
+import groovy.util.logging.Slf4j
+import io.micronaut.aop.InterceptorBean
+import io.micronaut.aop.MethodInterceptor
+import io.micronaut.aop.MethodInvocationContext
+import jakarta.inject.Singleton
+/**
+ * Implements an method interceptor that logs the elapsed time to carry out the execution
+ * of method invocation.
+ *
+ * This interceptor is applied to classes or methods marked in the {@link TraceElapsedTime} annotation
+ *
+ * @author Paolo Di Tommaso
+ */
+@CompileStatic
+@Slf4j
+@Singleton
+@InterceptorBean(TraceElapsedTime)
+class TraceElapsedTimeInterceptor implements MethodInterceptor