# <a id="bitdrift.public.unary.alerts.v1.AlertNotificationConfig"></a>AlertNotificationConfig

**Source definition:** [`src/bitdrift/public/unary/alerts/v1/notifications.proto#L16-L34`](<https://github.com/bitdriftlabs/api/blob/main/src/bitdrift/public/unary/alerts/v1/notifications.proto#L16-L34>)

Configuration for a notification that is sent in response to an alert condition. Alert conditions
 include session capture notifications, chart alerts, etc.

<section class="proto-fields-table" markdown>
| Field | Type | Description |
|---|---|---|
| notification_group | <span class="proto-type proto-type-message">[<i class="proto-type-part">bitdrift</i><i class="proto-type-dot">.</i><i class="proto-type-part">public</i><i class="proto-type-dot">.</i><i class="proto-type-part">unary</i><i class="proto-type-dot">.</i><i class="proto-type-part">alerts</i><i class="proto-type-dot">.</i><i class="proto-type-part">v1</i><i class="proto-type-dot">.</i><i class="proto-type-part">AlertNotificationConfig</i><i class="proto-type-dot">.</i><i class="proto-type-part">NotificationGroup</i>](#bitdrift.public.unary.alerts.v1.AlertNotificationConfig.NotificationGroup "bitdrift.public.unary.alerts.v1.AlertNotificationConfig.NotificationGroup")</span> | Sends notifications to a notification group. |
| disabled | <span class="proto-type proto-type-primitive">bool</span> | Whether the notification is currently disabled/muted. |

</section>
<p class="h4">Example</p>
```json
{
  "disabled": false,
  "notification_group": {
    "name": "engineering-oncall"
  }
}
```

# <a id="bitdrift.public.unary.alerts.v1.AlertNotificationConfig.NotificationGroup"></a>AlertNotificationConfig.NotificationGroup

**Source definition:** [`src/bitdrift/public/unary/alerts/v1/notifications.proto#L18-L24`](<https://github.com/bitdriftlabs/api/blob/main/src/bitdrift/public/unary/alerts/v1/notifications.proto#L18-L24>)

Identifies a notification group target for an alert notification.

<section class="proto-fields-table" markdown>
| Field | Type | Description |
|---|---|---|
| name | <span class="proto-type proto-type-primitive">string</span><br><em class="proto-field-annotation">between 1 and 255 chars</em> | The name of the notification group configured for the organization. |

</section>
<p class="h4">Example</p>
```json
{
  "name": "engineering-oncall"
}
```

