Skip to content
This repository has been archived by the owner on Dec 19, 2023. It is now read-only.

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

License

Notifications You must be signed in to change notification settings

deliveroo/cloudwatch-go

 
 

Repository files navigation

cloudwatch

Godoc CircleCI Go Report Card codecov

This is a fork of this library which allows treating CloudWatch Log streams as io.WriterClosers and io.Readers.

Usage

session := session.Must(session.NewSession(nil))
group := NewGroup(cloudwatchlogs.New(session), "groupName")
w, err := group.Create("streamName")

io.WriteString(w, "Hello World")

r, err := group.Open("streamName")
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%