import { HelpContentsRegistry } from '../help/helpContents.registry'; const helpContents: any[] = [ { key: 'application.chaos.enabled', contents: '

Chaos Monkey periodically terminates instances in your server groups to ensure resiliency.

' + '

If you do not want your application to participate in Chaos Monkey, unselect this option.

', }, { key: 'chaos.meanTime', contents: '

The average number of days between terminations for each group

', }, { key: 'chaos.minTime', contents: '

The minimum number of days Chaos Monkey will leave the groups alone

', }, { key: 'chaos.grouping', contents: '

Tells Chaos Monkey how to decide which instances to terminate:

' + '', }, { key: 'chaos.regions', contents: '

If selected, Chaos Monkey will treat each region in each group separately, e.g. if your cluster ' + 'is deployed in three regions, an instance in each region would be terminated.

', }, { key: 'chaos.exceptions', contents: '

When Chaos Monkey is enabled, exceptions tell Chaos Monkey to leave certain clusters alone. ' + 'You can use wildcards (*) to include all matching fields.

', }, { key: 'chaos.documentation', contents: `

Chaos Monkey documentation can be found here .

`, }, ]; helpContents.forEach((entry: any) => HelpContentsRegistry.register(entry.key, entry.contents));