> For a complete index of all SignalWire documentation pages, fetch https://signalwire.com/docs/llms.txt

# isNetworkHealthy$

> Simple boolean health indicator derived from stats monitor.

```ts
get isNetworkHealthy$(): Observable<boolean>
```

Simple boolean health indicator derived from stats monitor.

## isNetworkHealthy

```ts
get isNetworkHealthy(): boolean
```

Whether the network is currently healthy.

## **Examples**

```ts
call.isNetworkHealthy$.subscribe((isNetworkHealthy) => {
  console.log('isNetworkHealthy:', isNetworkHealthy);
});
```