From 144fa2e5a3656cb1f0492dbaa95ea7adc6558c56 Mon Sep 17 00:00:00 2001 From: rpourzand Date: Wed, 24 Jan 2024 22:34:56 -0800 Subject: [PATCH] Update metrics-overview.md Hey @mirnawong1 . I learned recently that "meta" was deprecated, and instead we need to add a "meta" under config for metric, kind of like here with semantic-model. ```semantic_models: - name: semantic_model_name config: meta: {} ``` We haven't added it yet, so for now I just removed meta. Once we add it under "config", we can add an example back. cc: @Jstein77 --- website/docs/docs/build/metrics-overview.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/docs/docs/build/metrics-overview.md b/website/docs/docs/build/metrics-overview.md index f6844c60498..4d74634a4b8 100644 --- a/website/docs/docs/build/metrics-overview.md +++ b/website/docs/docs/build/metrics-overview.md @@ -20,7 +20,7 @@ The keys for metrics definitions are: | `config` | Provide the specific configurations for your metric. | Optional | | `label` | The display name for your metric. This value will be shown in downstream tools. | Required | | `filter` | You can optionally add a filter string to any metric type, applying filters to dimensions, entities, or time dimensions during metric computation. Consider it as your WHERE clause. | Optional | -| `meta` | Additional metadata you want to add to your metric. | Optional | + Here's a complete example of the metrics spec configuration: