I'm the client on this request, it's important to note that I'm not exactly asking for THIS specifically, there are MANY KPIs not shown in RingCX's custom widget.
LongCalls is one of them, I have found a workaround for this metric but I lack the context to apply the same trick to other metrics.
I would like ALL metrics shown in the default, pre-made widgets to be selectable in the custom version.
Either that or access to the documentation regarding the implementation of these KPIs into a custom widget like this:
function processData(data) { // required function constructor var iter = null, val = {"longCall":0}; for(var i = 0; i < data.length; i++) { iter = data[i]; val.longCall += iter.longCall; } return val; }
I'm the client on this request, it's important to note that I'm not exactly asking for THIS specifically, there are MANY KPIs not shown in RingCX's custom widget.
LongCalls is one of them, I have found a workaround for this metric but I lack the context to apply the same trick to other metrics.
I would like ALL metrics shown in the default, pre-made widgets to be selectable in the custom version.
Either that or access to the documentation regarding the implementation of these KPIs into a custom widget like this:
function processData(data) { // required function constructor var iter = null, val = {"longCall":0}; for(var i = 0; i < data.length; i++) { iter = data[i]; val.longCall += iter.longCall; } return val; }