Skip to content

Instantly share code, notes, and snippets.

@holisticinfosec
Last active June 3, 2018 21:56
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Embed
What would you like to do?
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