├── .github ├── FUNDING.yml └── workflows │ ├── jekyll-gh-pages.yml │ └── main.yml ├── .gitignore ├── .php-cs-fixer.dist.php ├── LICENSE ├── NOTICE ├── README.md ├── composer.json ├── docs ├── danog │ └── BetterPrometheus │ │ ├── BetterCollector.md │ │ ├── BetterCollectorRegistry.md │ │ ├── BetterCounter.md │ │ ├── BetterGauge.md │ │ ├── BetterHistogram.md │ │ └── BetterSummary.md └── index.md ├── examples └── 1-all.php ├── lib ├── BetterCollector.php ├── BetterCollectorRegistry.php ├── BetterCounter.php ├── BetterGauge.php ├── BetterHistogram.php └── BetterSummary.php └── psalm.xml /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: danog 2 | -------------------------------------------------------------------------------- /.github/workflows/jekyll-gh-pages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danog/better-prometheus/HEAD/.github/workflows/jekyll-gh-pages.yml -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danog/better-prometheus/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danog/better-prometheus/HEAD/.gitignore -------------------------------------------------------------------------------- /.php-cs-fixer.dist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danog/better-prometheus/HEAD/.php-cs-fixer.dist.php -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danog/better-prometheus/HEAD/LICENSE -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danog/better-prometheus/HEAD/NOTICE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danog/better-prometheus/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danog/better-prometheus/HEAD/composer.json -------------------------------------------------------------------------------- /docs/danog/BetterPrometheus/BetterCollector.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danog/better-prometheus/HEAD/docs/danog/BetterPrometheus/BetterCollector.md -------------------------------------------------------------------------------- /docs/danog/BetterPrometheus/BetterCollectorRegistry.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danog/better-prometheus/HEAD/docs/danog/BetterPrometheus/BetterCollectorRegistry.md -------------------------------------------------------------------------------- /docs/danog/BetterPrometheus/BetterCounter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danog/better-prometheus/HEAD/docs/danog/BetterPrometheus/BetterCounter.md -------------------------------------------------------------------------------- /docs/danog/BetterPrometheus/BetterGauge.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danog/better-prometheus/HEAD/docs/danog/BetterPrometheus/BetterGauge.md -------------------------------------------------------------------------------- /docs/danog/BetterPrometheus/BetterHistogram.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danog/better-prometheus/HEAD/docs/danog/BetterPrometheus/BetterHistogram.md -------------------------------------------------------------------------------- /docs/danog/BetterPrometheus/BetterSummary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danog/better-prometheus/HEAD/docs/danog/BetterPrometheus/BetterSummary.md -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danog/better-prometheus/HEAD/docs/index.md -------------------------------------------------------------------------------- /examples/1-all.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danog/better-prometheus/HEAD/examples/1-all.php -------------------------------------------------------------------------------- /lib/BetterCollector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danog/better-prometheus/HEAD/lib/BetterCollector.php -------------------------------------------------------------------------------- /lib/BetterCollectorRegistry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danog/better-prometheus/HEAD/lib/BetterCollectorRegistry.php -------------------------------------------------------------------------------- /lib/BetterCounter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danog/better-prometheus/HEAD/lib/BetterCounter.php -------------------------------------------------------------------------------- /lib/BetterGauge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danog/better-prometheus/HEAD/lib/BetterGauge.php -------------------------------------------------------------------------------- /lib/BetterHistogram.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danog/better-prometheus/HEAD/lib/BetterHistogram.php -------------------------------------------------------------------------------- /lib/BetterSummary.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danog/better-prometheus/HEAD/lib/BetterSummary.php -------------------------------------------------------------------------------- /psalm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danog/better-prometheus/HEAD/psalm.xml --------------------------------------------------------------------------------