---
title: "Out Of Memory"
description: "Learn how to turn off Out Of Memory tracking"
url: https://docs.sentry.io/platforms/apple/guides/watchos/configuration/out-of-memory/
---

# Out Of Memory | Sentry for watchOS

We renamed this integration to [watchdog terminations](https://docs.sentry.io/platforms/apple/guides/watchos/configuration/watchdog-terminations.md) in the 8.0.0 release. The out of memory integration and the watchdog terminations integration are the same thing. The only difference is the name.

If you'd like to opt out of this feature, you can do so using options:

```swift
import Sentry

SentrySDK.start { options in
    options.dsn = "___PUBLIC_DSN___"
    options.enableOutOfMemoryTracking = false
}
```
