You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
--reach-analysis-memory-limit The maximum memory in MB to use for the reachability analysis. The default is 8192MB.
40
40
--reach-analysis-timeout Set timeout for the reachability analysis. Split analysis runs may cause the total scan time to exceed this timeout significantly.
41
+
--reach-concurrency Set the maximum number of concurrent reachability analysis runs. It is recommended to choose a concurrency level that ensures each analysis run has at least the --reach-analysis-memory-limit amount of memory available. NPM reachability analysis does not support concurrent execution, so the concurrency level is ignored for NPM.
41
42
--reach-disable-analytics Disable reachability analytics sharing with Socket. Also disables caching-based optimizations.
43
+
--reach-disable-analysis-splitting Limits Coana to at most 1 reachability analysis run per workspace.
42
44
--reach-ecosystems List of ecosystems to conduct reachability analysis on, as either a comma separated value or as multiple flags. Defaults to all ecosystems.
43
45
--reach-exclude-paths List of paths to exclude from reachability analysis, as either a comma separated value or as multiple flags.
44
46
--reach-skip-cache Skip caching-based optimizations. By default, the reachability analysis will use cached configurations from previous runs to speed up the analysis.
'Set timeout for the reachability analysis. Split analysis runs may cause the total scan time to exceed this timeout significantly.',
15
15
},
16
+
reachConcurrency: {
17
+
type: 'number',
18
+
default: 1,
19
+
description:
20
+
'Set the maximum number of concurrent reachability analysis runs. It is recommended to choose a concurrency level that ensures each analysis run has at least the --reach-analysis-memory-limit amount of memory available. NPM reachability analysis does not support concurrent execution, so the concurrency level is ignored for NPM.',
21
+
},
16
22
reachDisableAnalytics: {
17
23
type: 'boolean',
18
24
default: false,
19
25
description:
20
26
'Disable reachability analytics sharing with Socket. Also disables caching-based optimizations.',
21
27
},
28
+
reachDisableAnalysisSplitting: {
29
+
type: 'boolean',
30
+
default: false,
31
+
description:
32
+
'Limits Coana to at most 1 reachability analysis run per workspace.',
0 commit comments