yumechi-no-kuni/src/db/elasticsearch.ts

23 lines
522 B
TypeScript
Raw Normal View History

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