-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
56 lines (44 loc) · 1.15 KB
/
index.js
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
'use strict'
const EventEmitter = require('events').EventEmitter
const ec2Info = require('ec2-info')
const thunky = require('thunky')
function plugin (options) {
return new Processor(options)
}
// TODO (later): should this be the default behavior?
plugin.cached = function () {
return plugin({ cache: true })
}
const fetch = function (callback) {
ec2Info(['meta-data/instance-id'], (err, map) => {
if (err) return callback(err)
callback(null, map.get('meta-data/instance-id'))
})
}
const cachedFetch = thunky(fetch)
module.exports = plugin
class Processor extends EventEmitter {
constructor (options) {
super()
this._fetch = (options && options.cache ? cachedFetch : fetch).bind(null)
this._instanceId = null
}
start (callback) {
this._instanceId = null
this._fetch((err, value) => {
if (err) return callback(err)
if (value) this._instanceId = value
callback()
})
}
stop (callback) {
this._instanceId = null
process.nextTick(callback)
}
process (metric) {
if (this._instanceId !== null) {
metric.tags.instanceid = this._instanceId
}
this.emit('metric', metric)
}
}