Index Management in Logsign

Introduction

This article will provide information about the Elasticsearch service and index management.

Elasticsearch

Elasticsearch is a database service that works in a NoSQL structure and provides full-text search support.

It is important that Elasticsearch provides fast and stable results in the large data it stores. Instead of searching the queries we run in the text, it searches in the blocks inside the index, providing faster results within seconds.

How Logsign Search Works?

When a log is transferred to Elasticsearch, the data is indexed with the Apache Lucene infrastructure. During the transfer process, Elasticsearch indexes which document (row) the log is stored in. Thus, when we run a query, instead of searching for the query in all indexes, it searches only the related logs in the address, allowing for faster results and more effective use of server hardware.

Documents are indexed as JSON (JavaScript Object Notation).

Let's explain with an example query.

When you call a query with Source.UserName:umit.gunes, the stages shown in the picture below occur.

1.jpeg

 

Logsign creates new indexes with the name log_YYYYMMDD for your logs with 24-hour cycles and stores the logs collected during the day in these indexes.

2.png

 

Your indexes are stored for the number of days specified in the Delete Live Report Before configuration in the Data Retention panel, and the indexes outside the specified day are deleted.

3.png

 

Index Policy

The configurations in the Index Policy panel are used to define the shard and replica numbers. Our logs, which are stored as JSON in Elasticsearch indexes, are located in the shards. If you are using a cluster structure, you will see shards configured in your system as 6 or more.

When your shards increase with the increase in your logs and the slow response of your queries, and the shard size reaches an average of 25GB, the process of increasing the number of shards is carried out. You can see the effects of this process in the next index formation.

4.png

 

Index Management

It is recommended to close our indexes when you apply a Logsign update or routine restart of the Logsign server.

You can use the following command on the Logsign server for this process.

AllinOne Logsign:

curl -XPOST 'http://localhost:9200/log_*/_close'

5.png

If you are using Cluster Logsign, you need to update it with the internal interface address or hostname.

curl -XPOST 'http://2.2.2.2:9200/log_*/_close'

6.png

 

To open the indexes after the update process is completed, you can use the following command.

AllinOne Logsign:

curl -XPOST 'http://localhost:9200/log_*/_open'

7.png

Cluster Logsign:

8.png

Was this article helpful?
0 out of 0 found this helpful

Articles in this section

See more
Become a Certified Logsign User/Administrator
Sign-up for Logsign Academy and take the courses to learn about Logsign USO Platform in detail. Enjoy the courses, and get your badges and certificates. In these courses, you'll learn how to use Logsign in your work and add value to your career.
Visit Our Blog
Our Logsign USO Platform illustrate our expertise. So do the blog. Through our blog posts, deepen your knowledge on various SecOps topics or get updated about important news & modern approaches for cybersecurity. Get into the habit of reading valuable information provided by Logsign. Be a step ahead.