1
1
mirror of https://github.com/kokonect-link/cherrypick synced 2024-12-14 06:38:28 +09:00
cherrypick/src/db/elasticsearch.ts
2017-01-17 09:14:06 +09:00

23 lines
520 B
TypeScript

import * as elasticsearch from 'elasticsearch';
import config from '../conf';
// 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!'
} as any, error => {
if (error) {
console.error('elasticsearch is down!');
}
});
export default client;