Skip to content

Instantly share code, notes, and snippets.

@holisticinfosec
Last active June 3, 2018 21:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save holisticinfosec/4824415a4daef911d9bf053df2d73211 to your computer and use it in GitHub Desktop.
Save holisticinfosec/4824415a4daef911d9bf053df2d73211 to your computer and use it in GitHub Desktop.
Server Logon Counts - Anomalize
# Created from Anomalize project, Matt Dancho
# https://github.com/business-science/anomalize
library(tidyverse)
library(anomalize)
security_access_logs %>%
ggplot(aes(date, count)) +
geom_point(color = "#2c3e50", alpha = 0.25) +
facet_wrap(~ server, scale = "free_y", ncol = 3) +
theme_minimal() +
theme(axis.text.x = element_text(angle = 30, hjust = 1)) +
labs(title = "Server Logon Counts",
subtitle = "Data from Security Event Logs, Event ID 4624")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment