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

com.datadoghq.trace.integration.ErrorFlag 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 io.opentracing.tag.Tags;

public class ErrorFlag extends DDSpanContextDecorator {

	public ErrorFlag() {
		super();
		this.setMatchingTag(Tags.DB_STATEMENT.getKey());
	}
	
	@Override
	public boolean afterSetTag(DDSpanContext context, String tag, Object value) {
		//Assign resource name
		try{
			context.setErrorFlag(Boolean.parseBoolean(String.valueOf(value)));
		}catch(Throwable t){
			//DO NOTHING
		}
		return true;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy