- Advanced Splunk
- Ashish Kumar Tulsiram Yadav
- 251字
- 2021-07-02 16:36:01
Data integrity control
Splunk has now come up with the data integrity managing feature in its latest version 6.3. It provides a way to verify the integrity of data that is indexed over Splunk. On enabling this feature, Splunk computes hashes on every slice of uploaded data and stores those hashes so that they can be used to verify the integrity of the data. It is a very useful feature where the logs are from sources such as bank transactions and other critical data where an integrity check is necessary.
On enabling this feature, Splunk computes hashes on every slice of newly indexed raw data and writes it to an l1Hashes
file. When the bucket rolls from one bucket to another, say from hot to warm, Splunk computes the hash of contents of the l1Hashes
file and stores it into the l2Hash
file.
Hash validation can be done on Splunk's data by running the following CLI command:
./splunk check-integrity -bucketPath [ bucket path ] [ verbose ] ./splunk check-integrity -index [ index name ] [ verbose ]
In case hashes are lost, they can be regenerated using the following commands:
./splunk generate-hash-files -bucketPath [ bucket path ] [ verbose ] ./splunk generate-hash-files -index [ index name ] [ verbose ]
Let's now configure data integrity control. To configure data integrity control, modify the indexes.conf
file located at $SPLUNK_HOME\etc\system\local
as follows:
enableDataIntegrityControl=true
- 流量的秘密:Google Analytics網站分析與優化技巧(第2版)
- ClickHouse性能之巔:從架構設計解讀性能之謎
- Spring技術內幕:深入解析Spring架構與設計
- Learning Elixir
- EPLAN實戰設計
- Getting Started with Laravel 4
- Java程序設計入門
- Mastering Business Intelligence with MicroStrategy
- Building Android UIs with Custom Views
- Learning Continuous Integration with TeamCity
- Mastering Git
- Java語言程序設計教程
- Unity 2018 Augmented Reality Projects
- SignalR:Real-time Application Development(Second Edition)
- C#程序設計基礎入門教程