|
| 1 | +/* |
| 2 | + * Copyright The Hypertrace Authors |
| 3 | + * |
| 4 | + * Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | + * you may not use this file except in compliance with the License. |
| 6 | + * You may obtain a copy of the License at |
| 7 | + * |
| 8 | + * http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | + * |
| 10 | + * Unless required by applicable law or agreed to in writing, software |
| 11 | + * distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | + * See the License for the specific language governing permissions and |
| 14 | + * limitations under the License. |
| 15 | + */ |
| 16 | + |
| 17 | +package io.opentelemetry.javaagent.instrumentation.hypertrace.utils; |
| 18 | + |
| 19 | +import java.net.URI; |
| 20 | +import java.net.URL; |
| 21 | +import java.util.ArrayList; |
| 22 | +import java.util.HashMap; |
| 23 | +import java.util.List; |
| 24 | +import java.util.Map; |
| 25 | +import java.util.function.BiConsumer; |
| 26 | +import javax.servlet.http.HttpServletRequest; |
| 27 | +import org.slf4j.Logger; |
| 28 | +import org.slf4j.LoggerFactory; |
| 29 | + |
| 30 | +/** Contains static utility methods for Spans. */ |
| 31 | +public abstract class SpanUtils { |
| 32 | + |
| 33 | + static final String HTTP_URL_ATTRIBUTE_KEY = "http.url"; |
| 34 | + private static final Logger logger = LoggerFactory.getLogger(SpanUtils.class); |
| 35 | + |
| 36 | + /** |
| 37 | + * A List of BiConsumer implementations, each of which takes an HttpServletRequest and creates an |
| 38 | + * attribute that may be missing from the Span. |
| 39 | + */ |
| 40 | + private static final List<BiConsumer<HttpServletRequest, Map<String, String>>> |
| 41 | + MISSING_ATTRIBUTE_PROVIDERS_WITH_REQUEST = initMissingAttributeProvidersWithRequest(); |
| 42 | + |
| 43 | + /** |
| 44 | + * A List of BiConsumer implementations, each of which takes a URI and creates an attribute that |
| 45 | + * may be missing from the Span. |
| 46 | + */ |
| 47 | + private static final List<BiConsumer<String, Map<String, String>>> |
| 48 | + MISSING_ATTRIBUTE_PROVIDERS_WITH_URI = initMissingAttributeProvidersWithURI(); |
| 49 | + |
| 50 | + private static List<BiConsumer<HttpServletRequest, Map<String, String>>> |
| 51 | + initMissingAttributeProvidersWithRequest() { |
| 52 | + List<BiConsumer<HttpServletRequest, Map<String, String>>> returnList = new ArrayList<>(); |
| 53 | + |
| 54 | + returnList.add(SpanUtils::addHttpURLAttributeToSpanFromRequest); |
| 55 | + return returnList; |
| 56 | + } |
| 57 | + |
| 58 | + private static List<BiConsumer<String, Map<String, String>>> |
| 59 | + initMissingAttributeProvidersWithURI() { |
| 60 | + List<BiConsumer<String, Map<String, String>>> returnList = new ArrayList<>(); |
| 61 | + |
| 62 | + returnList.add(SpanUtils::addHttpURLAttributeToSpanFromURI); |
| 63 | + return returnList; |
| 64 | + } |
| 65 | + |
| 66 | + /** |
| 67 | + * Returns a Map of attributes, each of which represents an attribute that may be missing from the |
| 68 | + * Span. |
| 69 | + * |
| 70 | + * <p>Note that the Span itself is not an argument: the Span attributes cannot be accessed to |
| 71 | + * determine if the attributes being built here are required. They are built unconditionally; they |
| 72 | + * must be compared to the Span attributes at a later stage, when the existing Span attributes can |
| 73 | + * be accessed. |
| 74 | + * |
| 75 | + * @param servletRequest The HttpServletRequest, which is used to build the (possibly) missing |
| 76 | + * attributes. |
| 77 | + * @return |
| 78 | + */ |
| 79 | + public static Map<String, String> getPossiblyMissingSpanAttributes( |
| 80 | + HttpServletRequest servletRequest) { |
| 81 | + Map<String, String> returnMap = new HashMap<>(); |
| 82 | + |
| 83 | + for (BiConsumer<HttpServletRequest, Map<String, String>> nextMissingAttrConsumer : |
| 84 | + MISSING_ATTRIBUTE_PROVIDERS_WITH_REQUEST) { |
| 85 | + nextMissingAttrConsumer.accept(servletRequest, returnMap); |
| 86 | + } |
| 87 | + |
| 88 | + return returnMap; |
| 89 | + } |
| 90 | + |
| 91 | + /** |
| 92 | + * Returns a Map of attributes, each of which represents an attribute that may be missing from the |
| 93 | + * Span. |
| 94 | + * |
| 95 | + * <p>Note that the Span itself is not an argument: the Span attributes cannot be accessed to |
| 96 | + * determine if the attributes being built here are required. They are built unconditionally; they |
| 97 | + * must be compared to the Span attributes at a later stage, when the existing Span attributes can |
| 98 | + * be accessed. |
| 99 | + * |
| 100 | + * @param uri A String containing the URI, which is used to build the (possibly) missing |
| 101 | + * attributes. |
| 102 | + * @return |
| 103 | + */ |
| 104 | + public static Map<String, String> getPossiblyMissingSpanAttributesFromURI(String uri) { |
| 105 | + Map<String, String> returnMap = new HashMap<>(); |
| 106 | + for (BiConsumer<String, Map<String, String>> nextMissingAttrConsumer : |
| 107 | + MISSING_ATTRIBUTE_PROVIDERS_WITH_URI) { |
| 108 | + nextMissingAttrConsumer.accept(uri, returnMap); |
| 109 | + } |
| 110 | + |
| 111 | + return returnMap; |
| 112 | + } |
| 113 | + |
| 114 | + /** |
| 115 | + * Builds an "http.url" attribute from the HttpServletRequest |
| 116 | + * |
| 117 | + * @param servletRequest |
| 118 | + * @param newAttrMap |
| 119 | + */ |
| 120 | + private static void addHttpURLAttributeToSpanFromRequest( |
| 121 | + HttpServletRequest servletRequest, Map<String, String> newAttrMap) { |
| 122 | + |
| 123 | + newAttrMap.put(HTTP_URL_ATTRIBUTE_KEY, servletRequest.getRequestURL().toString()); |
| 124 | + } |
| 125 | + |
| 126 | + /** |
| 127 | + * Builds an "http.url" attribute from the URI |
| 128 | + * |
| 129 | + * @param uriAsString |
| 130 | + * @param newAttrMap |
| 131 | + */ |
| 132 | + private static void addHttpURLAttributeToSpanFromURI( |
| 133 | + String uriAsString, Map<String, String> newAttrMap) { |
| 134 | + try { |
| 135 | + URI uri = new URI(uriAsString); |
| 136 | + URL url = uri.toURL(); |
| 137 | + newAttrMap.put(HTTP_URL_ATTRIBUTE_KEY, url.toString()); |
| 138 | + } catch (Exception e) { |
| 139 | + logger.error("Unable to add URL to Span: {}", e.toString()); |
| 140 | + } |
| 141 | + } |
| 142 | +} |
0 commit comments