> ## Documentation Index
> Fetch the complete documentation index at: https://docs.daily.co/llms.txt
> Use this file to discover all available pages before exploring further.

# stopLocalAudioLevelObserver()

> Stops polling the local participant audio level.

`stopLocalAudioLevelObserver()`

<Badge color="green">{"✓"} Prebuilt</Badge> <Badge color="green">{"✓"} Custom</Badge>

Stops the local audio level observer started by [`startLocalAudioLevelObserver()`](/reference/daily-js/instance-methods/start-local-audio-level-observer). No more [`local-audio-level`](/reference/daily-js/events/meeting-events#local-audio-level) events will be emitted after this call.

## Return value

Returns `void`.

## Example

```javascript theme={null}
call.stopLocalAudioLevelObserver();
```

## See also

<CardGroup>
  <Card title="Methods" icon="code" iconType="solid">
    * [startLocalAudioLevelObserver()](/reference/daily-js/instance-methods/start-local-audio-level-observer)
    * [isLocalAudioLevelObserverRunning()](/reference/daily-js/instance-methods/is-local-audio-level-observer-running)
    * [getLocalAudioLevel()](/reference/daily-js/instance-methods/get-local-audio-level)
    * [stopRemoteParticipantsAudioLevelObserver()](/reference/daily-js/instance-methods/stop-remote-participants-audio-level-observer)
  </Card>

  <Card title="Events" icon="bolt" iconType="solid">
    * [local-audio-level](/reference/daily-js/events/meeting-events#local-audio-level)
  </Card>

  <Card title="Guides" icon="book-open" iconType="solid">
    * [Audio and video](/docs/daily-js/guides/audio-video)
  </Card>
</CardGroup>
