io.telicent.smart.cache.live.LiveErrorReporterBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of live-reporter Show documentation
Show all versions of live-reporter Show documentation
Provides a simple API for generating and reporting application status to Telicent Live
/**
* Copyright (C) Telicent Ltd
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package io.telicent.smart.cache.live;
import io.telicent.smart.cache.live.model.LiveError;
import io.telicent.smart.cache.live.serializers.LiveErrorSerializer;
import io.telicent.smart.cache.projectors.Sink;
import io.telicent.smart.cache.projectors.sinks.builder.SinkBuilder;
import io.telicent.smart.cache.sources.Event;
import io.telicent.smart.cache.sources.kafka.sinks.KafkaSink;
import org.apache.kafka.common.serialization.BytesSerializer;
import org.apache.kafka.common.utils.Bytes;
import java.util.function.Function;
/**
* A builder for {@link LiveErrorReporter} instances
*/
public class LiveErrorReporterBuilder {
private String appId;
private Sink> destination;
/**
* Sets the default Application ID that is included with reported errors
*
* @param applicationId Application ID
* @return Builder
*/
public LiveErrorReporterBuilder id(String applicationId) {
this.appId = applicationId;
return this;
}
/**
* Sets the destination sink to which heartbeats will be sent
*
* @param sink Destination sink
* @return Builder
*/
public LiveErrorReporterBuilder destination(Sink> sink) {
this.destination = sink;
return this;
}
/**
* Sets the destination sink to which heartbeats will be sent
*
* @param sinkBuilder Destination sink builder
* @param Destination sink type
* @return Builder
*/
public >> LiveErrorReporterBuilder destination(
SinkBuilder, T> sinkBuilder) {
this.destination = sinkBuilder.build();
return this;
}
/**
* Sets the destination sink to be Kafka providing some basic default values on the builder
*
* @param builderFunction Builder function that further configures the {@link KafkaSink.KafkaSinkBuilder} as
* desired, as a minimum you should call
* {@link KafkaSink.KafkaSinkBuilder#bootstrapServers(String)} to specify the Kafka cluster
* to which heartbeats are written.
* @return Builder
*/
public LiveErrorReporterBuilder toKafka(
Function, KafkaSink.KafkaSinkBuilder> builderFunction) {
this.destination = builderFunction.apply(KafkaSink.create()
.keySerializer(BytesSerializer.class)
.valueSerializer(LiveErrorSerializer.class)
.topic(LiveErrorReporter.DEFAULT_LIVE_TOPIC)).build();
return this;
}
/**
* Builds a new {@link LiveErrorReporter}
*
* @return Live Error Reporter
*/
public LiveErrorReporter build() {
return new LiveErrorReporter(this.appId, this.destination);
}
}