com.undefinedlabs.scope.rules.UrlConnectionScopeUtils Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of scope-rule-javanet Show documentation
Show all versions of scope-rule-javanet Show documentation
Scope is a APM for tests to give engineering teams unprecedented visibility into their CI process to quickly
identify, troubleshoot and fix failed builds.
This artifact contains the classes to instrument the Java NET package.
package com.undefinedlabs.scope.rules;
import java.util.Map;
import java.util.concurrent.ConcurrentHashMap;
public class UrlConnectionScopeUtils {
public static final String SCOPE_OPEN_CONNECTION_CUUID_KEY = "scope_op_urlconn_uuid";
private static final Map SPAN_BY_UUID = new ConcurrentHashMap<>();
public static Map getSpanByUuid() {
return SPAN_BY_UUID;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy