Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add Basic Monitoring 10.2.2 and 10.3.2 support #109

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
39 changes: 39 additions & 0 deletions Basic Monitoring/10.2.2/xm/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
# Azure Monitoring module for Sitecore XM Environment

This template deploys the Sitecore Application Level Monitoring module and its related resources into a Sitecore XM environment.

## Parameters

The **deploymentId** parameter is filled in by the PowerShell script.

| Parameter | Description
--------------------------------------------|------------------------------------------------
| deploymentId | The prefix of the Sitecore resources names within a resource group.
| provisionOMSWorkspace | Provision Log Analytics workspace (OMS).
| omsWorkspaceMetricsRetentionDays | The number of days OMS will retain data (if `provisionOMSWorkspace` is `true`).
| omsWorkspaceLocation | The location where OMS will be provisioned (if `provisionOMSWorkspace` is `true`).
| omsWorkspaceAlertRecipients | List of email addresses for people to receive alerts.
| applicationInsightsLocation | The location of the provisioned application insights.
| searchProvider | Types of Search Provider, Azure or Solr.
| setLogAnalyticsAlert | Set daily cap alert for OMS instead of application insights.

## Deploying as part of Sitecore deployment

Steps to configure the Sitecore deployment parameters to include the Application Level Monitoring module:

* Add the following snippet to the `modules` parameter:

```JSON
{
"name": "monitoring",
"templateLink": "<placeholder>",
"parameters": {
"omsWorkspaceMetricsRetentionDays" : <integer value. free plans are always 7, other plans comes with 31 by default>,
"omsWorkspaceAlertRecipients" : "<emails separated by a semicolon>",
"omsWorkspaceLocation" : "<OMS Workspace location, must be supported by Azure>",
"applicationInsightsLocation" : "<location of the application insight associated with Sitecore>",
"searchProvider" : "<Azure or Solr>",
"setLogAnalyticsAlert": <boolean value. true if using classic application insights, false if using workspace-based application insights>
}
}
```
Loading