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 f1387ae commit ebf252bCopy full SHA for ebf252b
x-pack/plugins/security_solution/server/usage/endpoints/index.ts
@@ -33,7 +33,7 @@ export interface EndpointUsage {
33
policies: PoliciesTelemetry;
34
}
35
36
-type EndpointOSNames = 'Linux' | 'Windows' | 'macOs';
+type EndpointOSNames = 'Linux' | 'Windows' | 'macOS';
37
38
export interface AgentLocalMetadata extends AgentMetadata {
39
elastic: {
@@ -129,7 +129,7 @@ export const updateEndpointPolicyTelemetry = (
129
): PoliciesTelemetry => {
130
const policyHostTypeToPolicyType = {
131
Linux: 'linux',
132
- macOs: 'mac',
+ macOS: 'mac',
133
Windows: 'windows',
134
};
135
const enabledMalwarePolicyTypes = ['prevent', 'detect'];
0 commit comments