Hello,
I've got some duplicated items in logstash which I want to get rid of in the future with implementing the fingerprint filter.
I've seen an example here - Logstash Duplicate message
which says:
filter {
uuid {
target => "@uuid"
overwrite => true
}
fingerprint {
source => ["message"]
target => "fingerprint"
key => "78787878"
method => "SHA1"
concatenate_sources => true
}
What I'm not sure is what is that key? Should it be random, and do I have to place it. Would this exmaple help me with this?
Thanks