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/mitchellh/copystructure
Callum Styan 6da518c728
Update to go 1.17; go mod vendor required (#4487)
4 years ago
..
.travis.yml support math functions in line_format and label_format (#3434) 5 years ago
LICENSE support math functions in line_format and label_format (#3434) 5 years ago
README.md support math functions in line_format and label_format (#3434) 5 years ago
copier_time.go support math functions in line_format and label_format (#3434) 5 years ago
copystructure.go support math functions in line_format and label_format (#3434) 5 years ago

README.md

copystructure

copystructure is a Go library for deep copying values in Go.

This allows you to copy Go values that may contain reference values such as maps, slices, or pointers, and copy their data as well instead of just their references.

Installation

Standard go get:

$ go get github.com/mitchellh/copystructure

Usage & Example

For usage and examples see the Godoc.

The Copy function has examples associated with it there.