-
Hello, I'm trying to make my configuration of vector that would contains the following. I want to use the Should result into this I have enable the Source:
Sink:
|
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 8 replies
-
Preserving discord discussion here: piclem — 11:44 Pavlos — 11:45
Sample from https://vector.dev/blog/log-namespacing/ Namespace feature guide: https://vector.dev/guides/level-up/log_namespace/ |
Beta Was this translation helpful? Give feedback.
-
Ok, weird things. I'm adding a field to the given event.
this appears after i'm doing a "log" but when I look at the sink result in |
Beta Was this translation helpful? Give feedback.
You are hitting the following:
vector/src/sinks/splunk_hec/logs/sink.rs
Lines 298 to 300 in 34db5b0
This means your timestamp value is not
Value::Timestap
, it is a string as shown in the sample log above"timestamp":"2025-05-21T13:53:41.771Z"
.See example on how to convert timestamp string: example.
This is covered in the VRL introduction page: https://vector.dev/docs/reference/vrl/.