turbot/tailpipe-mod-github-security-log-detections

Dashboard: GitHub Security Log Activity Dashboard

This dashboard answers the following questions:

  • What is the total number of security log events in my GitHub account?
  • How many failed login attempts have occurred?
  • What actions occur most frequently in the security log?
  • How are MFA-related events trending over time?
  • How are failed login attempts trending over time?
  • Which integrations are generating the most security log activity?
This dashboard contains 2 cards.

Usage

Install the mod:

mkdir dashboards
cd dashboards
powerpipe mod init
powerpipe mod install github.com/turbot/tailpipe-mod-github-security-log-detections

Start the Powerpipe server:

powerpipe server

Open http://localhost:9033 in your browser and select GitHub Security Log Activity Dashboard dashboard.

You could also snapshot and share results via Turbot Pipes:

powerpipe login
powerpipe dashboard run github_security_log_detections.dashboard.activity_dashboard --share

Queries

This dashboard uses the the following queries:
select
action as "Action",
count(*) as "Events"
from
github_security_log
group by
action
order by
"Events" desc
limit 10;

Tags