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

com.liveperson.faas.metriccollector.NullMetricCollector Maven / Gradle / Ivy

Go to download

Functions client for invoking lambdas via the eventsource gateway (a.k.a Asgard)

There is a newer version: 1.2.3
Show newest version
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) {

    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy