要在 PHP 應用中部署 Prometheus,您需要遵循以下步驟:
首先,您需要在服務器上安裝 Prometheus。請訪問 Prometheus 官方網站 并根據您的操作系統下載相應的安裝包。然后按照提供的說明進行安裝。
為了從 PHP 應用收集指標,您需要使用一個 Prometheus 客戶端庫。一個流行的選擇是 promphp/prometheus_client_php。要安裝這個庫,您可以使用 Composer:
composer require promphp/prometheus_client_php
在您的 PHP 應用中,您需要設置一個路由(例如 /metrics
),該路由將返回 Prometheus 格式的指標數據。以下是一個簡單的示例:
<?php
require 'vendor/autoload.php';
use Prometheus\CollectorRegistry;
use Prometheus\RenderTextFormat;
use Prometheus\Storage\InMemory;
use Prometheus\Storage\Redis;
$adapter = new InMemory(); // 或者使用 Redis 適配器,如果您希望在多個實例之間共享指標
$registry = new CollectorRegistry($adapter);
// 創建一個計數器以跟蹤請求次數
$counter = $registry->registerCounter('my_app', 'requests_total', 'Total number of requests');
$counter->inc();
// 返回 Prometheus 格式的指標數據
header('Content-Type: text/plain; version=0.0.4');
echo (new RenderTextFormat())->render($registry->getMetricFamilySamples());
接下來,您需要配置 Prometheus 以從您的 PHP 應用收集指標。編輯 Prometheus 的配置文件(通常位于 /etc/prometheus/prometheus.yml
),并添加一個新的 scrape_config
條目,指向您的 PHP 應用的 /metrics
路由:
scrape_configs:
- job_name: 'my_php_app'
static_configs:
- targets: ['your-php-app.com:9090'] # 替換為您的 PHP 應用的實際地址和端口
確保 Prometheus 正在運行,并加載了新的配置。您可以使用以下命令啟動 Prometheus:
prometheus --config.file=/etc/prometheus/prometheus.yml
現在,您可以在 Prometheus 的 Web 界面中查看您的 PHP 應用的指標。默認情況下,Prometheus 會在 http://localhost:9090
上運行。轉到 “Graph” 頁面,然后在 “expression” 輸入框中輸入您的指標名稱(例如 my_app_requests_total
),以查看和監控您的 PHP 應用的性能指標。
為了更好地可視化和分析您的指標,您可以將 Prometheus 與 Grafana 集成。Grafana 是一個流行的開源儀表板和圖形顯示平臺,可以輕松地展示 Prometheus 收集的數據。請訪問 Grafana 官方網站 下載并安裝 Grafana,然后按照 官方文檔 配置 Prometheus 作為數據源。