-
Notifications
You must be signed in to change notification settings - Fork 2
CPP-2702 initial MVP of a metrics client #1152
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
fcdea77
feat(telemetry): add package to send client side metrics
ivomurrell 49bc3e9
feat(plugin): add systemCode option to root Tool Kit options
ivomurrell 44b89bf
feat(core): try to infer system code for metrics attribute
ivomurrell be622b9
test(telemetry): add tests
ivomurrell e29de44
feat(telemetry): don't send metrics to the server until enabled
ivomurrell 2cccf95
feat(telemetry): add option to opt-in to telemetry
ivomurrell e265e93
test: update snapshots for new root plugin option
ivomurrell File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,28 @@ | ||
| import { readFile } from 'node:fs/promises' | ||
|
|
||
| import type { ValidConfig } from '@dotcom-tool-kit/config' | ||
| import type { RootOptions } from '@dotcom-tool-kit/plugin/src/root-schema' | ||
| import type DopplerSchema from '@dotcom-tool-kit/doppler/src/schema' | ||
|
|
||
| import type * as z from 'zod' | ||
|
|
||
| export async function guessSystemCode(config: ValidConfig): Promise<string | undefined> { | ||
| const systemCodeFromRoot = (config.pluginOptions['app root']?.options as RootOptions).systemCode | ||
| if (systemCodeFromRoot) { | ||
| return systemCodeFromRoot | ||
| } | ||
|
|
||
| const systemCodeFromDoppler = ( | ||
| config.pluginOptions['@dotcom-tool-kit/doppler']?.options as z.infer<typeof DopplerSchema> | ||
| ).project | ||
| if (systemCodeFromDoppler && !systemCodeFromDoppler.startsWith('repo_')) { | ||
| return systemCodeFromDoppler | ||
| } | ||
|
|
||
| try { | ||
| const packageJson = JSON.parse(await readFile('package.json', 'utf8')) | ||
| if (packageJson.name) { | ||
| return `npm:${packageJson.name}` | ||
| } | ||
| } catch {} | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,11 @@ | ||
| import type { RootOptions } from '@dotcom-tool-kit/plugin/src/root-schema' | ||
| import type { TelemetryProcess, TelemetryRecorder } from '@dotcom-tool-kit/telemetry' | ||
|
|
||
| // TODO:IM:20260113 in the future this type signature could be changed to allow | ||
| // enabling telemetry even without a valid config (and the root options derived | ||
| // from it,) so that we can track metrics related to invalid configurations. | ||
| export function enableTelemetry(metrics: TelemetryProcess | TelemetryRecorder, options: RootOptions) { | ||
| if (options.enableTelemetry) { | ||
| metrics.enable() | ||
| } | ||
| } | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -22,6 +22,9 @@ | |
| { | ||
| "path": "../../lib/state" | ||
| }, | ||
| { | ||
| "path": "../../lib/telemetry" | ||
| }, | ||
| { | ||
| "path": "../../lib/base" | ||
| } | ||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.