├── .github ├── FUNDING.yml └── workflows │ └── go.yml ├── .gitignore ├── LICENSE ├── README.md └── filter-prometheus.go /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: [poolpOrg] 2 | patreon: gilles 3 | -------------------------------------------------------------------------------- /.github/workflows/go.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poolpOrg/filter-prometheus/HEAD/.github/workflows/go.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | filter-prometheus 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poolpOrg/filter-prometheus/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poolpOrg/filter-prometheus/HEAD/README.md -------------------------------------------------------------------------------- /filter-prometheus.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poolpOrg/filter-prometheus/HEAD/filter-prometheus.go --------------------------------------------------------------------------------