Adds ECS guide to doc links service (#102246)

This commit is contained in:
Lisa Cawley 2021-06-29 21:47:38 -07:00 committed by GitHub
parent 0324a06bd9
commit 0fb21c49b9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 13 additions and 1 deletions

View file

@ -201,5 +201,8 @@ readonly links: {
upgradeElasticAgent: string;
upgradeElasticAgent712lower: string;
}>;
readonly ecs: {
readonly guide: string;
};
};
```

File diff suppressed because one or more lines are too long

View file

@ -418,6 +418,9 @@ export class DocLinksService {
upgradeElasticAgent: `${FLEET_DOCS}upgrade-elastic-agent.html`,
upgradeElasticAgent712lower: `${FLEET_DOCS}upgrade-elastic-agent.html#upgrade-7.12-lower`,
},
ecs: {
guide: `${ELASTIC_WEBSITE_URL}guide/en/ecs/current/index.html`,
},
},
});
}
@ -621,5 +624,8 @@ export interface DocLinksStart {
upgradeElasticAgent: string;
upgradeElasticAgent712lower: string;
}>;
readonly ecs: {
readonly guide: string;
};
};
}

View file

@ -680,6 +680,9 @@ export interface DocLinksStart {
upgradeElasticAgent: string;
upgradeElasticAgent712lower: string;
}>;
readonly ecs: {
readonly guide: string;
};
};
}