egirlskey/src/db/elasticsearch.ts

23 lines
522 B
TypeScript
Raw Normal View History

2016-12-28 22:49:51 +00:00
import * as elasticsearch from 'elasticsearch';
2018-04-02 04:15:53 +00:00
import config from '../config';
2016-12-28 22:49:51 +00: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 21:08:44 +00:00
} as any, error => {
2016-12-28 22:49:51 +00:00
if (error) {
console.error('elasticsearch is down!');
}
});
export default client;