Hello, I am quite new to Splunk and this is my first post. Hoping that I can get some help from this awesome community. I have two systems, System A and System B. System A receives customer information which is then sent to System B . The data in both systems have the exact same fields and a unique Customer ID with the same name in both systems. I want to create a dashboard where I can select a time period and see only problematic customers that only exist in System A, meaning they haven't been sent to System B for some reason. This is my search to see all the data: index=systemA OR index=systemB | fields customer_ID, systemA_Timestamp, systemB_Timestamp | stats values(*) as * by customer_ID | table customer_ID, systemA_Timestamp, systemB_Timestamp So to summarize, I want to see customer_IDs that only exist in System A. I am not sure which function to use here. I have been experimenting with isnull(systemB_Timestamp) with no success. Join is not an option as the limit of 50 000 might be a problem. Would be very grateful for any help!
... View more