2016-12-28 23:49:51 +01:00
|
|
|
import * as elasticsearch from 'elasticsearch';
|
2017-01-17 01:14:06 +01:00
|
|
|
import config from '../conf';
|
2016-12-28 23:49:51 +01:00
|
|
|
|
|
|
|
// Init ElasticSearch connection
|
|
|
|
const client = new elasticsearch.Client({
|
|
|
|
host: `${config.elasticsearch.host}:${config.elasticsearch.port}`
|
|
|
|
});
|
|
|
|
|
|
|
|
// Send a HEAD request
|
|
|
|
client.ping({
|
|
|
|
// Ping usually has a 3000ms timeout
|
|
|
|
requestTimeout: Infinity,
|
|
|
|
|
|
|
|
// Undocumented params are appended to the query string
|
|
|
|
hello: 'elasticsearch!'
|
2017-01-02 22:08:44 +01:00
|
|
|
} as any, error => {
|
2016-12-28 23:49:51 +01:00
|
|
|
if (error) {
|
|
|
|
console.error('elasticsearch is down!');
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
export default client;
|