Released on 01-12-2023
PipeRider version 0.17.0 is out now, with a new section dedicated for dbt metrics.
:rocket: A new section to view your dbt-defined metrics
Along side profiling metrics, you can now see the metrics as defined in [dbt metrics](https://docs.getdbt.com/docs/build/metrics) in our HTML reports.

You can configure the inclusion of dbt metrics in your dbt settings, adding `tags: [piperider]` to your yml files:
models/marts/schema.yml
version: 2
metrics:
- name: active_users
label: Active Users
model: ref('events')
calculation_method: count_distinct
expression: user_id
timestamp: evetn_time
time_grains: [day, week]
tags: [piperider]
Get in touch :heart:
We'd love your feedback! Send us a message via Intercom on [piperider.io](https://piperider.io), join our [Discord](https://discord.gg/xKxsdPx4d5), report an issue on [GitHub](https://github.com/InfuseAI/piperider/issues), or send us a good old-fashioned [email](mailto:productinfuseai.io)
----
<details>
<summary>All changes</summary>
* [Release] Bump version 0.17.0 by wcchang1115 in https://github.com/InfuseAI/piperider/pull/555
* [Feature] Support dbt metric query by wcchang1115 in https://github.com/InfuseAI/piperider/pull/553
* [Feature] : sc 30090 - UI time series metrics by jonycfu in https://github.com/InfuseAI/piperider/pull/561
* [Chore] : use Array.from notation instead of spread of Map iterables by jonycfu in https://github.com/InfuseAI/piperider/pull/563
* [Bug] issues:541 fix overflow issue by david-k-johnson in https://github.com/InfuseAI/piperider/pull/557
* [Bug] Validate with views as well as tables(if applicable) by david-k-johnson in https://github.com/InfuseAI/piperider/pull/559
* [Bug] Fix business metric query statement by wcchang1115 in https://github.com/InfuseAI/piperider/pull/562
* [Bug] Skip querying dbt metrics with the window property by wcchang1115 in https://github.com/InfuseAI/piperider/pull/566
New Contributors
* david-k-johnson made their first contribution in https://github.com/InfuseAI/piperider/pull/557
**Full Changelog**: https://github.com/InfuseAI/piperider/compare/v0.16.0...v0.17.0
</details>