Package com.netflix.simianarmy

Examples of com.netflix.simianarmy.MonkeyConfiguration


     */
    public BasicChaosMonkeyContext() {
        super("simianarmy.properties", "client.properties", "chaos.properties");
        setChaosCrawler(new ASGChaosCrawler(awsClient()));
        setChaosInstanceSelector(new BasicChaosInstanceSelector());
        MonkeyConfiguration cfg = configuration();
        setChaosEmailNotifier(new BasicChaosEmailNotifier(cfg, new AmazonSimpleEmailServiceClient(), null));
    }
View Full Code Here


* @author ingmar.krusch@immobilienscout24.de
*/
public class VSphereContext extends BasicChaosMonkeyContext {
    @Override
    protected void createClient() {
        MonkeyConfiguration config = configuration();
        final PropertyBasedTerminationStrategy terminationStrategy = new PropertyBasedTerminationStrategy(config);
        final VSphereServiceConnection connection = new VSphereServiceConnection(config);
        final VSphereClient client = new VSphereClient(terminationStrategy, connection);
        setCloudClient(client);
    }
View Full Code Here

TOP

Related Classes of com.netflix.simianarmy.MonkeyConfiguration

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.