Hello Splunk Community,
We are currently using Splunk Enterprise 9.1.5 and DB Connect 3.7 to collect data from a Snowflake database view. The view returns data correctly when queried directly via SQL.
Here are the specifics of our setup and the issue we're encountering:
We identified the issue. Startdate is a timestamp_NTZ (no time zone) so UTC. The config was set to Eastern-time zone. once it was adjusted it worked perfectly. Simple mis-config. Took a while to identify the issue thought. thanks for your input.
Missing data makes me immediately think of two things and one is much easier to find and fix.
1) Bad time ingestions
index=_introspection
| eval latency=abs(_indextime-_time)
| table _time _indextime latency
| sort - latency
| head 15
Try sorting both - (descending) and + (increasing), this will help point out anything that is ingesting with bad time formatting causing the data to appear as missing.
2) Skipping events
You would need to dig through your HF internal logging to check for full queues or max transmit violations.
Give that a start.