Forum Widgets
Latest Discussions
Specify which Entra ID Sign-in logs are sent to Log Analytics Workspace
Hi, as the title says I am curious if its possible if I can limit which login logs are sent to a Log Analytics Workspace. We currently have a couple of service accounts in use that generate a high amount of traffic (an issue being worked on separately) and would like to exclude the logs from these specific users from being sent to LAW.SolvedCSIMar 14, 2025Copper Contributor77Views0likes1CommentPermanently deleted log analytics workspace in Azure and how to recover it ?
Have permanently deleted log analytics workspace in Azure environment and need to recover the deleted workspace. Reason# Recreated a new log analytics workspace but when tried to check under conditional access --> Insights and reporting receiving an error message as insufficient permission and highlighting the deleted log analytics workspace. /subscriptions/xxxxxxxxxxxxxxxxx/resourceGroups/rg-test-prod-uks-001/providers/Microsoft.OperationalInsights/workspaces/ Error code showing : 403 | Content : NewLogAnalyticsBlade Any idea on how to recover the deleted one or how to fix this permission issue. Impact: Not able to get audit logs from Conditional access policies to Log analytics workspace. Thanks.SolvedKrishnakumar_MMay 21, 2024Copper Contributor910Views0likes3CommentsIdentifying the best analytics service to use for Azure Sentinel data processing
Hi, I am replacing an old data processing system, starting from Sentinel and ending in an Azure SQL table. The old system used to be like below: I want to put it all into the cloud, like below: (note that the data processing does not need to stay as a Python script, I can rewrite it into any new language / system needed) What would be the best practice Azure product to do the "?" step in? I first assumed Azure Data Factory, however with the wide range of complex tools available I want to get a better idea of which product is best suited before investing time into creating a solution. Thanks in advance.SolvedSamsonBarkSep 15, 2023Copper Contributor765Views0likes1CommentPolicy to Prevent Azure SQL Scaling ?
Hello, Is there a way to create an Azure Policy to be applied on different Azure SQL databases? The policy wouldn't allow users to scale up/down databases with the exception of a user/group. Thank you.SolvedBrunoIlliprontiMay 11, 2022Copper Contributor1.1KViews0likes2CommentsAzure Cognitive Service Environment Setup Error
I am using Visual Studio Code for learning, experiencing and experimenting the Azure AI services. I am using git learning Module MSLEARN-AI-900. In the file "01-Image Analysis with Computer Vision.ipynb", while running the following code: from azure.cognitiveservices.vision.computervision import ComputerVisionClient from msrest.authentication import CognitiveServicesCredentials from python_code import vision import os %matplotlib inline # Get the path to an image file image_path = os.path.join('data', 'vision', 'store_cam1.jpg') # Get a client for the computer vision service computervision_client = ComputerVisionClient(cog_endpoint, CognitiveServicesCredentials(cog_key)) # Get a description from the computer vision service image_stream = open(image_path, "rb") description = computervision_client.describe_image_in_stream(image_stream) # Display image and caption (code in helper_scripts/vision.py) vision.show_image_caption(image_path, description) I am getting the following ERROR: ModuleNotFoundError Traceback (most recent call last) <ipython-input-3-72a4e0dfff5e> in <module> ----> 1 from azure.cognitiveservices.vision.computervision import ComputerVisionClient 2 from msrest.authentication import CognitiveServicesCredentials 3 from python_code import vision 4 import os 5 get_ipython().run_line_magic('matplotlib', 'inline') G:\Users\Himanshu\AppData\Local\Programs\Python\Python36-32\azure.py in <module> 4 print('Ready to use cognitive services at {} using key {}'.format(cog_endpoint, cog_key)) 5 ----> 6 from azure.cognitiveservices.vision.computervision import ComputerVisionClient 7 from msrest.authentication import CognitiveServicesCredentials 8 from python_code import vision ModuleNotFoundError: No module named 'azure.cognitiveservices'; 'azure' is not a package To check the proper installation of azure module, run the pip3 list command on cmd, results are as follows: PS C:\Users\Himanshu\mslearn-ai900> pip3 list Package Version --------------------------------------------- ------------ -ip 20.0.2 asn1crypto 0.24.0 azure-ai-formrecognizer 3.0.0 azure-cognitiveservices-vision-computervision 0.9.0 azure-cognitiveservices-vision-customvision 3.1.0 azure-common 1.1.27 azure-core 1.14.0 backcall 0.2.0 beautifulsoup4 4.9.0 certifi 2020.4.5.1 cffi 1.11.5 chardet 3.0.4 click 7.1.1 colorama 0.4.4 cryptography 2.3.1 decorator 5.0.9 django 2.1 google 2.0.3 gTTS 2.1.1 gTTS-token 1.1.3 h5py 2.10.0 idna 2.9 importlib-metadata 1.6.0 imutils 0.5.3 inflect 4.1.0 ipykernel 5.5.5 ipython 7.16.1 ipython-genutils 0.2.0 isodate 0.6.0 jaraco.itertools 5.0.0 jedi 0.18.0 joblib 0.14.1 jupyter-client 6.1.12 jupyter-core 4.7.1 Keras 2.3.1 Keras-Applications 1.0.8 Keras-Preprocessing 1.1.0 lxml 4.5.1 more-itertools 8.2.0 msrest 0.6.21 numpy 1.18.3 oauthlib 3.1.0 opencv-contrib-python 4.2.0.34 pandas 0.24.1 parso 0.8.2 pickleshare 0.7.5 Pillow 7.1.2 pip 20.1 playsound 1.2.2 prompt-toolkit 3.0.18 PyAudio 0.2.11 pycparser 2.18 Pygments 2.9.0 PyMySQL 0.9.2 pyspeech 0.0.0 python-dateutil 2.8.0 pytz 2018.5 pywin32 300 PyYAML 5.3.1 pyzmq 22.0.3 requests 2.23.0 requests-oauthlib 1.3.0 scikit-learn 0.22.2.post1 scipy 1.4.1 selenium 3.141.0 setuptools 28.8.0 six 1.14.0 soupsieve 2.0 SpeechRecognition 3.8.1 tornado 6.1 traitlets 4.3.3 urllib3 1.25.8 wcwidth 0.2.5 wheel 0.36.2 wolframalpha 4.0.0 xmltodict 0.12.0 zipp 3.1.0SolvedHimanshuMathurMay 27, 2021Copper Contributor4.5KViews0likes1CommentHow to set up an alert when a server is restarted in Azure
Hi, I need to set up some kind of alert or receive an email when a server in Azure is restarted (this typically happens after applying patches to Windows or some other components). Thank you very much Regards Carlos NegroniSolvedcnegroniFeb 05, 2021Copper Contributor13KViews0likes2Comments
Resources
Tags
- AMA18 Topics
- Log Analytics6 Topics
- azure6 Topics
- Synapse3 Topics
- azure monitor3 Topics
- Log Analytics Workspace3 Topics
- Stream Analytics2 Topics
- azure databricks2 Topics
- Azure Synapse Analtyics2 Topics
- application insights2 Topics