Skip to content
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

feat: add labels meta #959

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
44 changes: 44 additions & 0 deletions __tests__/push/monitor.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -472,6 +472,50 @@ heartbeat.monitors:
hosts: ['elastic.co:443'],
});
});

it('supports labels in config', async () => {
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Let's add test for browser monitor as well.

await writeHBFile(`
heartbeat.monitors:
- type: icmp
schedule: @every 5m
id: "test-icmp"
name: "test-icmp"
privateLocations:
- baz
tags:
- ltag1
- ltag2
labels.foo: bar
labels.baz: qux
`);

const [mon] = await createLightweightMonitors(PROJECT_DIR, {
auth: 'foo',
params: { foo: 'bar' },
kibanaVersion: '8.8.0',
locations: ['australia_east'],
tags: ['gtag1', 'gtag2'],
privateLocations: ['gbaz'],
schedule: 10,
retestOnFailure: false,
});

expect(mon.config).toEqual({
id: 'test-icmp',
name: 'test-icmp',
locations: ['australia_east'],
privateLocations: ['baz'],
type: 'icmp',
params: { foo: 'bar' },
schedule: 5,
tags: ['ltag1', 'ltag2'],
retestOnFailure: false,
labels: {
baz: 'qux',
foo: 'bar',
},
});
});
});

describe('parseAlertConfig', () => {
Expand Down
1 change: 1 addition & 0 deletions src/common_types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -255,6 +255,7 @@ export type PushOptions = Partial<ProjectSettings> &
kibanaVersion?: string;
yes?: boolean;
tags?: Array<string>;
labels?: Record<string, string>;
Copy link
Member

@vigneshshanmugam vigneshshanmugam Sep 19, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Let's rename this to fields to map with the heartbeat top level fields name and under the hood in Kibana, you can map to labels. Having labels as top level is confusing - https://www.elastic.co/guide/en/beats/heartbeat/8.12/configuration-general-options.html#libbeat-configuration-fields

Also let's write JS doc annotation so it's visible on TS config.

alert?: AlertConfig;
retestOnFailure?: MonitorConfig['retestOnFailure'];
enabled?: boolean;
Expand Down
1 change: 1 addition & 0 deletions src/dsl/monitor.ts
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@ export type MonitorConfig = {
name?: string;
type?: string;
tags?: string[];
labels?: Record<string, string>;
schedule?: typeof ALLOWED_SCHEDULES[number];
enabled?: boolean;
locations?: SyntheticsLocationsType[];
Expand Down
20 changes: 20 additions & 0 deletions src/push/monitor.ts
Original file line number Diff line number Diff line change
Expand Up @@ -268,6 +268,7 @@ export function buildMonitorFromYaml(
enabled: config.enabled ?? options.enabled,
locations: options.locations,
tags: options.tags,
labels: parseLabels(config, options.labels),
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please add this new field to some of the unit tests validating lightweight monitors

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

i have added here 200e52f (#959)

...normalizeConfig(config),
retestOnFailure,
privateLocations,
Expand Down Expand Up @@ -311,6 +312,25 @@ export const parseAlertConfig = (
return Object.keys(result).length > 0 ? result : undefined;
};

export const parseLabels = (
config: MonitorConfig,
gLabels?: Record<string, string>
) => {
// get all keys starting with `label.`
const keys = Object.keys(config).filter(key => key.startsWith('labels.'));
const labels = {};
for (const key of keys) {
labels[key.replace('labels.', '')] = config[key];
delete config[key];
}
if (gLabels) {
for (const key of Object.keys(gLabels)) {
labels[key] = gLabels[key];
}
}
return Object.keys(labels).length > 0 ? labels : undefined;
};

export function getAlertKeyValue(
key: 'status' | 'tls',
config: MonitorConfig,
Expand Down