TinyBase logoTinyBase

getMetricIds

The getMetricIds method returns an array of the Metric Ids registered with this Metrics object.

getMetricIds(): Ids
returnsIds

An array of Ids.

Example

This example creates a Metrics object with two definitions, and then gets the Ids of the definitions.

const metrics = createMetrics(createStore())
  .setMetricDefinition('speciesCount', 'species')
  .setMetricDefinition('petsCount', 'pets');

console.log(metrics.getMetricIds());
// -> ['speciesCount', 'petsCount']