I am currently logging something into Librato metrics in my c# code as below:
// need to install librato4net nuget package
MetricsPublisher.Current.Increment("metricsName");
Now, I want to create a lambda function on Amazon Web service which will periodically do the same thing. But I am not able to figure out how to reference librato in the lambda function. Is it even possible?