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

# networkIssues$

> Observable of current network health issues (empty array = healthy).

```ts
get networkIssues$(): Observable<CallNetworkIssue[]>
```

Observable of current network health issues (empty array = healthy).

## networkIssues

```ts
get networkIssues(): CallNetworkIssue[]
```

Current snapshot of network issues.

## **Examples**

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