8000 austinjohnson14 (Austin J) · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content
View austinjohnson14's full-sized avatar
🌋
🌋

Block or report austinjohnson14

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. Top AWS Athena queries for ALB acces... Top AWS Athena queries for ALB access logs
    1
    Top AWS Athena queries for ALB access logs
    2
    Here, in one place, are some valuable queries for extracting insights and troubleshooting potential problems that I have gathered myself during my SRE experience, or found and used from the web:
    3
    
                  
    4
    Total Requests by Day:
    5
    SELECT 
  2. asciiquarium asciiquarium Public

    Forked from cmatsuoka/asciiquarium

    Enjoy the mysteries of the sea from the safety of your own terminal!

    Perl

  3. Top AWS Athena queries for Cloudtrail Top AWS Athena queries for Cloudtrail
    1
    -- 1. Query to Find Failed Logins
    2
    SELECT eventTime, userIdentity.arn AS 'foo.bar', sourceIPAddress, errorCode, eventName
    3
    FROM cloudtrail_logs
    4
    WHERE eventName = 'ConsoleLogin'
    5
      AND errorCode = 'FailedAuthentication'
0