// increment request counter
requestCounter.increment();
// invoke service through Hystrix
HystrixCommand<String> getCommand = new GetLogsCommand(key);
Future<String> future = getCommand.queue();
String responseString = future.get();
// increment the fallback counter if the response came from a
// fallback
// TODO: this isn't needed as the hystrix framework exports its own