gitpod/gitpod-ws.code-workspace
Tarun Pothulapati c96adbed6d [telemetry] Add new telemetry.data config option for telemetry
Fixes https://github.com/gitpod-io/gitpod/issues/10766

This PR adds a new `experimental.telemetry.data.platform` config option
that is then passed to `GITPOD_INSTALLATION_PLATFORM` env variable, which
is then transmitted by the `gitpod-telemetry` job as the `platform`
property into our telemetry store. The value of this env variable
is then overrided by each install method.

This env can have the following values:
- `installer` by default as when the installation is done directly
  through the installer, We don't have enough information
   about the environment.
-  [One of the `distribution` values](https://docs.replicated.com/reference/template-functions-static-context#distribution)
   when done through `kots`. This would have the distribution in which
   Gitpod is being installed, and is dependent on `kots`.
- `local-preview` when the installation is done through the new
   preview install method.

As the changes show in the PR, each installation method overrides
the value.

Signed-off-by: Tarun Pothulapati <tarun@gitpod.io>
2022-07-01 14:53:40 +05:30

69 lines
2.2 KiB
Plaintext

{
"folders": [
{ "path": "." },
{ "path": "components/blobserve" },
{ "path": "components/common-go" },
{ "path": "components/content-service" },
{ "path": "components/docker-up" },
{ "path": "components/ee/agent-smith" },
{ "path": "components/gitpod-cli" },
{ "path": "components/gitpod-protocol" },
{ "path": "components/image-builder-bob" },
{ "path": "components/image-builder-mk3" },
{ "path": "components/licensor" },
{ "path": "components/local-app" },
{ "path": "components/registry-facade" },
{ "path": "components/service-waiter" },
{ "path": "components/supervisor" },
{ "path": "components/workspacekit" },
{ "path": "components/ws-daemon" },
{ "path": "components/ws-manager" },
{ "path": "components/ws-proxy" },
{ "path": "test" },
{ "path": "dev/blowtorch" },
{ "path": "dev/changelog" },
{ "path": "dev/gpctl" },
{ "path": "dev/loadgen" },
{ "path": "install/installer" },
{ "path": "install/preview" }
],
"settings": {
"typescript.tsdk": "gitpod/node_modules/typescript/lib",
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.formatOnSave": true
},
"[typescript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.formatOnSave": true
},
"[json]": {
"editor.insertSpaces": true,
"editor.tabSize": 2
},
"[yaml]": {
"editor.insertSpaces": true,
"editor.tabSize": 2
},
"[go]": {
"editor.formatOnSave": true
},
"[tf]": {
"editor.insertSpaces": true,
"editor.tabSize": 2
},
"go.formatTool": "goimports",
"go.useLanguageServer": true,
"workspace.supportMultiRootWorkspace": true,
"launch": {},
"files.exclude": {
"**/.git": true
},
"go.lintTool": "golangci-lint",
"gopls": {
"allowModfileModifications": true
},
"prettier.configPath": ".prettierrc.json"
}
}