-
Notifications
You must be signed in to change notification settings - Fork 729
/
Copy pathsniffingTransport.ts
40 lines (34 loc) · 1.23 KB
/
sniffingTransport.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
/*
* Copyright Elasticsearch B.V. and contributors
* SPDX-License-Identifier: Apache-2.0
*/
import assert from 'node:assert'
import { Transport, SniffOptions } from '@elastic/transport'
export default class SniffingTransport extends Transport {
sniff (opts: SniffOptions): void {
if (this.isSniffing) return
this.isSniffing = true
const request = {
method: 'GET',
path: this.sniffEndpoint ?? '/_nodes/_all/http'
}
this.request(request, { id: opts.requestId, meta: true })
.then(result => {
assert(isObject(result.body), 'The body should be an object')
this.isSniffing = false
const protocol = result.meta.connection?.url.protocol ?? /* istanbul ignore next */ 'http:'
const hosts = this.connectionPool.nodesToHost(result.body.nodes, protocol)
this.connectionPool.update(hosts)
result.meta.sniff = { hosts, reason: opts.reason }
this.diagnostic.emit('sniff', null, result)
})
.catch(err => {
this.isSniffing = false
err.meta.sniff = { hosts: [], reason: opts.reason }
this.diagnostic.emit('sniff', err, null)
})
}
}
function isObject (obj: any): obj is Record<string, any> {
return typeof obj === 'object'
}