Deployment Architecture

rogue events not going to proper index

ralphw_SAIC
Path Finder

I just moved all logs from index main to index OS1, but it appears that every now and then a couple of rogue events will find their way into main and not OS1. In the last 17hrs 13 events from different servers have found their way into main. All clients are pointed to the new index.

Could this be a sign that I need another index or to beef up the index that I have? I am running Splunk 6.2.3 on a 6CPU 12GB virtual machine with 1 NIC.

Tags (2)
0 Karma
1 Solution

woodcock
Esteemed Legend

You have a timestamp problem where you are seeing events that were indexed in the past with a timestamp in the future. As these events trickle from the future to the present, you are noticing them (even though they were indexed long ago, before you made the OS1 change). You can check this with a search like this:

... | eval lagSecs = _indextime - _time | stats avg(lagSecs) by sourcetype host index

You are going to see some negative numbers which is IMPOSSIBLE. This means that events were indexed before they happened. That is your problem.

View solution in original post

0 Karma

woodcock
Esteemed Legend

You have a timestamp problem where you are seeing events that were indexed in the past with a timestamp in the future. As these events trickle from the future to the present, you are noticing them (even though they were indexed long ago, before you made the OS1 change). You can check this with a search like this:

... | eval lagSecs = _indextime - _time | stats avg(lagSecs) by sourcetype host index

You are going to see some negative numbers which is IMPOSSIBLE. This means that events were indexed before they happened. That is your problem.

0 Karma
Get Updates on the Splunk Community!

Observe and Secure All Apps with Splunk

  Join Us for Our Next Tech Talk: Observe and Secure All Apps with SplunkAs organizations continue to innovate ...

Splunk Decoded: Business Transactions vs Business IQ

It’s the morning of Black Friday, and your e-commerce site is handling 10x normal traffic. Orders are flowing, ...

Fastest way to demo Observability

I’ve been having a lot of fun learning about Kubernetes and Observability. I set myself an interesting ...