Experiencing Alerting failure for Azure Monitor – 08/04 – Resolved

This article is contributed. See the original author and article here.

Final Update: Tuesday, 04 August 2020 07:38 UTC

We’ve confirmed that all systems are back to normal with no customer impact as of 08/04, 02:42 UTC. Our logs show the incident started on 08/04, 00:35 UTC and that during the 2 hours and 7 minutes that it took to resolve the issue some of the customers might have experienced delayed alerts. Alerts would have eventually fired.

  • Root Cause: The failure was due to an issue in one of our back-end services. 
  • Incident Timeline: 2 Hours & 7 minutes – 08/04, 00:35 UTC through 08/04, 02:42 UTC

We understand that customers rely on Azure Monitor as a critical service and apologize for any impact this incident caused.

-Saika


Creating a traditional Windows Server Failover Cluster in Azure.

Creating a traditional Windows Server Failover Cluster in Azure.

This article is contributed. See the original author and article here.

Hello Folks,

As we announced last month (Announcing the general availability of Azure shared disks and new Azure Disk Storage enhancements) Azure shared disks are now generally available.

 

Shared disks, is the only shared block storage in the cloud that supports both Windows and Linux-based clustered or high-availability applications. It now allows you to use a single disk to be attached to multiple VMs  therefore enabling you to run applications, such as SQL Server Failover Cluster Instances (FCI), Scale-out File Servers (SoFS), Remote Desktop Servers (RDS), and SAP ASCS/SCS running on Windows Server. Thus, enabling you to migrate your applications, currently running on-premises on Storage Area Networks (SANs) to Azure more easily.

 

Shared disks are available on both Ultra Disks and Premium SSDs.

 

Ultra disks have their own separate list of limitations, unrelated to shared disks. For ultra disk limitations, refer to Using Azure ultra disks.  When sharing ultra disks, they have the following additional limitations:

 

Shared ultra disks are available in all regions that support ultra disks by default.

Premium SSDs

  • Currently only supported in the West Central US region.
  • Currently limited to Azure Resource Manager or SDK support.
  • Can only be enabled on data disks, not OS disks.
  • ReadOnly host caching is not available for premium SSDs with maxShares>1.
  • Disk bursting is not available for premium SSDs with maxShares>1.
  • When using Availability sets and virtual machine scale sets with Azure shared disks, storage fault domain alignment with virtual machine fault domain is not enforced for the shared data disk.
  • When using proximity placement groups (PPG), all virtual machines sharing a disk must be part of the same PPG.
  • Only basic disks can be used with some versions of Windows Server Failover Cluster, for details see Failover clustering hardware requirements and storage options.

For this post we’ll deploy a 2-node Windows Server Failover Cluster (WSFC) using clustered shared volumes. That way both VMs will have simultaneous write-access to the disk, which results in the ReadWrite throttle being split across the two VMs and the ReadOnly throttle not being used. And we’ll do it using the new Windows Admin Center Failover clustering experience.

 

Azure shared disks usage is supported on all Windows Server 2008 and newer. And Azure shared disks are supported on the following Linux distros:

 

 

Currently only ultra disks and premium SSDs can enable shared disks. Each managed disk that have shared disks enabled are subject to the following limitations, organized by disk type:

 

Ultra disks

Ultra disks have their own separate list of limitations, unrelated to shared disks. For ultra disk limitations, refer to Using Azure ultra disks.

 

When sharing ultra disks, they have the following additional limitations:

 

 

Shared ultra disks are available in all regions that support ultra disks by default, and do not require you to sign up for access to use them.

 

Premium SSDs

 

  • Currently only supported in the West Central US region.
  • Currently limited to Azure Resource Manager or SDK support.
  • Can only be enabled on data disks, not OS disks.
  • ReadOnly host caching is not available for premium SSDs with maxShares>1.
  • Disk bursting is not available for premium SSDs with maxShares>1.
  • When using Availability sets and virtual machine scale sets with Azure shared disks, storage fault domain alignment with virtual machine fault domain is not enforced for the shared data disk.
  • When using proximity placement groups (PPG), all virtual machines sharing a disk must be part of the same PPG.

 

Let’s get on with the creation of our cluster.  In my test environment I have 2 Windows Server 2019 that will be used as our cluster Nodes. They are joined to a domain through a DC in the same virtual network on Azure.  Windows Admin Center (WAC) is running on a separate VM and ALL these machine are accessed using an Azure Bastion server.

 

When creating the VMs you need to ensure that you enable Ultra Disk compatibility in the Disk section. If your shared Ultra Disk is already created, you can attach it as you create the VM.  In my case I will attach it to existing VM in the next step.

 

 

First, we need to Deploy an ultra disk as a shared disk. To deploy a managed disk with the shared disk feature enabled, you must ensure that the “maxShares” parameter is set to a value greater than 1. This makes the disk shareable across multiple VMs.  I used the cloud shell through the portal and the following Azure CLI commands to perform that operation.  Notice that we also need to set the zone parameter to the same zone where the VMs are located (Azure Shared Disk across availability zones is not yet supported)

 

location = "westus2"
rgname = "Demo-Cluster"
diskname = "ultrashareddisk"
zone = 1

az disk create 
     -g $rgname 
     -n $diskname 
     --size-gb 1024 
     -l $location 
     --sku UltraSSD_LRS 
     --max-shares 5 
     --disk-iops-read-write 2000 
     --disk-mbps-read-write 200 
     --disk-iops-read-only 100 
     --disk-mbps-read-only 1 
     --zone $zone

 

We end up with the following result:

 

create shared disk.png

 

Once the Shared Disk is created, we can attach it to BOTH VMs that will be our clustered nodes.  I’ve attached the disk to the VMs through the Azure portal by navigating to the VM, and in the Disk management pane, clicking on the “+ Add data disk” and selecting the disk I created above.

 

attach-ultradisk-existing-vm.gif

 

Now that the shard disk is attached to both VM, I use the WAC cluster deployment workflow to create the cluster.

 

To launch the workflow, from the All Connections page, click on “+Add” and select “Create new” on the server clusters tile.

 

cluster-1.png

 

You can create hyperconverged clusters running Azure Stack HCI, or classic failover clusters running Windows Server (in one site or across two sites).  I’m my case I’m deploying a traditional cluster in one site.

 

The cluster deployment workflow is included in Windows Admin Center without needing to install an extension.

 

At this point just follow the prompts and walk through the workflow.   Just remember that whenever, in the workflow, you are asked for an account name and password.  the username MUST be in the DOMAINUSERNAME format.

 

cluster-2.png

 

Once I walked through the workflow, I connected to Node 1 and added the disk to my clustered shard volume.

 

cluster-10-2.gif

 

and verified on the other node that I could see the Clustered Shared Volume.

 

cluster-11.gif

 

That’s it!!  My traditional WSFC is up and running and ready to host whatever application I need to migrate to Azure.

 

I hope this helped.  Let me know in the comments if there are any specific scenarios you would like us to review.

 

Cheers!

 

Pierre

 

 

 

 

 

 

 

Microsoft collaborates with Bitnami to give production-ready solutions using PostgreSQL in Azure

Microsoft collaborates with Bitnami to give production-ready solutions using PostgreSQL in Azure

This article is contributed. See the original author and article here.

Today I am happy to announce an expansion of our longstanding partnership with Bitnami (now part of VMware) to deliver a collection of production-ready templates on the Azure marketplace for our open source database services—namely, MySQL, MariaDB, and Postgres.

 

In this blog post you can learn about the Bitnami Certified Apps (what many of us call “templates”) for our Azure Database for PostgreSQL services are available on the Azure Marketplace and are production-ready.  You can also find Bitnami templates using Azure Database for MySQL and MariaDB.

mksunitha_0-1596519921746.png

 

More importantly, these Bitnami templates make it easy for you to manage the complexity of modern software deployments.

 

And when we say the Bitnami templates make it easy, we mean easy: these templates for our Azure open source databases give you a one-click solution to deploy your applications for production workloads. Bitnami packages the templates following industry standards—and continuously monitors all components and libraries for vulnerabilities and application updates.

 

Invent with purpose on Azure with Bitnami templates !

 

Bitnami templates available with PostgreSQL on Azure Marketplace

 

The current collection of Bitnami production-ready templates on the Azure marketplace are for these applications.

 

  1. Airflow for PostgreSQL
  2. CKAN for Postgres—with Hyperscale (Citus)

 

The Bitnami Community Catalog on the Azure Marketplace give you certified applications that are always up-to-date, highly secure, and built to work right out of the box.

 

In these solution templates for the Azure open source database services, our Azure and Bitnami engineering teams have worked together to incorporate all the best practices for performance, scale, and security—to make the Bitnami templates ready for you to consume, with no additional integration work necessary.

 

Airflow with PostgreSQL on Azure

mksunitha_1-1596518905372.png

 

Caption: Airflow with Azure Database for PostgreSQL

 

You can build and manage your company’s workflows using Apache Airflow solution that gives you high availability, better performance, and scalability. This Bitnami template for Airflow uses two virtual machines for the application front-end and scheduler, plus a configurable number of worker virtual machines. It also uses Azure Database for PostgreSQL and Azure Cache for Redis to store application data and queue tasks.

 

Try Airflow with Azure Database for PostgreSQL

 

CKAN with PostgreSQL & Hyperscale (Citus)

 

mksunitha_2-1596518905433.png

 

Caption: CKAN with Hyperscale PostgreSQL (Citus)

 

With this Bitnami template for CKAN, you can now build an open data management system on Azure that is based on CKAN. CKAN is used by various governments, organizations and communities around the world when they need store and process large amounts of data from census data to scientific data. This is a scalable solution that uses several virtual machines instances to host the applications which also include virtual machines for Solr , Memcahced and managed  databases using Hyperscale (Citus) on Azure Database for PostgreSQL.

 

Try CKAN with Hyperscale Citus PostgreSQL

 

If you’re building an application on Azure using CKAN or Airflow with Azure Database for PostgreSQL or Hyperscale Citus, here are a few of the reasons I recommend you consider taking advantage of the Bitnami templates on the Azure Marketplace.

 

Bitnami templates lower your TCO

 

These Bitnami production-ready templates are available to you at no additional cost than the underlying Azure services being used to host the application. These services are already optimized to reduce the total cost of ownership using the elastic cloud infrastructure.

You also get Azure advisor recommendations for your managed database service, so you can scale up or down based on your usage telemetry.

 

Managed database services on Azure enable you to focus on your application—not your database

 

Azure managed database services provide high availability with 99.9% SLA and ease of scale up or down your servers based on what your application needs are. You can easily backup and perform point-in-time restore for business continuity and disaster recovery. Using Hyperscale (Citus) on Azure Database for PostgreSQL, you can scale out horizontally your multi-tenant app on Azure—or build a real-time operational analytics app that gives your customers sub-second performance even with billions of rows.

 

Security benefits that are built into Azure

 

With these Bitnami templates on Azure, you can use built-in security features like using SSL connectivity to the database server and using Azure Role-based access control (RBAC) to control who has access to the server.

 

You can also use our Advanced Threat Protection feature for the managed databases to detect anomalous activities indicating unusual and potentially harmful attempts to access or exploit databases.

 

You can also read this blog post from Bitnami (now part of VMWare). We are thrilled to work with Bitnami and focus on simplifying the experience for developers to build solutions using community based applications like CKAN and Airflow.  

 

What our leaders are saying about the Bitnami & Azure collaboration

 

Sunil Kamath is Director of Product Management for OSS databases at Microsoft Azure Data—here is Sunil’s take on the importance of our partnership:

 

“Developers want simple, fast ways to deploy production-ready solutions on the cloud. We have been excited about our partnership with Bitnami—now part of VMware—to deliver what customers say they care about the most. Today, together with Bitnami, we are thrilled to launch new production-ready and enterprise-grade Bitnami templates for WordPress, Drupal, Magento, and more, making it easier than ever for developers to run these solutions on the Azure cloud. These solutions are built to fully utilize the best-in-class intelligence, enterprise security, and scalability offered by Azure database services for MySQL, MariaDB, and PostgreSQL.“

 

Daniel Lopez is the former CEO/Founder of Bitnami and is now Sr. Director R&D at VMware. When asked for his perspective on the partnership with Microsoft Azure, Daniel said:

 

“Bitnami has worked closely with Microsoft for many years to provide Azure customers with a wide array of ready to deploy open source software in a variety of formats including virtual machines, containers, Helm Charts, and ARM Templates; and across environments including Azure and Azure Stack. Our recent expansion of this partnership with the Azure Data team is a particularly exciting area of development as we’re bringing together the convenience and simplicity of Bitnami applications with the power and scalability of Azure Data services; creating a low-friction and high-value win for customers. We’re also proud of this collaboration in highlighting the type of innovation and benefits the cloud operating model allows us to unlock.”

 

Want to learn more about Azure open source databases & Bitnami?

 

Below are some resources if you want to dig in further and try out some of these Bitnami production-ready templates with our Azure open source databases.

 

Oh and if you have ideas for more Bitnami templates we should create that you think you and other developers would benefit from on the Azure Marketplace, please provide feedback on UserVoice. We would love your input.

 

 

 

Microsoft collaborates with Bitnami to give production-ready solutions using MySQL in Azure

Microsoft collaborates with Bitnami to give production-ready solutions using MySQL in Azure

This article is contributed. See the original author and article here.

Today I am happy to announce an expansion of our longstanding partnership with Bitnami (now part of VMware) to deliver a collection of production-ready templates on the Azure marketplace for our open source database services—namely, MySQL, MariaDB, and Postgres.

 

In this blog post you can learn about the Bitnami Certified Apps (what many of us call “templates”) for our Azure Database for MySQL and Azure Database for MariaDB services are available on the Azure Marketplace and are production-ready.  You can also find Bitnami templates using Azure Database for PostgreSQL.

mksunitha_0-1596519662207.png

 

More importantly, these Bitnami templates make it easy for you to manage the complexity of modern software deployments.

 

And when we say the Bitnami templates make it easy, we mean easy: these templates for our Azure open source databases give you a one-click solution to deploy your applications for production workloads. Bitnami packages the templates following industry standards—and continuously monitors all components and libraries for vulnerabilities and application updates.

 

Invent with purpose on Azure with Bitnami templates !

 

Bitnami templates available with PostgreSQL on Azure Marketplace

 

The current collection of Bitnami production-ready templates on the Azure marketplace are for these applications.

  1. Magento for MySQL
  2. Moodle for MySQL
  3. WordPress for MariaDB
  4. Drupal for MariaDB

The Bitnami Community Catalog on the Azure Marketplace give you certified applications that are always up-to-date, highly secure, and built to work right out of the box.

In these solution templates for the Azure open source database services, our Azure and Bitnami engineering teams have worked together to incorporate all the best practices for performance, scale, and security—to make the Bitnami templates ready for you to consume, with no additional integration work necessary.

 

Magento with MySQL on Azure

 

mksunitha_1-1596310038206.png

 

Caption : Magento with Azure Database for MySQL

 

Since so many of us are staying at home right now, I suspect that many of you are using some type of online retailer to purchase groceries and everyday home items. Many online retailers are built on top of Magento, an open source e-commerce solution developed in PHP.  Bitnami simplifies the deployment of Magento on Azure with an Azure Marketplace solution that runs Magento on a Virtual machine and uses Azure Database for MySQL for data storage with ProxySQL for load balancing.

 

Try Magento Bitnami template that works with Azure Database for MySQL

 

Moodle with MySQL on Azure

 

mksunitha_2-1596310038268.png

 

Caption : Moodle with Azure Database for MySQL

 

With schools trying to provide online education to their students whether it is an elementary school or a university, Moodle can help you build a learning hub quickly and with ease. This Bitnami template for Moodle uses a virtual machine for the application front-end and the Azure Database for MySQL service for the application data. It is also configured to provide high availability, ease of scaling, and high performance.  

 

Try Moodle with Azure Database for MySQL

WordPress with MariaDB on Azure

 

mksunitha_3-1596310038299.png

 

Caption: WordPress with Azure Database for MariaDB

 

You can create a hassle-free WordPress application for a company blog website or eCommerce Website using this template for Azure. This solution uses a virtual machine for the application front-end and the Azure Database for MariaDB service for the application data in addition to ProxySQL load-balancer. You get high availability with the ProxySQL load-balancer as well as high performance.

Check out our Azure Friday video on how to deploy WordPress on Azure using this Bitnami template (and MariaDB of course.)

 

Try WordPress with Azure Database for MariaDB

 

Drupal with MariaDB on Azure

 

mksunitha_4-1596310038308.png

 

Caption: Drupal with Azure Database for MariaDB

 

Whether you are creating websites for non-profits, healthcare providers, government agencies, or other organizations—it’s easy to build, run, and optimize your Drupal-based websites on Azure.

With our Bitnami template for Drupal, you get a virtual machine for the application front-end and the Azure Database for MariaDB service for the application data. The production-ready template is configured to provide high performance and better database scalability for your application.

 

Try Drupal with Azure Database for MariaDB

Grafana with MariaDB on Azure

 

mksunitha_5-1596310038325.png

 

Caption: Grafana with Azure Database for MariaDB

 

I suspect many of you love Grafana. I know I do. With this Bitnami template for Grafana, you can build an application monitoring application on Azure that can help you troubleshoot and investigate issues with your solutions, no matter where the diagnostics data and metrics are stored. You can process massive amounts of data and visualize the data through customizable dashboards. This Bitnami template for Grafana uses a multi-node Grafana front-end and the Azure Database for MariaDB service for the application data. 

 

Try Grafana with Azure Database for MariaDB

 

If you’re building an application on Azure using Grafana, Drupal, WordPress, Moodle, or Magento—plus our MySQL or MariaDB managed databases—here are a few of the reasons I recommend you consider taking advantage of the Bitnami templates on the Azure Marketplace.

 

Bitnami templates lower your TCO

 

These Bitnami production-ready templates are available to you at no additional cost than the underlying Azure services being used to host the application. These services are already optimized to reduce the total cost of ownership using the elastic cloud infrastructure.

You also get Azure advisor recommendations for your managed database service, so you can scale up or down based on your usage telemetry.

 

Managed database services on Azure enable you to focus on your application—not your database

 

Azure managed database services provide high availability with 99.9% SLA and ease of scale up or down your servers based on what your application needs are. You can easily backup and perform point-in-time restore for business continuity and disaster recovery. Using ProxySQL for WordPress and Magento solutions that provides intelligent load balancing across different databases and scalability to transparent route the traffic to read replicas to scale out.

 

Security benefits that are built into Azure

 

With these Bitnami templates on Azure, you can use built-in security features like using SSL connectivity to the database server and using Azure Role-based access control (RBAC) to control who has access to the server.

 

You can also use our Advanced Threat Protection feature for the managed databases to detect anomalous activities indicating unusual and potentially harmful attempts to access or exploit databases.

 

You can also read this blog post from Bitnami (now part of VMWare). We are thrilled to work with Bitnami and focus on simplifying the experience for developers to build solutions using community based applications like WordPress , Moodle and more.

 

 

What our leaders are saying about the Bitnami & Azure collaboration

 

Sunil Kamath is Director of Product Management for OSS databases at Microsoft Azure Data—here is Sunil’s take on the importance of our partnership:

 

“Developers want simple, fast ways to deploy production-ready solutions on the cloud. We have been excited about our partnership with Bitnami—now part of VMware—to deliver what customers say they care about the most. Today, together with Bitnami, we are thrilled to launch new production-ready and enterprise-grade Bitnami templates for WordPress, Drupal, Magento, and more, making it easier than ever for developers to run these solutions on the Azure cloud. These solutions are built to fully utilize the best-in-class intelligence, enterprise security, and scalability offered by Azure database services for MySQL, MariaDB, and PostgreSQL.“

 

Daniel Lopez is the former CEO/Founder of Bitnami and is now Sr. Director R&D at VMware. When asked for his perspective on the partnership with Microsoft Azure, Daniel said:

 

“Bitnami has worked closely with Microsoft for many years to provide Azure customers with a wide array of ready to deploy open source software in a variety of formats including virtual machines, containers, Helm Charts, and ARM Templates; and across environments including Azure and Azure Stack. Our recent expansion of this partnership with the Azure Data team is a particularly exciting area of development as we’re bringing together the convenience and simplicity of Bitnami applications with the power and scalability of Azure Data services; creating a low-friction and high-value win for customers. We’re also proud of this collaboration in highlighting the type of innovation and benefits the cloud operating model allows us to unlock.”

 

Want to learn more about Azure open source databases & Bitnami?

 

Below are some resources if you want to dig in further and try out some of these Bitnami production-ready templates with our Azure open source databases.

 

Oh and if you have ideas for more Bitnami templates we should create that you think you and other developers would benefit from on the Azure Marketplace, please provide feedback on UserVoice. We would love your input.

 

Azure Security Center Secure Score Reduction Alert

Azure Security Center Secure Score Reduction Alert

This article is contributed. See the original author and article here.

With the ever-growing cloud resources in your environment, I can’t emphasize enough how important it is to prioritize security hygiene and more importantly to constantly monitor the status of the security posture. Azure Security Center continuously assesses your resources, subscriptions for security issues. It mimics the work of a security analyst, reviews security recommendations across all workloads, applies advanced algorithms to determine how critical each recommendation is, and calculates Secure Score based on the active recommendations. Overall secure score is an accumulation of all your recommendation scores and you can view your overall secure score across your subscriptions. The score will vary based on subscription selected, the amount of resources that you have in that subscriptions and the active recommendations on those resources. Read this article to understand more about Azure Security Center Secure Score.

 

We’ve heard your feedback on being notified when the Secure Score downgrades by X%. We recently uploaded an automation artifact to the Azure Security Center Github repository, a playbook that helps you to monitor the secure score of the subscriptions easily and to send an alert via email once the Secure Score decreases for a configurable percentage value. This blog post explains how this automation works.

 

How does the automation work?

This playbook uses Secure Score API to pull the Secure Score. At every execution, it pulls the list of subscriptions for the user and for each subscription, it gets the percentage of ‘ascScore’ which is then stored in the Log Analytics workspace with the subscription ID as maximum points and current points. At every occurrence (can be defined during the deployment of the ARM template), it pulls the last scanned points and derives the score in percentage (%) and compares it with the current score. If the Logic app identifies the current score minus last scanned score percentage is greater than or equal to configured score reduction threshold (defined during deployment), it fires an alert over email.

 

Pre-requisites:

This playbook uses Managed identity. You need to assign reader permissions to the subscriptions you want to export for the Managed identity.

To assign Managed Identity to specific scope:

  1. Make sure you have owner permissions for this scope.
  2. Go to the subscription/management group page.
  3. Press ‘Access Control (IAM)’ on the navigation bar.
  4. Press ‘+Add’ and ‘Add role assignment’.
  5. Choose Reader role.
  6. Assign access to Logic App.
  7. Choose the subscription where the logic app was deployed.
  8. Choose ‘Send-SecureScoreReductionAlert’ Logic App. (The name might differ based on what you’ve saved the logicapp as)
  9. Press ‘save’.

NOTE: You can assign permissions only as an owner and make sure all selected subscriptions registered to Azure Security Center.

 

To assign reader permissions to subscriptions:

You have three options:

  1. You can assign reader permissions at the management group level for the managed identity. (preferred)
  2. You can assign reader permissions for the Managed Identity for each one of the subscriptions you want to get data on.
  3. You can use the provided PowerShell script Grant-SubscriptionPermissions.ps1 to add the identity to all subscriptions.

Deployment process and details

Navigate to Azure Security Center GitHub repository and select “Deploy to Azure” or “Deploy to Azure Gov” (as shown in ‘Image 1’) under Secure Score Reduction Alerts automation

Image 1.png

Image 1: Git Hub repository

 

Once you have clicked on ‘Deploy’ option in the screen above, you should automatically be redirected to  the Azure portal Custom deployment page where you can fill in the details of requirement as shown in ‘Image 2’

 

Image 2.png

Image 2: Azure portal, Custom Deployment

 

Note that all the above fields are customizable per your needs. In my example above, I have filled in the details for your reference.

 

The ARM template will create the Logic App playbook and as you notice in ‘Image 2’ we are using three API connections O365 for sending notification alerts, Azure log monitor to query and list action for Log Analytics and Azure Log Analytics API to store the data. 

 

During the deployment of the Logic App, you can define the Scanfrequency hour (Occurrence in hours) depending on how often you would want the logic app to scan your subscriptions. You could also define Score Reduction Threshold, where you can specify at what percentage (%) reduction, would you want the logic app to notify you on the reduction.

 

Once you review and create from ‘Image 2’, you would notice below resources created from the ARM template (Refer Image 3)

 

Image 3.png

Image 3: Summary of the resources created from the ARM template

 

After the successful deployment, make sure you authorize connections to the Office365API and AzuremonitorlogsAPI. You can do that by simply clicking on Office365API connection and selecting ‘Edit API Connection’ and click on ‘Authorize’ as shown in ‘Image 4’.

 

Image 4.png

Image 4: Authorize O365 API Connection

 

Similarly authorize the ‘azuremonitorlogs API’ connection too. Refer example ‘Image 5’

 

Image 5.png

Image 5: Authorize AzureMonitorLogs API Connection

 

NOTE: If you’re specifying an existing workspace, You might have to manually change the connections within the Logicapp (Since the connections cannot be used across the subscriptions (by design), the connection needs to be authorized in the subscription for the first time to the Log Analytics Workspace).

 

You can easily authorize connection by navigating to the Logic app that’s deployed and selecting ‘Logic app designer’ , when you select the first ‘For each’ loop, under ‘Run query and list results’ variable as shown in ‘Image 6’

 

That should pop-up a login window asking you to sign-in. After a successful sign-in, you would notice the successful connection as shown in ‘Image 6’

 

image 6.png

Image 6: Successful connection to Workspace

 

The logicapp will create another custom log (dailyAscScore_CL) within that workspace. So, for the first 5-10 minutes (soon after the deployment), until the database values are created in the custom table, you might experience failed runs. Once there’s data to display, the runs will always succeed. 

 

Output:

In an event when the Azure Security Center score reduces by the configured percentage and depending on the Scanfrequencyhour you’ve set in ‘Image 1’, it would drop you an alert notification to the email you specified in ‘Image 1’ as shown in ‘Image 7’

 

image 7.png

Image 7: Email notification alert

 

This logic app as well as many other can be found here:

Direct Link to GitHub sample

Azure Security Center GitHub Repo

 

I hope you enjoyed reading this article, go ahead and deploy this playbook in your environment and prioritize monitoring security hygiene.

 

Reviewer

Special thanks to:

Yuri Diogenes, @Yuri Diogenes, Senior Program Manager (CxE ASC Team)

 

 

 

 

 

Azure Marketplace new offers – Volume 81

Azure Marketplace new offers – Volume 81

This article is contributed. See the original author and article here.

We continue to expand the Azure Marketplace ecosystem. For this volume, 111 new offers successfully met the onboarding criteria and went live. See details of the new offers below:

Applications

ALFRED - AI Health Claims Automation.png

ALFRED – AI Health Claims Automation: ALFRED on Microsoft Azure is an automated, end-to-end health and medical claims platform for cashless (planned or emergency) and post-discharge (reimbursement) claims processing with payout in less than 15 minutes.

Amelia.png

Amelia: Amelia is a comprehensive conversational AI agent that listens and interacts with people to solve problems. Able to take on a wide variety of business and engineering tasks, Amelia reads natural language, understands context, applies logic, infers implications, and learns through experience.

Application Access Governance for Dynamics 365.png

Application Access Governance for Dynamics 365: Saviynt’s application access governance solution for Microsoft Dynamics 365 provides segregation of duty (SoD) management and continuous compliance monitoring with intelligent lifecycle management and risk-based access reviews to ensure users have access to the right data at the right time.

AUSIS - AI Underwriting Platform.png

AUSIS – AI Underwriting Platform: Artivatic Data Labs’ AUSIS is an AI-based underwriting automation and instant-decision platform that enables insurance businesses to perform real-time assessment for policyholders for risk, pricing, and policy decisions.

backdrop Powered by Miri.png

Backdrop Powered by Miri: Use Backdrop CMS to create websites ranging from a single administrator’s personal blog to a complex, multi-role e-commerce platform. Backdrop is easily expandable with add-ins, modules, and themes to ensure your website fits your needs.

Bot Foundry in Azure (SaaS).png

Botfoundry in Azure (SaaS): Hosted on Microsoft Azure and powered by Azure Bot Service and Language Understanding (LUIS), Botfoundry enables you to build bots tailored to individual users and global organizations.

CareFlow Vitals - electronic observations system.png

CareFlow Vitals – electronic observations system: CareFlow Vitals is an observation and decision-support system designed to improve patient safety and outcomes. It calculates early warning scores, monitors and analyzes patient vital signs to identify deteriorating conditions, and provides risk scores to trigger escalation pathways.

CARSURE-Auto & Vehicle Damage Assessment & Claims.png

CARSURE – Auto & Vehicle Damage Assessment & Claims: Available on-premises or in the cloud, CARSURE is an AI-based platform for vehicle damage estimation and for assessment and claims automation. It eliminates the need for physical inspection by detecting damage using photos, video, or guided mobile tools.

Cloud PAM for Azure, Azure AD and Microsoft 365.png

Cloud PAM for Azure, Azure AD, and Microsoft 365: Saviynt’s Cloud Privileged Access Management (Cloud PAM) solution provides privileged access to Microsoft Azure consoles and workloads and Azure Active Directory, along with tenant administration for Microsoft 365 applications, Azure services, and more.

Conversational AI for Healthcare.png

Conversational AI for Healthcare: Hyro’s conversational AI for healthcare seamlessly transforms troves of data into conversational interfaces powered by natural language understanding (NLU), simplifying the patient journey across channels such as websites, applications, and call centers.

Conversational Analytics.png

Conversational Analytics: Data Semantics Pvt. Ltd.’s Conversational Analytics platform on Microsoft Azure enables voice assistants and chat messengers to report real-time key performance indicators (KPIs) from business intelligence dashboards, CRM, ERP, and IT service management applications.

Covid_19_Assessment.png

COVID-19_Assessment: By providing a patient-centric care team model, dClinic’s private healthcare blockchain (PHB) and COVID-19 assessment platform help break down the traditional barriers of one-on-one interactions and data silos in healthcare.

Delair ai - Visual Intelligence for Infrastructure.png

Delair.ai – Visual Intelligence for Infrastructure: The delair.ai platform rapidly and repeatedly analyzes imagery of enterprise assets to help improve reliability, manage projects, and lower operating costs. The AI-powered solution enables companies to manage, view, analyze, and collaborate around digital twins of assets.

Delphix Masking for Azure (3TB).png

Delphix Masking for Azure (3TB): Delphix masking for Microsoft Azure enables you to find, mask, and govern up to 3 terabytes of sensitive data to maintain compliance in non-production environments. Secure relational databases, cloud-native data sources, and files for use by development and test teams.

Desk To Go.png

Desk To Go: Accessible via any device, Desk To Go is a virtual desktop solution hosted on Microsoft Azure. Work from anywhere with access to all your files as if you were right in front of your computer. This app is available in Portuguese, Spanish, and English.

DgSecure.png

DgSecure: DgSecure data provisioning monitors access to elements containing raw, sensitive data; provides thorough identity inventory and classification of sensitive data; and delivers back-end automation of data subject requests for privacy standards, such as CCPA and GDPR.

DNS Server (IaaS) for Ubuntu 18.04 LTS.png

DNS Server (IaaS) for Ubuntu 18.04 LTS: Tidal Media offers an Ubuntu 18.04 LTS image configured with DNS Server (IaaS), providing security-, performance-, and operations-related insights into the DNS infrastructure of your organization by collecting, analyzing, and correlating analytic and audit logs and other related data from DNS servers.

Dotclear CMS powered by MIRI.png

Dotclear CMS powered by MIRI: Written in PHP, the Dotclear content management system on Microsoft Azure respects web standards based on open-source solutions with multilingual interface and publishing capabilities.

EcoStruxure for Healthcare.png

EcoStruxure for Healthcare: EcoStruxure for Healthcare is an IoT-based platform designed to help healthcare facilities of all sizes improve operational efficiency and patient safety and satisfaction through modernized infrastructure management.

eDiscoveryPro - Prosecution Innovation Software.png

eDiscoveryPro – Prosecution Innovation Software: Data Vision Group LLC’s eDiscoveryPro is a scalable, highly secure application that complies with the FBI’s Criminal Justice Information Services. eDiscoveryPro enables district attorney’s offices to facilitate the transformation of paper-based workflows to digital processes.

ESPOCRM powered by MIRI.png

EspoCRM powered by MIRI: EspoCRM on Microsoft Azure provides companies and organizations with actionable insights that can help them enhance products and services, build and maintain fruitful relationships with customers, boost revenue, and drive business growth.

ExpectID.png

ExpectID: IDology’s ExpectID enables you to find and approve legitimate identities while also deterring fraud. It completes identity verification with as little as a name and an address, allowing you to quickly validate customer identity to drive revenue and perform appropriate due diligence.

ExponentCMS powered by MIRI.png

ExponentCMS powered by MIRI: Exponent CMS is an open-source content management system written in PHP and designed to help site owners develop and easily manage dynamic websites without having to code web pages or manage site navigation.

Fathym Low-Code Framework.png

Fathym Low-Code Framework: The Fathym Low-Code Framework enables developers to host, manage, and deploy data-driven applications that are tool-, platform-, and cloud-agnostic. It reduces development time by applying best-practice workflows for cloud infrastructure automation and app orchestration.

Firebird SQL RDBMS on Windows Server 2016.png

Firebird SQL RDBMS on Windows Server 2016: Cloud Infrastructure Services offers this image of Firebird, an open-source SQL relational database management system, configured on Windows Server 2016. Firebird offers ANSI-standard SQL features, concurrency, high performance, and powerful language support for stored procedures and triggers.

Firebird SQL RDBMS on Windows Server 2019.png

Firebird SQL RDBMS on Windows Server 2019: Cloud Infrastructure Services offers this image of Firebird, an open-source SQL relational database management system, configured on Windows Server 2019. Firebird offers ANSI-standard SQL features, concurrency, high performance, and powerful language support for stored procedures and triggers.

FreePBX 15 supporting commercial add-on modules.png

FreePBX 15 supporting commercial add-on modules: Build a cloud phone system, a call center, a traditional PBX with desk phones, or a fully software-based experience using WebRTC or softphones with FreePBX on Microsoft Azure. FreePBX includes a strong core-feature set and a large ecosystem of add-on modules.

Frogmi Store Operations.png

Frogmi Store Operations: Frogmi is a task management solution for retail that enables store managers, supervisors, and quality control personnel to perform store audits that automatically trigger tasks to support areas and then track the resolution of those tasks.

FrontAccounting powered by MIRI.png

FrontAccounting powered by MIRI: FrontAccounting on Microsoft Azure is a web-based accounting system for the entire ERP chain written in PHP and using MySQL. It enables users to submit purchase orders, maintain supplier accounts, send payments, and generate financial reports.

Gender Fitness.png

Gender Fitness: Gender Fitness helps raise awareness of the gender balance in your meetings and delivers valuable insight into inclusion and participation. The application links to your organization’s Office 365 calendars and provides a simple two-question survey to attendees for each meeting.

Geolog.png

Geolog: Based on the Epos data management infrastructure, Geolog on Microsoft Azure offers petrophysical and geological analysis tools, well data management, and robust data integration.

GetSimpleCMS powered by MIRI.png

GetSimpleCMS powered by MIRI: Designed for small organizations and individuals who need a small-to-midsize website, GetSimpleCMS makes content management adaptable to users’ needs by creating suitable designs for tablets, desktops, smartphones, and other devices.

Gitea - Git Server for Ubuntu 18.04.png

Gitea – Git Server for Ubuntu 18.04: Gitea is a powerful and easy-to-maintain self-hosted Git service. It supports Git revision control and provides other collaborative features, including bug/issue tracking, development wiki pages, and code review.

Graphnet CareCentric - shared care record.png

Graphnet CareCentric – shared care record: CareCentric integrates detailed information from acute hospitals, mental health and community organizations, general practices, and social care into a single digital care record available to clinicians and care professionals.

Helpdesk.png

Helpdesk: SteadyPoint Solutions’ Helpdesk is an IT service management system for assisting service desks with IT and non-IT trouble tickets. Designed to help small and medium-sized enterprises take their office experience to the next level, Helpdesk makes collaboration simple with the familiar Office 365 look and feel.

Hexator.png

Hexator: Intended for software developers, web coders, and administrators, Hexator is an online tool for hexadecimal encoding and decoding. Hexator encodes and decodes data from binary or text format to hexadecimal via copy and paste or file upload.

I&D PORTAL.png

I&D PORTAL: The I&D Portal platform for the financial sector streamlines business processes to help companies embrace digital transformation and reduce the costs, time, and resources associated with maintaining security control and compliance.

InMobi Telco AdCloud-in-a-box.png

InMobi Telco AdCloud-in-a-box: InMobi offers end-to-end cloud-based ad operations for global telecommunications companies (telcos) and mobile OEMs. Telcos can set up an internally managed ad operation to monetize devices, users, and data, while mobile OEMs can utilize a device monetization suite run by InMobi.

Insignia Gatekeeper.png

Insignia Gatekeeper: Gatekeeper from Insignia Medical Systems automatically copies your picture archiving and communication system (PACS) and radiology information system (RIS) medical images to your Microsoft Azure environment, protecting against local disasters and malicious attacks with secure, write-once Azure storage.

KALE LOGISTICS UPLIFT PORT COMMUNITY SYSTEM.png

KALE LOGISTICS UPLIFT PORT COMMUNITY SYSTEM: Port Community Systems (PCS) from Kale Logistics Solutions enables secure information exchange between public and private stakeholders, improving the efficiency of seaports and airports. PCS optimizes, manages, and automates port processes by connecting transport and logistics chains.

KeePass Password Safe on Windows Server 2016.png

KeePass Password Safe on Windows Server 2016: Cloud Infrastructure Services offers this image configured with the open-source KeePass software. KeePass encrypts passwords and other sensitive information, such as documents, ATM PINs, and credit card numbers, using a master password or key file to secure the KeePass database.

Managed Backup Services.png

Managed Backup Services: Integrity Partners offers a managed service of dedicated backups for Office 365, including Microsoft Exchange Online, OneDrive for Business, SharePoint Online, and Microsoft Teams. Manage and monitor backups via web or mobile.

Mantis powered by MIRI.png

Mantis powered by MIRI: Miri Infotech offers a version of Mantis Bug Tracker, an open-source bug-tracking system, preconfigured for running on Microsoft Azure. Features include tracking issues through a simple web-based interface; custom notifications; project management graphs; and time tracking.

MedDream.png

MedDream: DICOM Viewer by MedDream, a Softneta company, is a vendor-neutral medical image application that can be installed on Azure. The app integrates with patient portals, telemedicine systems, electronic health records, and any picture archiving system (PACS), including MedDream PACS, Orthanc, and more.

MediaWiki - Wikipedia Server on Ubuntu 18.04 LTS.png

MediaWiki – Wikipedia Server on Ubuntu 18.04 LTS: Tidal Media offers an Ubuntu server image configured with MediaWiki, a free and open-source wiki server. MediaWiki is a powerful, scalable software package and a feature-rich wiki implementation that uses PHP to process and display data stored in a database, such as MySQL.

Medium Sentinel Services Scope.png

Medium Sentinel Services Scope: Integrity Partners Sp. z o.o. will deploy Microsoft Azure Sentinel in your environment so you can implement it in your security operations center (SOC). Receive cloud-native SIEM, enhanced security visibility across cloud and on-premises environments, and more.

Microsoft SQL Server Developer for Ubuntu 18-04.png

Microsoft SQL Server 2019 Developer for Ubuntu:18-04: Ntegral’s database container image contains Microsoft SQL Server 2019 Developer Edition on Ubuntu 18.04. It includes all the functionality of Enterprise Edition but is licensed for use as a development and test system, not as a production server.

Microsoft SQL Server Enterprise for Ubuntu18-04.png

Microsoft SQL Server 2019 Enterprise for Ubuntu:18-04: Ntegral’s database container image contains a bring-your-own-license version of Microsoft SQL Server 2019 Enterprise Edition on Ubuntu 18.04. Enterprise Edition is ideal for apps requiring mission-critical in-memory performance, security, and high availability.

Microsoft SQL Server Express for Ubuntu 18-04.png

Microsoft SQL Server 2019 Express for Ubuntu:18-04: Ntegral’s database container image contains Microsoft SQL Server 2019 Express Edition on Ubuntu 18.04. Express Edition is freely downloadable and distributable.

Microsoft SQL Server Standard for Ubuntu 18-04.png

Microsoft SQL Server 2019 Standard for Ubuntu:18-04: Ntegral’s database container image contains a bring-your-own-license version of Microsoft SQL Server 2019 Standard Edition on Ubuntu 18.04. Ntegral packages applications following industry standards and monitors all components and libraries for vulnerabilities and updates.

Minimum Sentinel Services Scope.png

Minimum Sentinel Services Scope: Integrity Partners Sp. z o.o. will perform a minimal deployment of Microsoft Azure Sentinel in your environment, performing remote monitoring and optional threat hunting. Receive cloud-native SIEM, enhanced security visibility across cloud and on-premises environments, and more.

MiO - PoS, Agent Sales & Video Branches.png

MiO – PoS, Agent Sales & Video Branches: MiO from Artivatic Data Labs is an integrated, video-based insurance platform designed to support digital branch applications for insurance policies, brokers, point-of-sale connections to customers, lead generation, and policy distribution.

MistServer Streaming Media Toolkit for Ubuntu.png

MistServer Streaming Media Toolkit for Ubuntu: Tidal Media offers an Ubuntu server image configured with MistServer, an open-source streaming-media toolkit for over-the-top (OTT) internet streaming. MistServer allows you to take any media from any location using any method, and deliver it to anyone, anywhere, in any format.

Mix.png

Mix: Nuance’s Mix is a platform for creating advanced conversational experiences for chatbots and interactive voice response systems. With one tooling platform across the full software development lifecycle, enterprises gain greater control, accelerated development time, and increased business agility.

Nuvepro Cloud Labs.png

Nuvepro Cloud Labs: Cloud Labs from Nuvepro Technologies Pvt. Ltd. is a marketplace and software-as-a-service platform that provides hands-on labs for fast and effective learning. Use the self-service portal to rapidly deploy and access a sandbox environment configured with a technology stack and compute power on a cloud of your choice.

NVIDIA Image for AI - Optimized for PyTorch.png

NVIDIA Image for AI – Optimized for PyTorch: Deploy on Microsoft Azure a virtual machine configured with NVIDIA’s PyTorch distribution, certified for maximum performance on NVIDIA GPUs and easy access to NVIDIA NGC. NGC is a hub for GPU-optimized software for deep learning, machine learning, and high-performance computing.

NVIDIA Image for AI - Optimized for TensorFlow.png

NVIDIA Image for AI – Optimized for TensorFlow: NVIDIA’s GPU-optimized TensorFlow container included in this image will fast-track your end-to-end AI deployment and development process. Supported Azure virtual machine instances are NCv2, NCv3, and ND series.

NVIDIA Image for AI using GPUs.png

NVIDIA Image for AI using GPUs: NVIDIA NGC is a hub for GPU-optimized software for deep learning, machine learning, and high-performance computing. Containers from NGC require this image, and the supported Microsoft Azure virtual machine instances are the NCv2, NCv3, and ND series.

October CMS powered by MIRI.png

October CMS powered by MIRI: This offer from Miri Infotech contains a hardened image of October CMS, a content management system designed to make website creation, design, and editing faster and more intuitive. October CMS is based on the PHP programming language and the Laravel web application framework.

Omeka powered by MIRI.png

Omeka powered by MIRI: This offer from Miri Infotech contains a hardened image of Omeka, an open-source content management system for cultural institutions such as libraries and museums. Omeka is written in PHP and uses the Zend web application framework.

Opensource Social Network (OSSN) on Ubuntu 18.04.png

Opensource Social Network (OSSN) on Ubuntu 18.04: This ready-to-run software offered by Tidal Media allows you to create a social networking website. The quick-deployment image will launch Open Source Social Network (OSSN) on Ubuntu 18.04.

pivotx Powered by Miri.png

pivotx Powered by Miri: This virtual machine offered by Miri Infotech contains PivotX CMS, open-source software used for maintaining blogs, online journals, and other frequently updated websites. PivotX CMS is written in PHP and uses MySQL or flat files as a database.

Python escaper.png

Python escaper: PythonEscaper by Glueo is an online tool for software developers and administrators who need to update a string in Python code and want to avoid the tedious work of doing it manually. PythonEscaper supports escaping and unescaping string literals.

Quick Decisions, SAP Business One en Power BI.png

Quick Decisions, SAP Business One in Power BI: Streamline your SAP Business One decision-making with Innovación Orientada al Cliente’s pre-built dashboards in Microsoft Power BI. Dashboard categories cover sales, sales details, purchases, inventory, and accounts receivable. This offer is available only in Spanish.

RiskCenter360.png

RiskCenter360: RiskCenter360 from Evertec enhances risk-management and fraud-prevention strategies with intuitive analytical tools, robust rules, and an analyst-friendly environment console for addressing alerts. This app is available in Spanish, Portuguese, and English.

RiskMaster Creatio.png

RiskMaster Creatio: RiskMaster Creatio makes risk-registration and risk-management processes easy and transparent. It can be used to manage a particular risk type, such as customer complaints, or a group of risks, such as operational risks. English and Russian software interfaces are available.

Seenic AI Platform.png

Seenic AI Platform: Seenic AI, a proprietary visual AI platform from Everseen, blends AI and computer vision to aid retail stores. Seenic AI scans data and video of processes performed by humans, creates a digital blueprint of those processes, and shapes them for better outcomes.

Seequent Central.png

Seequent Central: Seequent Central, a geoscience model management solution, helps geologists and geophysicists visualize, track, integrate, and manage data from a centralized environment hosted on Microsoft Azure.

SentryOne SQL Sentry.png

SentryOne SQL Sentry: SQL Sentry from SentryOne is a scalable solution for database performance monitoring and for migrating and optimizing Microsoft SQL Server workloads on Microsoft Azure. SQL Sentry includes an intuitive environmental health dashboard, flexible alerting, and more.

SepiaCMS.png

SepiaCMS: SepiaCMS by Sepia Solutions serves as a multi-site marketing platform with multilingual support and integrated modules for portal management. Customers can design with drag-and-drop tools and manage an unlimited number of domains in one place.

Serendipity Powered by Miri.png

Serendipity Powered by Miri: This virtual machine offered by Miri Infotech contains Serendipity, a PHP-powered blog engine. Although the default package is designed for the casual blogger, Serendipity offers an expandable framework and can be used with professional applications.

Servian VisualCortex.png

Servian VisualCortex: With its intuitive self-serve interface and AI toolbox, VisualCortex from Servian harvests data from your cameras or video archive to provide insights on safety and security. Configure VisualCortex over your CCTV arrays or any combination of cloud or edge-compute setups.

Skolsynk for Microsoft.png

Skolsynk for Microsoft: Skolsynk for Microsoft is a collaboration between several Swedish teaching aid suppliers. It syncs schools, students, teachers, and groups from Microsoft 365 with teaching material providers. This app is available only in Swedish.

SLM Cost Take-Out.png

SLM Cost Take-Out: SoftwareONE’s SLM Cost Take-Out aims to save your organization money by focusing on increasing operational effectiveness through analyzing software consumption.

Solar Hand Sanitizer Simple.png

Solar Hand Sanitizer Simple: SIMPLE is a solar hand sanitizer for disinfection in public places. Its weather resistance makes it suitable for outdoor conditions as well as indoor spaces. Each dispenser can be powered by a photovoltaic panel and is fully autonomous.

Solteq DataShovel.png Solteq DataShovel: Solteq Oyj’s DataShovel is a next-generation data warehouse automation tool. DataShovel creates a visual model of the data warehouse, making customers’ workflows more agile and efficient.
Subrion CMS powered by MIRI.png

Subrion CMS powered by MIRI: This ready-to-launch virtual machine offered by Miri Infotech contains Subrion CMS, an open-source content management system based on PHP and MySQL. Subrion CMS is used to build websites and is suitable for small projects as well as high-load portals.

Temperature Detector API, Thermoquaesitor.png

Temperature Detector API, Thermoquaesitor: Thermoquaesitor, a cross-browser REST API for apps that use thermal imaging, detects the temperatures of people’s faces based on photos. For one photo, the API may return multiple predictions with different probability scores of detected temperatures.

Think ChatBot with Autotask.png

Think ChatBot with Autotask: Think ChatBot from Think AI Consulting Corporation can engage with customers and reduce email volume at your business. Customers can get their ticket status and schedule assignments with the Autotask platform.

Thycotic Secret Server Privileged Access Mgmt.png

Thycotic Secret Server Privileged Access Mgmt.: Thycotic’s flagship privileged access management (PAM) and least-privilege endpoint security offerings are hosted on Microsoft Azure and include Secret Server Cloud, Privilege Manager, and Account Lifecycle Manager.

Tiki Wiki- Content Managenet Groupware.png

Tiki Wiki: Content Management Groupware: This offer from Miri Infotech contains a pre-configured one-click deployment of Tiki Wiki CMS, a free and open-source Wiki-based content management system.

Verisium.png Verisium: Verisium is a marketing IoT platform that connects retail brands with customers through products, regardless of sales channels and geography, by embedding NFC chips and QR codes into products.
Webmin - Easy GUI SysAdmin Server for Ubuntu.png

Webmin – Easy GUI SysAdmin Server for Ubuntu: This ready-to-run Ubuntu image from Tidal Media contains Webmin, a web-based interface for Unix system administration. Webmin removes the need to manually edit Unix configuration files and lets you manage a system remotely or from the console.

Webmin - Easy GUI SysAdmin Server on LINUX Centos.png

Webmin – Easy GUI SysAdmin Server on LINUX Centos: This offer from Tidal Media contains Webmin on the CentOS Linux platform. Webmin is a web-based interface for Unix system administration. Using any modern web browser, you can set up user accounts, Apache, DNS, file sharing, and more.

Consulting services

Azure Data Analytics Foundation- 4-Wk PoC.png

Azure Data Analytics Foundation: 4-Wk PoC: In this proof of concept, Data-Driven AI will conduct discovery workshops with stakeholders and deliver a modern data platform on Microsoft Azure that’s ready for advanced analytics, machine learning, and big data transformations.

Azure Data Analytics Optimization 5-Day Assessment.png

Azure Data Analytics Optimization 5-Day Assessment: Let Enimbos help you optimize data collected from your Microsoft Azure infrastructure. Enimbos bases its approach on four areas: ingestion and data preparation, data management and quality, machine learning and AI, and data visualization and reporting.

Azure Kubernetes Service- 2- Week Workshop.png

Azure Kubernetes Service: 2- Week Workshop: In this workshop, Applied Cloud Systems will teach the fundamentals of Docker and Kubernetes and enable capabilities for deploying, scaling, and updating applications on Microsoft Azure Kubernetes Service.

Azure Machine Learning- 2-Week Proof of Concept.png

Azure Machine Learning: 2-Week Proof of Concept: In this proof of concept, Softcrylic will work with your team to scope and implement a predictive analytics business use case using your data in a private and secure Microsoft Azure virtual network. The outcome will be operational machine learning models that meet your expectations.

Azure Sentinel Workshop and Deployment (Free).png Azure Sentinel Workshop & Deployment (Free): In this free engagement, Hydra Security will help your organization get started with Microsoft Azure Sentinel and security analytics by deploying and configuring an Azure Sentinel instance and integrating up to three supported log sources.
Azure Virtual WAN plus Fortinet- 2 weeks assessment.png

Azure Virtual WAN + Fortinet: 2 weeks assessment: Microsoft Azure Virtual WAN can provide low-latency secure routing and help your business reduce costs and complexity. In this offer, ANS Group Limited will deliver Azure Virtual WAN along with Fortinet SD-WAN capability.

CAF Ready Transformation- 10-Week Implementation.png

CAF Ready Transformation: 10-Week Implementation: Contino will provide the customer with a self-service, Microsoft Cloud Adoption Framework-aligned Microsoft Azure landing zone. Contino will upskill the customer’s engineering employees so they can take over at the conclusion of the engagement.

Cloud and DC Transformation Advisory 1 Hour Briefing.png

Cloud & DC Transformation Advisory 1 Hour Briefing: Insight Direct (UK) Limited will provide an overview of its services and how you can benefit from them. These include discovery workshops, a hybrid cloud assessment, and proof-of-concept and migration services. This offer is available in Swedish.

Comprehensive Azure Review 1 Week Assessment.png

Comprehensive Azure Review 1 Week Assessment: IFI Techsolutions will analyze your Microsoft Azure environment, evaluate your resources, and help you adopt best practices to ensure that you get the most value out of your cloud investment.

Comprehensive Azure Review 2 Week Implementation.png

Comprehensive Azure Review 2 Week Implementation: Consultants from IFI Techsolutions will conduct a 360-degree review of your Microsoft Azure environment, analyzing it for cost savings, resource optimization, end-to-end security, and high availability so you can get the best value out of your Azure investment.

Data Estate Modernisation- 10 weeks implementation.png

Data Estate Modernization: 10 weeks implementation: In this engagement, Nordcloud’s experts will define a data operating model and implement an initial data platform for ingesting, managing, and analyzing data on Microsoft Azure.

Development Project- Marketing, Sales, and Service.png Development Project: Marketing, Sales, and Service: Iterbi Consulting provides companies with a marketing, sales, and service digital transformation strategy tailored to their needs. It offers seamless personalized communication with clients to influence their decision-making and drive quicker transactions.
Digital Connectivity Check- 2 Week Assessment.png

Digital Connectivity Check: 2 Week Assessment: Before you can reap the benefits of the cloud, you need to know whether your network can handle the traffic. A solution architect from ANS Group Limited will conduct an assessment and detail any required changes to your network architecture.

ExpressRoute and connectivity- 2 week Assessment.png

ExpressRoute & connectivity: 2 week Assessment: In this assessment, an ANS Group Limited solutions architect will help you validate your current network and determine what changes are required for you to be able to deliver Microsoft Azure ExpressRoute connectivity.

GreenPages Cloud Xcelerator Program.png GreenPages Cloud Xcelerator Program: GreenPages’ Cloud Xcelerator Program is a series of three workshops paired with a reference architecture implementation that includes a cloud opportunity assessment, a cloud readiness assessment, and a minimum viable cloud proof of concept that leverages the Cloud Xcelerator Platform.
HPE Accelerator Workshop for Cloud - SAP, 2 Days.png

HPE Accelerator Workshop for Cloud – SAP, 2 Days: Hewlett Packard Enterprise’s workshop will define a strategy and a timeline for your SAP-to-Azure migration. Topics will include economic modeling, SAP consolidation priorities, and key SAP operating requirements for Microsoft Azure.

Implementation Project.png Implementation Project: Iterbi Consulting provides a marketing, sales, and service digital transformation tailored to your needs. Learn how to deliver a personalized, omnichannel customer experience while driving successful digital transformation in your organization.
ISV-SaaS Consulting Offer - 1 Week Workshop.png

ISV/SaaS Consulting Offer – 1 Week Workshop: Whether you want to migrate and modernize an app in the cloud or transfer workloads between clouds, LANcom Technology’s DevOps team will review your product and provide recommendations using industry best practices.

ISV-SaaS Consulting Offer - Free 4 hour Assessment.png

ISV/SaaS Consulting Offer – Free 4 hour Assessment: Book a call with LANcom Technology in this free four-hour assessment. LANcom Technology’s DevOps team will carry out an initial assessment of your software and empower you with a high-level overview on the benefits of migrating your development to the cloud.

Managed Services & Enablement.png Managed Services & Enablement: Iterbi Consulting’s managed services and marketing, sales, and service enablement provide mass content production to achieve your goals. Outsourcing with Iterbi enables your team to focus on essential tasks to hit performance targets. This offering is available in English and Russian.
Modern App With Kubernetes 1 Week Proof Of Concept.png

Modern App with Kubernetes 1 Week Proof Of Concept: In this proof of concept, IFI Techsolutions consultants and architects will work closely with you to modernize, monitor, and scale your application using Microsoft Azure Kubernetes Services.

Nordcloud - Data Enablement- 3 days workshop.png

Nordcloud – Data Enablement: 3 days workshop: Nordcloud’s workshop will allow business and technical stakeholders to understand the opportunity of building a data platform on Microsoft Azure. Nordcloud will define an operating model and select initial use cases for the implementation.

Nordcloud's CAF - 3 Days Workshop.png

Nordcloud’s CAF – 3 Days Workshop: In this workshop, Nordcloud will define an operating model to enable secure, agile, and cost-efficient use of Microsoft Azure across your organization. Nordcloud’s workshop is aligned with the Microsoft Cloud Adoption Framework roadmap.

Public Sector ExpressRoute- 2 Weeks Assessment.png

Public Sector ExpressRoute: 2 Weeks Assessment: ANS Group Limited will deliver Microsoft Azure ExpressRoute along with Fortinet SD-WAN capability so organizations can attain secure connectivity to the cloud while having access to public-sector networks such as PSN and HSCN.

SAP on Azure Assessment - 6 week.png

SAP on Azure Assessment – 6 week: Fast-track your journey to SAP S/4HANA on Microsoft Azure with this assessment from Fujitsu. The assessment will provide you with application and architecture recommendations, a migration plan, a business case, and more.

Windows Virtual Desktop- 3 Week Implementation.png

Windows Virtual Desktop: 3 Week Implementation: In this engagement, Applied Cloud Systems will establish a pilot implementation of Windows Virtual Desktop for up to 50 users in preparation for production deployment. This engagement will allow for a work-from-home experience similar to being in the office.