com.github.kristofa.brave.http.HttpServerResponseAdapter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of brave-http Show documentation
Show all versions of brave-http Show documentation
Abstraction that makes it easier to implement brave in http clients and servers.
package com.github.kristofa.brave.http;
import com.github.kristofa.brave.KeyValueAnnotation;
import com.github.kristofa.brave.ServerResponseAdapter;
import java.util.Arrays;
import java.util.Collection;
import java.util.Collections;
public class HttpServerResponseAdapter implements ServerResponseAdapter {
private final HttpResponse response;
public HttpServerResponseAdapter(HttpResponse response)
{
this.response = response;
}
@Override
public Collection responseAnnotations() {
int httpStatus = response.getHttpStatusCode();
if ((httpStatus < 200) || (httpStatus > 299)) {
KeyValueAnnotation statusAnnotation = KeyValueAnnotation.create("http.responsecode", String.valueOf(httpStatus));
return Arrays.asList(statusAnnotation);
}
return Collections.EMPTY_LIST;
}
}