Search notes:

v$archive_dest_status

On a (data guard) Primary database[primary database, this view can be used to check wheather there are redo transport errors or redo gaps on one of the standby databases:
select
  status,     -- should be VALID
  gap_status  -- should be NOGAP
from
  v$archive_dest_status
where
  dest_id = 4;

See also

Oracle Dynamic Performance Views

Index