Home Backend Development PHP Tutorial Use Elasticsearch in PHP to build real-time monitoring and dashboards

Use Elasticsearch in PHP to build real-time monitoring and dashboards

Oct 03, 2023 am 08:38 AM
php elasticsearch real time monitoring Keyword extraction:

PHP 中使用 Elasticsearch 构建实时监控与仪表盘

Use Elasticsearch in PHP to build real-time monitoring and dashboards

Overview:
With the rapid development of the Internet, the demand for system monitoring and real-time data analysis is increasing. Come higher and higher. Elasticsearch is a powerful open source search engine that can be used not only for full-text search, but also for real-time data storage and analysis. This article will introduce how to use PHP and Elasticsearch to build real-time monitoring and dashboards, and provide specific code examples.

Step 1: Install Elasticsearch
First, we need to install Elasticsearch. You can download the version suitable for your operating system from the Elasticsearch official website (https://www.elastic.co/downloads/elasticsearch), and install and configure it according to the official documentation. After the installation is complete, make sure the Elasticsearch service is running.

Step 2: Install the Elasticsearch PHP client library
In order to use Elasticsearch conveniently, we need to install the Elasticsearch PHP client library. You can install it using Composer, a PHP dependency management tool. You can create a composer.json file in your project root directory and add the following content:

{
    "require": {
        "elasticsearch/elasticsearch": "^7.0"
    }
}
Copy after login

Then, run the composer install command on the command line to install the Elasticsearch PHP client library.

Step Three: Connect to Elasticsearch
In your PHP code, you need to connect to the Elasticsearch instance. The following is a sample code:

<?php
require 'vendor/autoload.php';

use ElasticsearchClientBuilder;

// 连接到本地的 Elasticsearch 实例
$client = ClientBuilder::create()->setHosts(['localhost:9200'])->build();

// 检查 Elasticsearch 是否连接成功
$response = $client->ping();
if ($response) {
    echo "成功连接到 Elasticsearch.";
} else {
    echo "无法连接到 Elasticsearch.";
}
?>
Copy after login

Step 4: Create indexes and mappings
In Elasticsearch, indexes are where data is organized and stored. We need to create an index and define the index mapping (define the structure of the data). The following is a sample code:

<?php
// 创建一个索引
$params = [
    'index' => 'monitoring',
    'body' => [
        'settings' => [
            'number_of_shards' => 1,
            'number_of_replicas' => 0
        ],
        'mappings' => [
            'properties' => [
                'timestamp' => ['type' => 'date'],
                'metric' => ['type' => 'keyword'],
                'value' => ['type' => 'float']
            ]
        ]
    ]
];

// 发送请求
$response = $client->indices()->create($params);

if ($response['acknowledged']) {
    echo "索引创建成功.";
} else {
    echo "索引创建失败.";
}
?>
Copy after login

Step 5: Send monitoring data
Now, we can send monitoring data to Elasticsearch. The following is a sample code:

<?php
// 准备要发送的数据
$data = [
    'timestamp' => date('Y-m-d H:i:s'),
    'metric' => 'cpu_usage',
    'value' => 75.3
];

// 发送数据
$params = [
    'index' => 'monitoring',
    'body' => $data
];

$response = $client->index($params);

if ($response['result'] == 'created') {
    echo "数据发送成功.";
} else {
    echo "数据发送失败.";
}
?>
Copy after login

Step 6: Query and display data
Finally, we can query the data from Elasticsearch and display the monitoring data on the web page. Here is a sample code:

<?php
// 查询最近一小时的监控数据
$params = [
    'index' => 'monitoring',
    'body' => [
        'query' => [
            'range' => [
                'timestamp' => [
                    'gte' => 'now-1h'
                ]
            ]
        ],
        'sort' => [
            'timestamp' => 'asc'
        ]
    ]
];

$response = $client->search($params);

// 处理查询结果
if (isset($response['hits']['hits'])) {
    foreach ($response['hits']['hits'] as $hit) {
        echo "时间:" . $hit['_source']['timestamp'] . ", ";
        echo "指标:" . $hit['_source']['metric'] . ", ";
        echo "值:" . $hit['_source']['value'] . "<br>";
    }
} else {
    echo "未找到监控数据.";
}
?>
Copy after login

Summary:
This article introduces how to use PHP and Elasticsearch to build real-time monitoring and dashboards. By installing Elasticsearch and the Elasticsearch PHP client library, connecting to Elasticsearch, creating indexes and mappings, sending monitoring data, and querying and displaying the data, we can easily build a powerful real-time monitoring system. I hope this article will help you understand how to use Elasticsearch in PHP to build real-time monitoring and dashboards.

The above is the detailed content of Use Elasticsearch in PHP to build real-time monitoring and dashboards. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Two Point Museum: All Exhibits And Where To Find Them
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

CakePHP Project Configuration CakePHP Project Configuration Sep 10, 2024 pm 05:25 PM

In this chapter, we will understand the Environment Variables, General Configuration, Database Configuration and Email Configuration in CakePHP.

PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian Dec 24, 2024 pm 04:42 PM

PHP 8.4 brings several new features, security improvements, and performance improvements with healthy amounts of feature deprecations and removals. This guide explains how to install PHP 8.4 or upgrade to PHP 8.4 on Ubuntu, Debian, or their derivati

CakePHP Date and Time CakePHP Date and Time Sep 10, 2024 pm 05:27 PM

To work with date and time in cakephp4, we are going to make use of the available FrozenTime class.

CakePHP File upload CakePHP File upload Sep 10, 2024 pm 05:27 PM

To work on file upload we are going to use the form helper. Here, is an example for file upload.

CakePHP Routing CakePHP Routing Sep 10, 2024 pm 05:25 PM

In this chapter, we are going to learn the following topics related to routing ?

Discuss CakePHP Discuss CakePHP Sep 10, 2024 pm 05:28 PM

CakePHP is an open-source framework for PHP. It is intended to make developing, deploying and maintaining applications much easier. CakePHP is based on a MVC-like architecture that is both powerful and easy to grasp. Models, Views, and Controllers gu

CakePHP Creating Validators CakePHP Creating Validators Sep 10, 2024 pm 05:26 PM

Validator can be created by adding the following two lines in the controller.

CakePHP Working with Database CakePHP Working with Database Sep 10, 2024 pm 05:25 PM

Working with database in CakePHP is very easy. We will understand the CRUD (Create, Read, Update, Delete) operations in this chapter.

See all articles