requestCounter.increment();
// invoke service through Hystrix
HystrixCommand<String> getCommand = new AddLogCommand(key, log);
Future<String> future = getCommand.queue();
String responseString = future.get();
// increment the fallback counter if the response came from a
// fallback