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/cloud.google.com/go/storage
Joe Elliott a48230d343 Reverted cloud.google.com/go to 0.44.1 (#1097) 6 years ago
..
README.md dep => go mod (#1062) 6 years ago
acl.go all: update dependencies (#211) 6 years ago
bucket.go Reverted cloud.google.com/go to 0.44.1 (#1097) 6 years ago
copy.go all: update dependencies (#211) 6 years ago
doc.go dep => go mod (#1062) 6 years ago
go110.go all: update dependencies (#211) 6 years ago
hmac.go Reverted cloud.google.com/go to 0.44.1 (#1097) 6 years ago
iam.go all: update dependencies (#211) 6 years ago
invoke.go dep => go mod (#1062) 6 years ago
not_go110.go all: update dependencies (#211) 6 years ago
notifications.go all: update dependencies (#211) 6 years ago
reader.go Reverted cloud.google.com/go to 0.44.1 (#1097) 6 years ago
storage.go Reverted cloud.google.com/go to 0.44.1 (#1097) 6 years ago
storage.replay dep => go mod (#1062) 6 years ago
writer.go Reverted cloud.google.com/go to 0.44.1 (#1097) 6 years ago

README.md

Cloud Storage GoDoc

Example Usage

First create a storage.Client to use throughout your application:

client, err := storage.NewClient(ctx)
if err != nil {
	log.Fatal(err)
}
// Read the object1 from bucket.
rc, err := client.Bucket("bucket").Object("object1").NewReader(ctx)
if err != nil {
	log.Fatal(err)
}
defer rc.Close()
body, err := ioutil.ReadAll(rc)
if err != nil {
	log.Fatal(err)
}