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
Peter Štibraný e4a5360586
Update vendored Cortex to master (1.1+) (#2149)
5 years ago
..
CHANGES.md Update vendored Cortex to master (1.1+) (#2149) 5 years ago
LICENSE loki: use new runtimeconfig package from Cortex (#1484) 5 years ago
README.md dep => go mod (#1062) 6 years ago
acl.go all: update dependencies (#211) 6 years ago
bucket.go Update vendored Cortex to master (1.1+) (#2149) 5 years ago
copy.go all: update dependencies (#211) 6 years ago
doc.go Update vendored Cortex to master (1.1+) (#2149) 5 years ago
go.mod Update vendored Cortex to master (1.1+) (#2149) 5 years ago
go.sum Update vendored Cortex to master (1.1+) (#2149) 5 years ago
go110.go all: update dependencies (#211) 6 years ago
go_mod_tidy_hack.go loki: use new runtimeconfig package from Cortex (#1484) 5 years ago
hmac.go loki: use new runtimeconfig package from Cortex (#1484) 5 years ago
iam.go Update vendored Cortex to master (1.1+) (#2149) 5 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 loki: use new runtimeconfig package from Cortex (#1484) 5 years ago
storage.go Update vendored Cortex to master (1.1+) (#2149) 5 years ago
storage.replay dep => go mod (#1062) 6 years ago
writer.go loki: use new runtimeconfig package from Cortex (#1484) 5 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)
}