Skip to content

Commit

Permalink
add theme:name to stack telemetry collectors
Browse files Browse the repository at this point in the history
  • Loading branch information
tkajtoch committed Nov 12, 2024
1 parent c631c26 commit dd3cb6c
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -272,6 +272,10 @@ export const stackManagementSchema: MakeSchemaFrom<UsageStats> = {
type: 'boolean',
_meta: { description: 'Non-default value of setting.' },
},
'theme:name': {
type: 'keyword',
_meta: { description: 'Non-default value of setting.' },
},
'state:storeInSessionStorage': {
type: 'boolean',
_meta: { description: 'Non-default value of setting.' },
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,7 @@ export interface UsageStats {
'timepicker:quickRanges': string;
'theme:version': string;
'theme:darkMode': boolean;
'theme:name': string;
'state:storeInSessionStorage': boolean;
'savedObjects:perPage': number;
'search:queryLanguage': string;
Expand Down
6 changes: 6 additions & 0 deletions src/plugins/telemetry/schema/oss_plugins.json
Original file line number Diff line number Diff line change
Expand Up @@ -10272,6 +10272,12 @@
"description": "Non-default value of setting."
}
},
"theme:name": {
"type": "keyword",
"_meta": {
"description": "Non-default value of setting."
}
},
"state:storeInSessionStorage": {
"type": "boolean",
"_meta": {
Expand Down

0 comments on commit dd3cb6c

Please sign in to comment.