feat(portal-api): check for public networks when fetching metrics

This commit is contained in:
Sérgio Ramos 2017-08-28 20:05:58 +01:00
parent 75ec47b234
commit d1af5eec1a
2 changed files with 170 additions and 50 deletions

View File

@ -265,7 +265,7 @@ type Query {
): [Service] ): [Service]
importableDeploymentGroups: [DeploymentGroup] importableDeploymentGroups: [DeploymentGroup]
# start and end should be .toISOString() date strings # start and end should be .toISOString() date strings
metrics(deploymentGroupId: ID!, names: [MetricName]!, instances: [String]!, start: String!, end: String!): [InstanceMetric] metrics(deploymentGroupId: ID!, names: [MetricName]!, instances: [ID]!, start: String!, end: String!): [InstanceMetric]
} }
type Mutation { type Mutation {

View File

@ -10,6 +10,7 @@ const Util = require('util');
// 3rd party modules // 3rd party modules
const Boom = require('boom'); const Boom = require('boom');
const CIDRMatcher = require('cidr-matcher');
const DockerClient = require('docker-compose-client'); const DockerClient = require('docker-compose-client');
const Dockerode = require('dockerode'); const Dockerode = require('dockerode');
const ForceArray = require('force-array'); const ForceArray = require('force-array');
@ -1533,7 +1534,7 @@ class Data extends EventEmitter {
return Object.assign({}, branch, { return Object.assign({}, branch, {
instances: this._instancesFilter(branch.instances) instances: this._instancesFilter(branch.instances)
}); });
}); }).filter(({ name }) => name);
return cb(null, Transform.fromService({ return cb(null, Transform.fromService({
service, service,
@ -1601,7 +1602,7 @@ class Data extends EventEmitter {
return Object.assign({}, branch, { return Object.assign({}, branch, {
instances: this._instancesFilter(branch.instances) instances: this._instancesFilter(branch.instances)
}); });
}); }).filter(({ name }) => name);
return Transform.fromService({ return Transform.fromService({
service, service,
@ -2007,7 +2008,7 @@ class Data extends EventEmitter {
return new Promise((resolve, reject) => { return new Promise((resolve, reject) => {
const options = { const options = {
deploymentGroupId: instance.deployment_group_id, deploymentGroupId: instance.deployment_group_id,
instances: [instance.name], instances: [instance.id],
names, names,
start, start,
end end
@ -2487,67 +2488,186 @@ class Data extends EventEmitter {
this.createDeploymentGroup(deploymentGroup, handleNewDeploymentGroup); this.createDeploymentGroup(deploymentGroup, handleNewDeploymentGroup);
} }
// copied from container-pilot-watcher. todo: refactor
_getNetworks (networkIds = [], cb) {
VAsync.forEachParallel({
inputs: networkIds,
func: (id, next) => {
this._triton.getNetwork(id, next);
}
}, (err, results) => {
cb(err, ForceArray((results || {}).successes));
});
}
// copied from container-pilot-watcher. todo: refactor
_getPublicIps (machine, cb) {
this._getNetworks(machine.networks, (err, networks) => {
if (err) {
return cb(err);
}
const privateNetworkSubnets = networks
.filter((network) => {
return !network['public'];
})
.map((network) => {
return network.subnet;
})
.filter(Boolean);
const cidr = new CIDRMatcher(privateNetworkSubnets);
const nonPrivateIps = machine.ips.filter((ip) => {
return !cidr.contains(ip);
});
cb(null, nonPrivateIps);
});
}
getMetrics ({ deploymentGroupId, names, instances, start, end }, cb) { getMetrics ({ deploymentGroupId, names, instances, start, end }, cb) {
Hoek.assert(deploymentGroupId !== undefined, 'deploymentGroupId is required'); Hoek.assert(deploymentGroupId !== undefined, 'deploymentGroupId is required');
Hoek.assert(names && names.length, 'names are required'); Hoek.assert(names && names.length, 'names are required');
Hoek.assert(instances && instances.length, 'instances are required'); Hoek.assert(instances && instances.length, 'instances are required');
this.getServices({ deploymentGroupId, name: 'prometheus' }, (err, services) => {
if (err || !services || !services.length) {
return cb(err);
}
const service = services.shift();
service.instances().then((instances) => {
const instance = instances.shift();
this._triton.getInstance(instance.machine_id, (err, inst) => {
if (err) {
return cb(err);
}
const metricNames = [ const metricNames = [
'mem_agg_usage', 'mem_agg_usage',
'cpu_sys_usage', 'cpu_sys_usage',
'net_agg_bytes_in' 'net_agg_bytes_in'
]; ];
const metricNameEnum = [ const metricNameEnum = [
'AVG_MEM_BYTES', 'AVG_MEM_BYTES',
'AVG_LOAD_PERCENT', 'AVG_LOAD_PERCENT',
'AGG_NETWORK_BYTES' 'AGG_NETWORK_BYTES'
]; ];
const formattedNames = names.map((name) => { const ctx = {};
const i = metricNameEnum.indexOf(name);
return (i === -1) ? name : metricNames[i]; const handleMetrics = (err, results) => {
});
const prometheus = new Prometheus({ url: `http://${inst.primaryIp}:9090` });
prometheus.getMetrics({ names: formattedNames, instances, start, end }, (err, metrics) => {
if (err) { if (err) {
return cb(err); return cb(err);
} }
const metrics = results.successes.filter(Boolean).shift();
if (!metrics) {
return cb(null, []);
}
const formattedMetrics = metrics.map((metric) => { const formattedMetrics = metrics.map((metric) => {
const i = metricNames.indexOf(metric.name); const i = metricNames.indexOf(metric.name);
if (i !== -1) { if (i !== -1) {
metric.name = metricNameEnum[i]; metric.name = metricNameEnum[i];
} }
metric.metrics = metric.metrics.map((entry) => { metric.metrics = metric.metrics.map((entry) => Object.assign(entry, {
entry.time = entry.time.toISOString(); time: entry.time.toISOString()
return entry; }));
});
return metric; return Object.assign(metric, {
start: metric.metrics[0].time,
end: metric.metrics[metric.metrics.length - 1].time
});
}); });
cb(null, formattedMetrics); cb(null, formattedMetrics);
};
const fetchMetrics = (ip, next) => {
const formattedNames = names.map((name) => {
const i = metricNameEnum.indexOf(name);
return (i === -1) ? name : metricNames[i];
}); });
const prometheus = new Prometheus({ url: `http://${ip}:9090` });
prometheus.getMetrics({
names: formattedNames,
instances: ctx.machines.map(({ name }) => name),
start,
end
}, (err, metrics) => {
if (err) {
console.error(err);
}
next(null, metrics);
}); });
}).catch((err) => { };
const handlePrometheusMachine = (err, machine) => {
if (err) {
return cb(err); return cb(err);
}
this._getPublicIps(machine, (err, ips) => {
if (err) {
return cb(err);
}
VAsync.forEachParallel({
inputs: ips,
func: fetchMetrics
}, handleMetrics);
}); });
};
const handlePrometheusInstances = (instances) => {
if (!instances.length) {
return cb(null, []);
}
const { machineId } = instances.shift();
this._triton.getMachine(machineId, handlePrometheusMachine);
};
const handlePrometheusServices = (err, services) => {
if (err) {
return cb(err);
}
if (!services.length) {
return cb(null, []);
}
services.shift()
.instances()
.then(handlePrometheusInstances)
.catch(cb);
};
const handleMachines = (err, machines) => {
if (err) {
return cb(err);
}
ctx.machines = machines.successes;
this.getServices({
deploymentGroupId,
name: 'prometheus'
}, handlePrometheusServices);
};
this.getInstances({
ids: instances
}, (err, instances) => {
if (err) {
return cb(err);
}
ctx.instances = instances;
VAsync.forEachParallel({
inputs: instances,
func: ({ machineId }, next) => {
this._triton.getMachine(machineId, next);
}
}, handleMachines);
}); });
} }
} }