Skip to content

frgrisk/cloudwatch

 
 

Repository files navigation

This is a Go library to treat CloudWatch Log streams as io.Writers and io.Readers.

Usage

group := NewGroup("group", cloudwatchlogs.New(defaults.DefaultConfig))
w, err := group.Create("stream")

io.WriteString(w, "Hello World")

r, err := group.Open("stream")
io.Copy(os.Stdout, r)

Dependencies

This library depends on aws-sdk-go.

About

Treat cloudwatch log streams as io.Reader and io.Writers.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Go 100.0%