Skip to content

Splunk Queries:Slack:Channel Joins

lbonanomi edited this page Jan 20, 2025 · 1 revision

Slack logging to Splunk is a rich data source for inferred intelligence. Run this query to see who has joined what private channel:

index="slack" action=user_channel_join | spath output=user path=actor.user.email |
spath output=channel path=entity.channel.name |
spath output=how path=details.type |
where how="INVITED" |
spath output=when path=date_create |
spath output=by path=details.inviter.email |
eval join_time=strftime(when,"%m/%d/%y %H:%M:%S") |
table user,join_time,channel,how,by
Clone this wiki locally