I have a simple search parsing project activity logs to pull a list of projects and people working on those projects:
index="main" | dedup Author Proj_repo | stats list(Proj_repo) AS Project by Author
This successfully returns a list of Authors and list of their projects. What kind of function(s) could I use to chart the relationships between authors? Something showing the Authors and how they're linked to the other Authors across projects.
↧