Like Prometheus, but for logs.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
loki/vendor/github.com/aws/aws-lambda-go/events/README_CodeBuild.md

278 B

Sample Function

The following is a sample Lambda function that receives an Amazon CodeBuild event and writes it to standard output.

import (
    "fmt"
    "github.com/aws/aws-lambda-go/events"
)

func handleRequest(evt events.CodeBuildEvent) {
	fmt.Println(evt)
}