dbt-labs / metricflow

MetricFlow allows you to define, build, and maintain metrics in code.
https://docs.getdbt.com/docs/build/about-metricflow
Other
1.12k stars 92 forks source link
analytics business-intelligence data data-modeling metrics pypi semantic-layer

metricflow logo

Build and maintain all of your metric logic in code.


# Welcome to MetricFlow See our latest updates in the [Metricflow Changelog](https://github.com/dbt-labs/metricflow/blob/main/CHANGELOG.md)! MetricFlow is a semantic layer that makes it easy to organize metric definitions. It takes those definitions and generates legible and reusable SQL. This makes it easy to get consistent metrics output broken down by attributes (dimensions) of interest. The name comes from the approach taken to generate metrics. A query is compiled into a query plan (represented below) called a dataflow that constructs metrics. The plan is then optimized and rendered to engine-specific SQL.



MetricFlow provides a set of abstractions that help you construct complicated logic and dynamically generate queries to handle: - Multi-hop joins between fact and dimension sources - Complex metric types such as ratio, expression, and cumulative - Metric aggregation to different time granularities - And so much more To get up and running with your own metrics, you should rely on [MetricFlow’s documentation](https://docs.getdbt.com/docs/build/build-metrics-intro). ## Licensing MetricFlow is distributed under a Business Source License (BUSL-1.1). For details on our additional use grant, change license, and change date please refer to our [licensing agreement](https://github.com/dbt-labs/metricflow/blob/main/LICENSE). ## Getting Started ### Install MetricFlow MetricFlow can be installed from PyPi for use as a Python library with the following command: ``` pip install dbt-metricflow ``` MetricFlow currently serves as a query compilation and SQL rendering library, built to work in conjunction with a dbt project. As such, using MetricFlow requires a working dbt project and a dbt adapter. We provide the `dbt-metricflow` bundle for this purpose. You may choose to install other adapters as optional extras from dbt-metricflow. You may need to install Postgres or Graphviz. You can do so by following the install instructions for [Postgres](https://www.postgresql.org/download/) or [Graphviz](https://www.graphviz.org/download/). Mac users may prefer to use brew: `brew install postgresql` or `brew install graphviz`. ### Tutorial The best way to get started is to follow the tutorial steps, which you can access by running: ``` mf tutorial ``` Note: this must be run from a dbt project root directory. ## Resources - [Website](https://transform.co/metricflow) - [Documentation](https://docs.getdbt.com/docs/build/build-metrics-intro) - [Slack Community](https://www.getdbt.com/community/) - [MetricFlow Git Repository](https://github.com/dbt-labs/metricflow) - [CHANGELOG.md](https://github.com/dbt-labs/metricflow/blob/main/CHANGELOG.md) - [TENETS.md](https://github.com/dbt-labs/metricflow/blob/main/TENETS.md) ## Contributing and Code of Conduct This project will be a place where people can easily contribute high-quality updates in a supportive environment. Please read our [code of conduct](https://docs.getdbt.com/community/resources/code-of-conduct) before diving in. To get started on direct contributions, head on over to our [contributor guide](https://github.com/dbt-labs/metricflow/blob/main/CONTRIBUTING.md). ## License MetricFlow is source-available software. Version 0 to 0.140.0 was covered by the Affero GPL license. Version 0.150.0 and greater is covered by the BSL license.. MetricFlow is built by [dbt Labs](https://www.getdbt.com/).