* Call the Utapi Client 'getLocationMetric' method with the * associated parameters * @param {string} location - name of data backend to list metric for * @param {object} log - werelogs logger * @param {function} cb - callback to call * @return {function} - `utapi.getLocationMetric`
(location, log, cb)
| 366 | * @return {function} - `utapi.getLocationMetric` |
| 367 | */ |
| 368 | function getLocationMetric(location, log, cb) { |
| 369 | const locationId = _getLocationId(location); |
| 370 | return utapi.getLocationMetric(locationId, log.getSerializedUids(), cb); |
| 371 | } |
| 372 | |
| 373 | /** |
| 374 | * Call the Utapi Client 'pushLocationMetric' method with the |
no test coverage detected