Server Logon Counts - Anomalize
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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