Hi, I'm Alex from France as almost everyone here, I need some splunk guru ^^ fields computer and user are in index1, computer2 is in index2 I need a table with computer and related user fields, but only computers which are not in computer2 I can't get my table, please help me! ((index="index1") OR (index="index2")) | streamstats count by computer, user, computer2 | stats values(computer) AS computer, values(computer2) AS computer2 | mvexpand computer | where computer!=computer2 | table computer
... View more