ZABBIX4.0 upgrade 5.0 & ES6.1 upgrade 7.0

Upgrade plan Scope of influence: During the upgrade, the existing system will not be affected, and the system will maintain normal operation. After the upgrade, the availability test will be conducted for a period of time, and the monitoring on production will be replaced after the system is stable. Upgrade method: This upgrade adopts the blue ...

Posted by koolswans on Sun, 31 May 2020 10:01:07 -0700

ElasticSearch7.x Series IV: actual combat

catalog preface ES series installation Data synchronization How to search ES in. net code Single Index and multiple Index Single field search and full text retrieval Multiple conditions, time range + paging + highlighting end preface The first three series understand the installation and s ...

Posted by MarcAndreTalbot on Sat, 30 May 2020 23:57:21 -0700

ELK 7.X Use kiana's built-in analysis module to display icon problem records

Built a set of elk by myself 7.x Version environment found that using filebeat to collect nginx or apapche could not customize the directory log directory. If you customize the log directory, it would not be segmented. If you use the default log location, it would be segmented The solution is hereby recorded Default load path [root@kangcw e ...

Posted by phithe on Mon, 18 May 2020 09:03:04 -0700

Key Points and Common Errors in Building MySQL Log Platform Based on ELK

Part One Summary ELK is a log analysis platform that integrates distributed data storage, visual query and log resolution.ELK=elasticsearch+Logstash+kibana, each of which has its own duties, cooperates with each other to complete the data processing of the log.The main functions of each ELK component are as follows: elasticsearch, data storage ...

Posted by saviiour on Wed, 13 May 2020 11:10:51 -0700

Elasticsearch cluster installation and configuration

1 environment IP Hostname OS Version Elasticsearch Version 192.168.7.41 es-node1 Ubuntu 18.04.3 7.6.1 192.168.7.42 es-node2 Ubuntu 18.04.3 7.6.1 192.168.7.43 es-node3 Ubuntu 18.04.3 7.6.1 Disable swap and synchronize time. 2 installation steps 2.1 install elasticsearch Download path of installation package: https://mirror.tuna.tsi ...

Posted by Win32 on Sat, 09 May 2020 07:32:22 -0700

ES[7.6.x] learning notes IK Chinese word breaker

In the last section, we introduced the ES analyzer. I believe you have been impressed by the full-text search of ES. The analyzer consists of three parts: character filter, word breaker and word breaker. In the example in the previous section, we found that they are all examples of English, right? Because es is written by foreigners. If China w ...

Posted by sangoku on Thu, 07 May 2020 01:46:36 -0700

ELK Detailed Installation Deployment

1. Preface The logs mainly include system logs and application logs. Operations and developers can use the logs to understand information about hardware and software in the server, check for application or system failures, and understand the cause of the failure in order to solve the problem.Analyzing the logs gives you a clearer picture of th ...

Posted by jogisarge on Wed, 06 May 2020 21:49:08 -0700

Building elastic search 7.4.1 pseudo cluster with Docker

Cluster construction helps us to understand how the cluster works, so that we can better understand the high availability, replica fault tolerance mechanism and high performance of es. Role assignment in es Master node Parameter: node.master: true Because the real master node is elected by multiple nodes with master node qualification. Therefo ...

Posted by pea_1 on Wed, 22 Apr 2020 02:28:21 -0700

@Es problem -- too many bool conditions (1024)

Background: too many splices in boo query result in too many clauses: maxclausecount is set to 1024 { "from": 0, "size": 10, "query": { "bool": { "must": [ { "terms": { "idx_diseaseid": [ "DiseaseId_1027" ], "boost": 1 } }, ...

Posted by bdee1 on Mon, 20 Apr 2020 10:33:13 -0700

The installation and configuration of elastic search and the integrated application of spring boot

##Install elasticsearch on linux 1. Download elasticsearch Go directly to the official website of elasticsearch and download the latest installation package: https://www.elastic.co/downloads/elasticsearch, this tutorial uses version 5.1.1. 2, Install elasticsearch Upload the downloaded installation package to centos, or download it directly f ...

Posted by kkeim on Mon, 20 Apr 2020 05:56:06 -0700