-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
54 lines (42 loc) · 1.04 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
'use strict'
const EventEmitter = require('events').EventEmitter
const ec2Info = require('ec2-info')
const INFO_DOC = 'dynamic/instance-identity/document'
module.exports = function plugin () {
return new Processor()
}
class Processor extends EventEmitter {
constructor () {
super()
this._region = null
}
start (callback) {
this._fetch((err, region) => {
if (err) return callback(err)
this._region = region
callback()
})
}
stop (callback) {
this._region = null
process.nextTick(callback)
}
process (metric) {
metric.tags.region = this._region
this.emit('metric', metric)
}
_fetch (callback) {
ec2Info([INFO_DOC], (err, map) => {
if (err) return callback(err)
try {
var region = JSON.parse(map.get(INFO_DOC)).region
} catch (err) {
return callback(err)
}
if (typeof region !== 'string' || region === '') {
return callback(new TypeError('Expected a non-empty string region'))
}
callback(null, region)
})
}
}