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

add related event generation to ancestor nodes (fixes a bug) #64950

Merged
merged 6 commits into from
May 6, 2020
Merged
Changes from 1 commit
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
34 changes: 32 additions & 2 deletions x-pack/plugins/endpoint/common/generate_data.ts
Original file line number Diff line number Diff line change
Expand Up @@ -331,7 +331,11 @@ export class EndpointDocGenerator {
percentNodesWithRelated?: number,
percentChildrenTerminated?: number
) {
const ancestry = this.createAlertEventAncestry(alertAncestors);
const ancestry = this.createAlertEventAncestry(
alertAncestors,
relatedEventsPerNode,
percentNodesWithRelated
);
for (let i = 0; i < ancestry.length; i++) {
yield ancestry[i];
}
Expand All @@ -350,18 +354,44 @@ export class EndpointDocGenerator {
* Creates an alert event and associated process ancestry. The alert event will always be the last event in the return array.
* @param alertAncestors - number of ancestor generations to create
*/
public createAlertEventAncestry(alertAncestors = 3): Event[] {
public createAlertEventAncestry(
alertAncestors = 3,
relatedEventsPerNode = 5,
pctWithRelated = 30
): Event[] {
const events = [];
const startDate = new Date().getTime();
const root = this.generateEvent({ timestamp: startDate + 1000 });
events.push(root);
let ancestor = root;
// generate related alerts for root
const processDuration: number = 6 * 3600;
if (this.randomN(100) < pctWithRelated) {
bkimmel marked this conversation as resolved.
Show resolved Hide resolved
for (const relatedEvent of this.relatedEventsGenerator(
ancestor,
relatedEventsPerNode,
processDuration
)) {
events.push(relatedEvent);
}
}
for (let i = 0; i < alertAncestors; i++) {
ancestor = this.generateEvent({
timestamp: startDate + 1000 * (i + 1),
parentEntityID: ancestor.process.entity_id,
});
events.push(ancestor);

// generate related alerts for ancestor
if (this.randomN(100) < pctWithRelated) {
for (const relatedEvent of this.relatedEventsGenerator(
ancestor,
relatedEventsPerNode,
processDuration
)) {
events.push(relatedEvent);
}
}
}
events.push(
this.generateAlert(
Expand Down