From b4971706b20b641b0babd35acb8c11823b78b1ab Mon Sep 17 00:00:00 2001 From: Brett Hoerner Date: Tue, 10 Oct 2023 12:37:44 -0600 Subject: [PATCH] chore(plugin-server): trigger ingestion deploy (#17900) --- plugin-server/src/worker/ingestion/person-state.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/plugin-server/src/worker/ingestion/person-state.ts b/plugin-server/src/worker/ingestion/person-state.ts index 0fd815a6175a7..0728fd095c1ee 100644 --- a/plugin-server/src/worker/ingestion/person-state.ts +++ b/plugin-server/src/worker/ingestion/person-state.ts @@ -686,7 +686,8 @@ export class PersonState { export function ageInMonthsLowCardinality(timestamp: DateTime): number { const ageInMonths = Math.max(-Math.floor(timestamp.diffNow('months').months), 0) - // for getting low cardinality for statsd metrics tags, which can cause issues in e.g. InfluxDB: https://docs.influxdata.com/influxdb/cloud/write-data/best-practices/resolve-high-cardinality/ + // for getting low cardinality for statsd metrics tags, which can cause issues in e.g. InfluxDB: + // https://docs.influxdata.com/influxdb/cloud/write-data/best-practices/resolve-high-cardinality/ const ageLowCardinality = Math.min(ageInMonths, 50) return ageLowCardinality }