-
Notifications
You must be signed in to change notification settings - Fork 280
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Support monitoring for new Sitecore version (#64)
- Loading branch information
1 parent
beabd4b
commit b535819
Showing
130 changed files
with
64,515 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
# 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. | ||
| omsWorkspaceMetricsRetentionDays | The number of days OMS will retain data. | ||
| omsWorkspaceAlertRecipients | List of email addresses for people to recieve alerts. | ||
| omsWorkspaceLocation | The location of the provisioned OMS. | ||
| applicationInsightsLocation | The location of the provisioned application insights. | ||
| searchProvider | Types of Search Provider, Azure or Solr. | ||
|
||
## 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 seperated by a semi colon>", | ||
"omsWorkspaceLocation" : "<OMS Workspace location, must be supported by Azure>", | ||
"applicationInsightsLocation" : "<location of the application insight associated with Sitecore>", | ||
"searchProvider" : "<Azure or Solr>" | ||
} | ||
} | ||
``` |
Oops, something went wrong.