use of com.microsoft.applicationinsights.alerting.config.AlertingConfiguration in project ApplicationInsights-Java by microsoft.
the class AlertingSubsystemTest method manualAlertDoesNotTriggerAfterExpired.
@Test
void manualAlertDoesNotTriggerAfterExpired() {
AtomicReference<AlertBreach> called = new AtomicReference<>();
Consumer<AlertBreach> consumer = called::set;
AlertingSubsystem service = AlertingSubsystem.create(consumer, Executors.newSingleThreadExecutor());
service.updateConfiguration(new AlertingConfiguration(new AlertConfiguration(AlertMetricType.CPU, true, 80, 30, 14400), new AlertConfiguration(AlertMetricType.MEMORY, true, 20, 120, 14400), new DefaultConfiguration(true, 5, 120), new CollectionPlanConfiguration(true, EngineMode.immediate, ZonedDateTime.now().minus(100, ChronoUnit.SECONDS), 120, "a-settings-moniker")));
assertThat(called.get()).isNull();
}
use of com.microsoft.applicationinsights.alerting.config.AlertingConfiguration in project ApplicationInsights-Java by microsoft.
the class AlertingSubsystemTest method getAlertMonitor.
private static AlertingSubsystem getAlertMonitor(Consumer<AlertBreach> consumer) {
AlertingSubsystem monitor = AlertingSubsystem.create(consumer, Executors.newSingleThreadExecutor());
monitor.updateConfiguration(new AlertingConfiguration(new AlertConfiguration(AlertMetricType.CPU, true, 80, 30, 14400), new AlertConfiguration(AlertMetricType.MEMORY, true, 20, 120, 14400), new DefaultConfiguration(true, 5, 120), new CollectionPlanConfiguration(true, EngineMode.immediate, ZonedDateTime.now(), 120, "a-settings-moniker")));
return monitor;
}
use of com.microsoft.applicationinsights.alerting.config.AlertingConfiguration in project ApplicationInsights-Java by microsoft.
the class AlertConfigParserTest method saneDataIsParsed.
@Test
void saneDataIsParsed() {
AlertingConfiguration config = AlertConfigParser.parse("--cpu-trigger-enabled true --cpu-threshold 80 --cpu-trigger-profilingDuration 30 --cpu-trigger-cooldown 14400", "--memory-trigger-enabled true --memory-threshold 20 --memory-trigger-profilingDuration 120 --memory-trigger-cooldown 14400", "--sampling-enabled true --sampling-rate 5 --sampling-profiling-duration 120", "--single --mode immediate --immediate-profiling-duration 120 --expiration 5249157885138288517 --settings-moniker a-settings-moniker");
assertThat(config.getCpuAlert()).isEqualTo(new AlertConfiguration(AlertMetricType.CPU, true, 80, 30, 14400));
assertThat(config.getMemoryAlert()).isEqualTo(new AlertConfiguration(AlertMetricType.CPU, true, 20, 120, 14400));
assertThat(config.getDefaultConfiguration()).isEqualTo(new DefaultConfiguration(true, 5, 120));
assertThat(config.getCollectionPlanConfiguration()).isEqualTo(new CollectionPlanConfiguration(true, EngineMode.immediate, CollectionPlanConfigurationBuilder.parseBinaryDate(5249157885138288517L), 120, "a-settings-moniker"));
}
use of com.microsoft.applicationinsights.alerting.config.AlertingConfiguration in project ApplicationInsights-Java by microsoft.
the class AlertConfigParserTest method nullsInConfigAreHandled.
@Test
void nullsInConfigAreHandled() {
AlertingConfiguration config = AlertConfigParser.parse(null, null, null, null);
assertThat(config.getCpuAlert().isEnabled()).isFalse();
assertThat(config.getCollectionPlanConfiguration().isSingle()).isFalse();
assertThat(config.getMemoryAlert().isEnabled()).isFalse();
assertThat(config.getDefaultConfiguration().getSamplingEnabled()).isFalse();
}
use of com.microsoft.applicationinsights.alerting.config.AlertingConfiguration in project ApplicationInsights-Java by microsoft.
the class AlertingSubsystem method create.
public static AlertingSubsystem create(Consumer<AlertBreach> alertHandler, ExecutorService executorService) {
AlertingSubsystem alertingSubsystem = new AlertingSubsystem(alertHandler, executorService);
// init with disabled config
alertingSubsystem.initialize(new AlertingConfiguration(new AlertConfigurationBuilder().setType(AlertMetricType.CPU).setEnabled(false).setThreshold(0).setProfileDuration(0).setCooldown(0).createAlertConfiguration(), new AlertConfigurationBuilder().setType(AlertMetricType.MEMORY).setEnabled(false).setThreshold(0).setProfileDuration(0).setCooldown(0).createAlertConfiguration(), new DefaultConfiguration(false, 0, 0), new CollectionPlanConfiguration(false, EngineMode.immediate, ZonedDateTime.now(), 0, "")));
return alertingSubsystem;
}
Aggregations