---
title: "Add-DbaDbMirrorMonitor"
description: "Creates a database mirroring monitor job that periodically updates the mirroring status for every mirrored database on the server instance."
url: "https://dbatools.io/Add-DbaDbMirrorMonitor/"
availability: "Windows, Linux, macOS"
tags: ["Mirroring", "Mirror", "HA"]
author: "Chrissy LeMaire (@cl), netnerds.net"
source: "https://github.com/dataplat/dbatools/blob/master/public/Add-DbaDbMirrorMonitor.ps1"
last_updated: "2024-01-01"
---

# Add-DbaDbMirrorMonitor

## Synopsis

Creates a database mirroring monitor job that periodically updates the mirroring status for every mirrored database on the server instance.

## Description

Creates a database mirroring monitor job that periodically updates the mirroring status for every mirrored database on the server instance.  
  
Basically executes sp_dbmmonitoraddmonitoring.

## Syntax

```powershell
Add-DbaDbMirrorMonitor
    [-SqlInstance] <DbaInstanceParameter[]>
    [[-SqlCredential] <PSCredential>]
    [-EnableException]
    [-WhatIf]
    [-Confirm]
    [<CommonParameters>]

```

## Examples

### Example 1: Creates a database mirroring monitor job that periodically updates the mirroring status for every mirrored...

```powershell
PS C:\> Add-DbaDbMirrorMonitor -SqlInstance sql2008, sql2012
```

Creates a database mirroring monitor job that periodically updates the mirroring status for every mirrored database on sql2008 and sql2012.  

### Required Parameters

##### -SqlInstance

The target SQL Server instance

| Property | Value |
| --- | --- |
| Alias |  |
| Required | True |
| Pipeline | true (ByValue) |
| Default Value |  |

### Optional Parameters

##### -SqlCredential

Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).  
Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.  
For MFA support, please use Connect-DbaInstance.

| Property | Value |
| --- | --- |
| Alias |  |
| Required | False |
| Pipeline | false |
| Default Value |  |

##### -EnableException

By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.  
This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.  
Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

| Property | Value |
| --- | --- |
| Alias |  |
| Required | False |
| Pipeline | false |
| Default Value | False |

##### -WhatIf

Shows what would happen if the command were to run. No actions are actually performed.

| Property | Value |
| --- | --- |
| Alias | wi |
| Required | False |
| Pipeline | false |
| Default Value |  |

##### -Confirm

Prompts you for confirmation before executing any changing operations within the command.

| Property | Value |
| --- | --- |
| Alias | cf |
| Required | False |
| Pipeline | false |
| Default Value |  |

## Outputs

**PSCustomObject**

Returns one object per SQL Server instance where the mirroring monitor was successfully added.

**Properties:**

- ComputerName: The computer name of the SQL Server instance
- InstanceName: The SQL Server instance name
- SqlInstance: The full SQL Server instance name (computer\instance)
- MonitorStatus: Status of the operation - displays "Added" when the mirror monitoring job is successfully created

---

Part of [dbatools](https://dbatools.io/), a free and open source PowerShell module for SQL Server administration. Full command index: https://dbatools.io/commands/
