Saving All Query Result to File with Bash Script with Scroll API
The logs kept on Apinizer may need to be transferred to other environments or examined using other products.
In such cases, it is necessary to query the data kept in Apinizer Log database ElasticSearch and save it to the file. Due to the structure of Elastic Search, more than 1000 records are not returned to the queries made.
In cases where the total number of records exceeds 1000, it is necessary to query with the Scroll API.
This process should be done in a loop, as the result coming with the Scroll API may need to be processed and querying again.
You can find the implementation of this loop with Linux Script below.
Prerequisite: JQ(Json Processor) Installation
The JQ package must be installed on the server for Bash Script to work properly.
You can follow the steps below for this setup:
1.Install the EPEL repository
2.Update your server
3.Install the jq(JSON Processor) tool
Scrolling Script
The script below should be saved in a directory with the name script.sh and made executable with the chmod 777 command.
Example Query
The following query needs to be saved in the same directory as the script.sh file with the name query.json.
Since this query needs to be sent to Apinizer ElasticSearch, the requested address and index name must be corrected according to your environment.
You can visit this page to see what the fields in this query mean.
Running the Script
What you need to do for this is to write ./script.sh from the script.
After that, information notes will start to appear as below, and the results will accumulate in the result.json file.
