All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.datadoghq.trace.integration.URLAsResourceName Maven / Gradle / Ivy

There is a newer version: 0.2.12
Show newest version
package com.datadoghq.trace.integration;

import com.datadoghq.trace.DDSpanContext;
import com.datadoghq.trace.DDTags;
import io.opentracing.tag.Tags;

import java.net.MalformedURLException;

public class URLAsResourceName extends DDSpanContextDecorator {

	public URLAsResourceName() {
		super();
		this.setMatchingTag(Tags.HTTP_URL.getKey());
		this.setSetTag(DDTags.RESOURCE_NAME);
	}

	@Override
	public boolean afterSetTag(DDSpanContext context, String tag, Object value) {
		//Assign resource name
		try {
			String path = new java.net.URL(String.valueOf(value)).getPath();
			context.setResourceName(path);
		} catch (MalformedURLException e) {
			context.setResourceName(String.valueOf(value));
		}
		return true;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy