mirror of
https://github.com/grafana/loki.git
synced 2026-03-13 09:33:58 +08:00
This PR updates the Prometheus dependency in Loki and Promtail. The PR is required so that we can also update Grafana Agent to the latest Prometheus. Unfortunately, Promtail and Loki share the same go.mod file.
18 lines
348 B
Go
18 lines
348 B
Go
package spec
|
|
|
|
import (
|
|
"embed"
|
|
"path"
|
|
)
|
|
|
|
//go:embed schemas/*.json schemas/*/*.json
|
|
var assets embed.FS
|
|
|
|
func jsonschemaDraft04JSONBytes() ([]byte, error) {
|
|
return assets.ReadFile(path.Join("schemas", "jsonschema-draft-04.json"))
|
|
}
|
|
|
|
func v2SchemaJSONBytes() ([]byte, error) {
|
|
return assets.ReadFile(path.Join("schemas", "v2", "schema.json"))
|
|
}
|