com.liveperson.faas.metriccollector.NullMetricCollector Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of functions-client Show documentation
Show all versions of functions-client Show documentation
Functions client for invoking lambdas via the eventsource gateway (a.k.a Asgard)
package com.liveperson.faas.metriccollector;
public class NullMetricCollector implements MetricCollector {
@Override
public void onInvokeByEventSuccess(String externalSystem, double requestDurationInSec, String event,
String accountId) {
}
@Override
public void onInvokeByEventFailure(String externalSystem, double requestDurationInSec, String event,
String accountId, int statusCode, Exception ex) {
}
@Override
public void onInvokeByUUIDSuccess(String externalSystem, double requestDurationInSec, String UUID,
String accountId) {
}
@Override
public void onInvokeByUUIDFailure(String externalSystem, double requestDurationInSec, String UUID,
String accountId, int statusCode, Exception ex) {
}
@Override
public void onGetLambdasSuccess(String userId, double requestDurationInSec, String accountId) {
}
@Override
public void onGetLambdasFailure(String userId, double requestDurationInSec, String accountId,
int statusCode, Exception ex) {
}
@Override
public void onIsImplementedSuccess(String externalSystem, double requestDurationInSc, String event,
String accountId) {
}
@Override
public void onIsImplementedFailure(String externalSystem, double requestDurationInSc, String event,
String accountId, int statusCode, Exception ex) {
}
}