blob: 49174df1e0bcab7df94f63bb53ab5437cf9e8f69 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You 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 org.apache.karaf.decanter.appender.elasticsearch.jest;
import java.text.SimpleDateFormat;
import java.util.Arrays;
import java.util.Date;
import java.util.Dictionary;
import java.util.HashSet;
import java.util.Set;
import java.util.TimeZone;
import java.util.concurrent.TimeUnit;
import org.apache.karaf.decanter.api.marshaller.Marshaller;
import org.osgi.service.component.ComponentContext;
import org.osgi.service.component.annotations.Activate;
import org.osgi.service.component.annotations.Component;
import org.osgi.service.component.annotations.ConfigurationPolicy;
import org.osgi.service.component.annotations.Deactivate;
import org.osgi.service.component.annotations.Reference;
import org.osgi.service.event.Event;
import org.osgi.service.event.EventConstants;
import org.osgi.service.event.EventHandler;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import io.searchbox.client.JestClient;
import io.searchbox.client.JestClientFactory;
import io.searchbox.client.JestResult;
import io.searchbox.client.config.HttpClientConfig;
import io.searchbox.client.config.HttpClientConfig.Builder;
import io.searchbox.core.Index;
@Component(
name ="org.apache.karaf.decanter.appender.elasticsearch.jest",
immediate = true,
property=EventConstants.EVENT_TOPIC + "=decanter/collect/*"
)
public class ElasticsearchAppender implements EventHandler {
@Reference
public Marshaller marshaller;
private JestClient client;
private String indexPrefix;
private boolean indexTimestamped;
private String indexType;
private final SimpleDateFormat tsFormat = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss,SSS'Z'");
private final SimpleDateFormat indexDateFormat = new SimpleDateFormat("yyyy.MM.dd");
private final static Logger LOGGER = LoggerFactory.getLogger(ElasticsearchAppender.class);
@SuppressWarnings("unchecked")
@Activate
public void activate(ComponentContext context) {
open(context.getProperties());
}
public void open(Dictionary<String, Object> config) {
String addressesString = getValue(config, "address", "http://localhost:9200");
Set<String> addresses = new HashSet<String>(Arrays.asList(addressesString.split(";")));
String username = getValue(config, "username", null);
String password = getValue(config, "password", null);
Builder builder = new HttpClientConfig.Builder(addresses).readTimeout(10000)
.multiThreaded(true);
if (addresses.size() > 1) {
builder = builder
.discoveryEnabled(true)
.discoveryFrequency(1l, TimeUnit.MINUTES);
} else {
builder.discoveryEnabled(false);
}
if (username != null) {
builder = builder.defaultCredentials(username, password);
}
JestClientFactory factory = new JestClientFactory();
factory.setHttpClientConfig(builder.build());
client = factory.getObject();
TimeZone tz = TimeZone.getTimeZone( "UTC" );
tsFormat.setTimeZone(tz);
indexDateFormat.setTimeZone(tz);
indexPrefix = getValue(config, "index.prefix", "karaf");
indexTimestamped = Boolean.parseBoolean(getValue(config, "index.event.timestamped", "true"));
indexType = getValue(config, "index.type", "decanter");
}
private String getValue(Dictionary<String, Object> config, String key, String defaultValue) {
String value = (String)config.get(key);
return (value != null) ? value : defaultValue;
}
@Deactivate
public void close() {
client.shutdownClient();
}
@Override
public void handleEvent(Event event) {
try {
send(event);
} catch (Exception e) {
LOGGER.warn("Can't append into Elasticsearch", e);
}
}
private void send(Event event) throws Exception {
String indexName = getIndexName(indexPrefix, getDate(event));
String jsonSt = marshaller.marshal(event);
JestResult result = client.execute(new Index.Builder(jsonSt).index(indexName).type(indexType).build());
if (!result.isSucceeded()) {
throw new IllegalStateException(result.getErrorMessage());
}
}
private Date getDate(Event event) {
Long ts = (Long)event.getProperty("timestamp");
Date date = ts != null ? new Date(ts) : new Date();
return date;
}
private String getIndexName(String prefix, Date date) {
if (indexTimestamped) {
return prefix + "-" + indexDateFormat.format(date);
} else {
return prefix;
}
}
}