New Blog Post | Introducing: Azure Sentinel Data Exploration Toolset (ASDET)

Microsoft

AshleyMartin_0-1631033319672.png

Introducing: Azure Sentinel Data Exploration Toolset (ASDET) - Microsoft Tech Community

      Security Analysts deal with extremely large datasets in Azure Sentinel, making it challenging to efficiently analyze them for anomalous data points. We sought to streamline the data analysis process by developing a notebook based toolset to reduce the data to a more manageable format, effectively allowing analysts to easily and efficiently gain a better understanding of their dataset and detect anomalies therein. Our toolset has three main components that each provide a different way of turning raw data into useful insights: data inference, feature engineering, and anomaly detection.

Original Post: New Blog Post | Introducing: Azure Sentinel Data Exploration Toolset (ASDET) - Microsoft Tech Commun...

2 Replies

@AshleyMartin 

Hello,

I'm new to Jupiter notebook, I tried run these notebooks but I see an error in some notebooks "ModuleNotFoundError: No module named 'pyvis'" how I can solve this issue? 

 

some google answers to install this module:

!conda install --yes -c conda-forge nxviz
!conda install --yes -c conda-forge pyvis
 
output "# All requested packages already installed."
Hi Pawel, so yes you will need to install the package first. You can do this in the Jupyter notebook by adding a code cell with
`! pip install pyvis`

Once you have run that cell restart the kernel for your notebook and try it again