1
0
mirror of https://github.com/Unleash/unleash.git synced 2024-10-18 20:09:08 +02:00
unleash.unleash/packages/unleash-api/lib/client-metrics.js

98 lines
2.8 KiB
JavaScript
Raw Normal View History

'use strict';
module.exports = class UnleashClientMetrics {
constructor () {
this.globalCount = 0;
this.apps = [];
this.clients = {};
this.strategies = {};
2016-10-27 15:16:27 +02:00
this.buckets = {};
}
toJSON () {
return JSON.stringify(this.getState(), null, 4);
}
getState () {
2016-11-02 12:49:25 +01:00
// TODO need to flatten the store / possibly evict/flag stale clients
return {
globalCount: this.globalCount,
apps: this.apps,
clients: this.clients,
strategies: this.strategies,
2016-10-27 15:16:27 +02:00
buckets: this.buckets,
};
}
2016-11-02 12:49:25 +01:00
registerClient (data) {
this.addClient(data.appName, data.instanceId, data.started);
this.addStrategies(data.appName, data.strategies);
2016-11-02 12:49:25 +01:00
}
addPayload (data) {
this.addClient(data.appName, data.instanceId);
2016-10-27 15:16:27 +02:00
this.addBucket(data.appName, data.instanceId, data.bucket);
}
2016-10-27 15:16:27 +02:00
addBucket (appName, instanceId, bucket) {
// TODO normalize time client-server-time / NTP?
let count = 0;
2016-10-27 15:16:27 +02:00
const { start, stop, toggles } = bucket;
Object.keys(toggles).forEach((n) => {
if (this.buckets[n]) {
this.buckets[n].yes.push({ start, stop, count: toggles[n].yes });
this.buckets[n].no.push({ start, stop, count: toggles[n].no });
} else {
2016-10-27 15:16:27 +02:00
this.buckets[n] = {
yes: [{ start, stop, count: toggles[n].yes }],
no: [{ start, stop, count: toggles[n].no }],
};
}
2016-10-27 15:16:27 +02:00
count += (toggles[n].yes + toggles[n].no);
});
this.addClientCount(instanceId, count);
}
addStrategies (appName, strategyNames) {
strategyNames.forEach((name) => {
if (!this.strategies[name]) {
this.strategies[name] = {};
}
this.strategies[name][appName] = true;
});
}
addClientCount (instanceId, count) {
if (typeof count === 'number' && count > 0) {
this.globalCount += count;
if (this.clients[instanceId]) {
this.clients[instanceId].count += count;
}
}
}
2016-11-02 12:49:25 +01:00
addClient (appName, instanceId, started = new Date()) {
this.addApp(appName);
if (instanceId) {
if (this.clients[instanceId]) {
this.clients[instanceId].ping = new Date();
} else {
this.clients[instanceId] = {
appName,
count: 0,
2016-11-02 12:49:25 +01:00
started,
init: new Date(),
ping: new Date(),
};
}
}
}
addApp (v) {
if (v && !this.apps.includes(v)) {
this.apps.push(v);
}
}
};