gitextract_3xj95wis/ ├── .circleci/ │ └── config.yml ├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── composer.json ├── docker-compose.yml ├── examples/ │ ├── flush_adapter.php │ ├── metrics.php │ ├── pushgateway.php │ ├── some_counter.php │ ├── some_gauge.php │ └── some_histogram.php ├── nginx/ │ ├── Dockerfile │ ├── default.conf │ └── nginx.conf ├── php-fpm/ │ ├── Dockerfile │ ├── docker-php-ext-apcu-cli.ini │ └── www.conf ├── phpcs.xml.dist ├── phpunit.xml.dist ├── src/ │ └── Prometheus/ │ ├── Collector.php │ ├── CollectorRegistry.php │ ├── Counter.php │ ├── Exception/ │ │ ├── MetricNotFoundException.php │ │ ├── MetricsRegistrationException.php │ │ └── StorageException.php │ ├── Gauge.php │ ├── Histogram.php │ ├── MetricFamilySamples.php │ ├── PushGateway.php │ ├── RenderTextFormat.php │ ├── Sample.php │ └── Storage/ │ ├── APC.php │ ├── Adapter.php │ ├── InMemory.php │ └── Redis.php └── tests/ ├── Test/ │ ├── BlackBoxPushGatewayTest.php │ ├── BlackBoxTest.php │ └── Prometheus/ │ ├── APC/ │ │ ├── CollectorRegistryTest.php │ │ ├── CounterTest.php │ │ ├── GaugeTest.php │ │ └── HistogramTest.php │ ├── AbstractCollectorRegistryTest.php │ ├── AbstractCounterTest.php │ ├── AbstractGaugeTest.php │ ├── AbstractHistogramTest.php │ ├── InMemory/ │ │ ├── CollectorRegistryTest.php │ │ ├── CounterTest.php │ │ ├── GaugeTest.php │ │ └── HistogramTest.php │ ├── PushGatewayTest.php │ ├── Redis/ │ │ ├── CollectorRegistryTest.php │ │ ├── CounterTest.php │ │ ├── CounterWithPrefixTest.php │ │ ├── GaugeTest.php │ │ ├── GaugeWithPrefixTest.php │ │ ├── HistogramTest.php │ │ └── HistogramWithPrefixTest.php │ └── Storage/ │ └── RedisTest.php └── bootstrap.php