
com.zendesk.maxwell.monitoring.MaxwellDiagnosticContext Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of maxwell Show documentation
Show all versions of maxwell Show documentation
Maxwell's daemon. Watches mysql, outputs to JSON.
package com.zendesk.maxwell.monitoring;
import java.util.List;
public class MaxwellDiagnosticContext {
public final Config config;
public final List diagnostics;
public MaxwellDiagnosticContext(Config config, List diagnostics) {
this.config = config;
this.diagnostics = diagnostics;
}
public static class Config {
public boolean enable;
public long timeout;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy