1
0
mirror of https://github.com/Unleash/unleash.git synced 2024-12-22 19:07:54 +01:00
unleash.unleash/packages/unleash-api/lib/client-metrics.js
2020-02-20 08:30:34 +01:00

95 lines
2.7 KiB
JavaScript

'use strict';
module.exports = class UnleashClientMetrics {
constructor () {
this.globalCount = 0;
this.apps = [];
this.clients = {};
this.strategies = {};
this.buckets = {};
}
toJSON () {
return JSON.stringify(this.getState(), null, 4);
}
getState () {
// TODO this payload will be WAY to big, need to flatten the store
// and possibly evict/flag stale clients
return {
globalCount: this.globalCount,
apps: this.apps,
clients: this.clients,
strategies: this.strategies,
buckets: this.buckets,
};
}
addPayload (data) {
this.addApp(data.appName);
this.addClient(data.appName, data.instanceId, data.clientInitTime);
this.addStrategies(data.appName, data.strategies);
this.addBucket(data.appName, data.instanceId, data.bucket);
}
addBucket (appName, instanceId, bucket) {
// TODO normalize time client-server-time / NTP?
let count = 0;
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 {
this.buckets[n] = {
yes: [{ start, stop, count: toggles[n].yes }],
no: [{ start, stop, count: toggles[n].no }],
};
}
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;
}
}
}
addClient (appName, instanceId, clientInitTime) {
if (instanceId) {
if (this.clients[instanceId]) {
this.clients[instanceId].ping = new Date();
} else {
this.clients[instanceId] = {
appName,
count: 0,
clientInit: clientInitTime,
init: new Date(),
ping: new Date(),
};
}
}
}
addApp (v) {
if (v && !this.apps.includes(v)) {
this.apps.push(v);
}
}
};