@@ -1402,6 +1402,7 @@ export interface IEventNamePropertyMapping {
1402
1402
/* __GDPR__
1403
1403
"native_finder_missing_conda_envs" : {
1404
1404
"missing" : { "classification": "SystemMetaData", "purpose": "FeatureInsight", "isMeasurement": true, "owner": "donjayamanne" },
1405
+ "envDirsNotFound" : { "classification": "SystemMetaData", "purpose": "FeatureInsight", "isMeasurement": true, "owner": "donjayamanne" },
1405
1406
"userProvidedCondaExe" : { "classification": "SystemMetaData", "purpose": "FeatureInsight", "owner": "donjayamanne" },
1406
1407
"rootPrefixNotFound" : { "classification": "SystemMetaData", "purpose": "FeatureInsight", "owner": "donjayamanne" },
1407
1408
"condaPrefixNotFound" : { "classification": "SystemMetaData", "purpose": "FeatureInsight", "owner": "donjayamanne" },
@@ -1419,21 +1420,63 @@ export interface IEventNamePropertyMapping {
1419
1420
* Number of missing conda environments.
1420
1421
*/
1421
1422
missing : number ;
1423
+ /**
1424
+ * Total number of env_dirs not found even after parsing the conda_rc files.
1425
+ * This will tell us that we are either unable to parse some of the conda_rc files or there are other
1426
+ * env_dirs that we are not able to find.
1427
+ */
1428
+ envDirsNotFound ?: number ;
1422
1429
/**
1423
1430
* Whether a conda exe was provided by the user.
1424
1431
*/
1425
1432
userProvidedCondaExe ?: boolean ;
1433
+ /**
1434
+ * Whether the user provided a conda executable.
1435
+ */
1426
1436
rootPrefixNotFound ?: boolean ;
1437
+ /**
1438
+ * Whether the conda prefix returned by conda was not found by us.
1439
+ */
1427
1440
condaPrefixNotFound ?: boolean ;
1441
+ /**
1442
+ * Whether we found a conda manager or not.
1443
+ */
1428
1444
condaManagerNotFound ?: boolean ;
1445
+ /**
1446
+ * Whether we failed to find the system rc path.
1447
+ */
1429
1448
sysRcNotFound ?: boolean ;
1449
+ /**
1450
+ * Whether we failed to find the user rc path.
1451
+ */
1430
1452
userRcNotFound ?: boolean ;
1453
+ /**
1454
+ * Number of config files (excluding sys and user rc) that were not found.
1455
+ */
1431
1456
otherRcNotFound ?: boolean ;
1457
+ /**
1458
+ * Number of conda envs that were not found by us, and the envs belong to env_dirs in the sys config rc.
1459
+ */
1432
1460
missingEnvDirsFromSysRc ?: number ;
1461
+ /**
1462
+ * Number of conda envs that were not found by us, and the envs belong to env_dirs in the user config rc.
1463
+ */
1433
1464
missingEnvDirsFromUserRc ?: number ;
1465
+ /**
1466
+ * Number of conda envs that were not found by us, and the envs belong to env_dirs in the other config rc.
1467
+ */
1434
1468
missingEnvDirsFromOtherRc ?: number ;
1469
+ /**
1470
+ * Number of conda envs that were not found by us, and the envs belong to env_dirs in the sys config rc.
1471
+ */
1435
1472
missingFromSysRcEnvDirs ?: number ;
1473
+ /**
1474
+ * Number of conda envs that were not found by us, and the envs belong to env_dirs in the user config rc.
1475
+ */
1436
1476
missingFromUserRcEnvDirs ?: number ;
1477
+ /**
1478
+ * Number of conda envs that were not found by us, and the envs belong to env_dirs in the other config rc.
1479
+ */
1437
1480
missingFromOtherRcEnvDirs ?: number ;
1438
1481
} ;
1439
1482
/**
0 commit comments