Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/codeboten/hnylambda
- Owner: codeboten
- Created: 2018-10-18T04:29:09.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2018-10-20T06:19:52.000Z (over 6 years ago)
- Last Synced: 2024-11-07T19:49:36.358Z (3 months ago)
- Language: Go
- Size: 1.95 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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