Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/codeboten/hnylambda

Contains packages used to wrap AWS Lambda functions with Honeycomb tracing
https://github.com/codeboten/hnylambda

Last synced: 25 days ago
JSON representation

Contains packages used to wrap AWS Lambda functions with Honeycomb tracing

Awesome Lists containing this project

README

        

# hnylambda
Simple wrapper for AWS Lambda's using Honeycomb

## Usage
```golang
beeline.Init(beeline.Config{
WriteKey: os.Getenv("HONEYCOMB_KEY"),
Dataset: os.Getenv("HONEYCOMB_DATASET"),
})
lambda.Start(hnylambda.Middleware(Handler))
```

Full example code available in example.go