├── .github ├── dependabot.yml └── workflows │ ├── defaults.yaml │ ├── dependabot-automerge.yml │ └── pull-request.yml ├── .gitignore ├── .goreleaser.yml ├── Dockerfile ├── LICENSE ├── README.md ├── go.mod ├── go.sum ├── handler.go ├── main.go ├── timestream.go └── timestream_test.go /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpattmann/prometheus-timestream-adapter/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/defaults.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpattmann/prometheus-timestream-adapter/HEAD/.github/workflows/defaults.yaml -------------------------------------------------------------------------------- /.github/workflows/dependabot-automerge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpattmann/prometheus-timestream-adapter/HEAD/.github/workflows/dependabot-automerge.yml -------------------------------------------------------------------------------- /.github/workflows/pull-request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpattmann/prometheus-timestream-adapter/HEAD/.github/workflows/pull-request.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | dist/ 2 | -------------------------------------------------------------------------------- /.goreleaser.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpattmann/prometheus-timestream-adapter/HEAD/.goreleaser.yml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpattmann/prometheus-timestream-adapter/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpattmann/prometheus-timestream-adapter/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpattmann/prometheus-timestream-adapter/HEAD/README.md -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpattmann/prometheus-timestream-adapter/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpattmann/prometheus-timestream-adapter/HEAD/go.sum -------------------------------------------------------------------------------- /handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpattmann/prometheus-timestream-adapter/HEAD/handler.go -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpattmann/prometheus-timestream-adapter/HEAD/main.go -------------------------------------------------------------------------------- /timestream.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpattmann/prometheus-timestream-adapter/HEAD/timestream.go -------------------------------------------------------------------------------- /timestream_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpattmann/prometheus-timestream-adapter/HEAD/timestream_test.go --------------------------------------------------------------------------------