lerna.management.stats.MetricsKey.scala Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of lerna-management_2.13 Show documentation
Show all versions of lerna-management_2.13 Show documentation
A library that is useful for building applications that run on Lerna Stack.
The newest version!
package lerna.management.stats
import lerna.util.tenant.Tenant
/** A metrics key
*
* @param key An underlying value which represents the key of the metric.
* @param tenant `Some` for tenant-specific values, `None` for system-common values
*/
final case class MetricsKey(key: String, tenant: Option[Tenant])