Skip to content

Latest commit

 

History

History
29 lines (25 loc) · 795 Bytes

File metadata and controls

29 lines (25 loc) · 795 Bytes
date 2020-07-13
title The `splunk_hec` sink does not index fields by default
description This gives you full control over which fields are indexed
authors
binarylogic
pr_numbers
1537
release 0.7.0
hide_on_release_notes false
badges
type domains sinks
breaking change
sinks
splunk_hec

There is no longer a distinction within Vector between explicit and implicit event fields. All fields are now implicit and therefore the splunk_hec sink will not index any fields by default.

Upgrade Guide

In order to mark desired fields as indexed you can use the optional configuration option indexed_fields:

 [sinks.my_sink_id]
   type = "splunk_hec"
   inputs = ["my-source-id"]
+  indexed_fields = ["foo", "bar"]