We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 50e0e9e commit 26972e2Copy full SHA for 26972e2
packages/cli/src/utils/miscellaneous.ts
@@ -564,6 +564,7 @@ export async function sendTelemetry(
564
version,
565
exit_code,
566
environment: process.env.REDOCLY_ENVIRONMENT,
567
+ metadata: process.env.REDOCLY_CLI_TELEMETRY_METADATA,
568
environment_ci: process.env.CI,
569
has_config: has_config ? 'yes' : 'no',
570
spec_version,
@@ -592,6 +593,7 @@ export type Analytics = {
592
593
version: string;
594
exit_code: ExitCode;
595
environment?: string;
596
+ metadata?: string;
597
environment_ci?: string;
598
raw_input: string;
599
has_config?: 'yes' | 'no';
0 commit comments