This is a cost option for Oracle Enterprise Edition
SET LINESIZE 200
SELECT u1.name, u1.detected_usages
FROM dba_feature_usage_statistics u1
WHERE u1.version = (SELECT MAX(u2.version)
FROM dba_feature_usage_statistics u2
WHERE u2.name = u1.name
AND u1.name LIKE 'Active Data%')
ORDER BY u1.name;
If the detected usages for "Active Data Guard - Real-Time Query on Physical Standby" is non-zero, then you need a Active Data Guard option license.