From 137f3f5227980a727c7ac1004f6f5bc02e4bcc5e Mon Sep 17 00:00:00 2001 From: Raymond Cheng Date: Thu, 26 Sep 2024 15:47:08 -0700 Subject: [PATCH] feat: refresh Hasura metadata (#2209) * Includes new timeseries metrics by project and collection * Update schema of metrics_v0 to include namespace * Update to newest DDN schema using codegen * Upgrade ndc-clickhouse to 1.0.2 --- apps/hasura3/.hasura/context.yaml | 6 +- apps/hasura3/app/metadata/.gitkeep | 0 apps/hasura3/app/subgraph.yaml | 2 +- apps/hasura3/globals/graphql-config.hml | 6 + .../.hasura-connector/connector-metadata.yaml | 4 +- .../connector/oso_clickhouse/compose.yaml | 2 +- .../oso_clickhouse/configuration.json | 7630 ++++++- .../connector/oso_clickhouse/connector.yaml | 2 +- .../metadata/ArtifactsByProjectV1.hml | 111 +- .../oso_subgraph/metadata/ArtifactsV1.hml | 90 +- .../metadata/CodeMetricsByArtifactV0.hml | 174 +- .../metadata/CodeMetricsByProjectV1.hml | 195 +- .../oso_subgraph/metadata/CollectionsV1.hml | 90 +- .../oso_subgraph/metadata/ContractsV0.hml | 69 +- .../EventIndexingStatusByProjectV1.hml | 111 +- .../oso_subgraph/metadata/EventTypesV1.hml | 55 +- .../metadata/MetricsMetricsV0.hml | 111 +- .../MetricsTimeseriesMetricsByArtifactV0.hml | 83 +- ...MetricsTimeseriesMetricsByCollectionV0.hml | 162 + .../MetricsTimeseriesMetricsByProjectV0.hml | 162 + .../metadata/OnchainMetricsByProjectV1.hml | 188 +- .../metadata/ProjectsByCollectionV1.hml | 104 +- .../oso_subgraph/metadata/ProjectsV1.hml | 90 +- .../metadata/TimeseriesEventsByArtifactV0.hml | 97 +- .../hasura3/oso_subgraph/metadata/UsersV1.hml | 97 +- .../metadata/oso_clickhouse-types.hml | 495 + .../oso_subgraph/metadata/oso_clickhouse.hml | 16411 ++++++++++++++-- apps/hasura3/package.json | 2 +- 28 files changed, 23895 insertions(+), 2654 deletions(-) create mode 100644 apps/hasura3/app/metadata/.gitkeep create mode 100644 apps/hasura3/oso_subgraph/metadata/MetricsTimeseriesMetricsByCollectionV0.hml create mode 100644 apps/hasura3/oso_subgraph/metadata/MetricsTimeseriesMetricsByProjectV0.hml diff --git a/apps/hasura3/.hasura/context.yaml b/apps/hasura3/.hasura/context.yaml index 86cb3edf6..9b8f50a50 100644 --- a/apps/hasura3/.hasura/context.yaml +++ b/apps/hasura3/.hasura/context.yaml @@ -1,5 +1,5 @@ kind: Context -version: v2 +version: v3 definition: current: default contexts: @@ -9,3 +9,7 @@ definition: subgraph: ../oso_subgraph/subgraph.yaml localEnvFile: ../.env cloudEnvFile: ../.env.cloud + scripts: + docker-start: + bash: HASURA_DDN_PAT=$(ddn auth print-pat) docker compose -f compose.yaml --env-file .env up --build --pull always -d + powershell: $Env:HASURA_DDN_PAT = ddn auth print-pat; docker compose -f compose.yaml --env-file .env up --build --pull always -d diff --git a/apps/hasura3/app/metadata/.gitkeep b/apps/hasura3/app/metadata/.gitkeep new file mode 100644 index 000000000..e69de29bb diff --git a/apps/hasura3/app/subgraph.yaml b/apps/hasura3/app/subgraph.yaml index 045ed7333..a14891122 100644 --- a/apps/hasura3/app/subgraph.yaml +++ b/apps/hasura3/app/subgraph.yaml @@ -5,4 +5,4 @@ definition: generator: rootPath: . includePaths: - - metadata + - metadata \ No newline at end of file diff --git a/apps/hasura3/globals/graphql-config.hml b/apps/hasura3/globals/graphql-config.hml index f33f68bfc..a279754e5 100644 --- a/apps/hasura3/globals/graphql-config.hml +++ b/apps/hasura3/globals/graphql-config.hml @@ -1,3 +1,4 @@ +--- kind: GraphqlConfig version: v1 definition: @@ -26,7 +27,12 @@ definition: - Asc - Desc typeName: OrderBy + aggregate: + filterInputFieldName: filter_input + countFieldName: _count + countDistinctFieldName: _count_distinct mutation: rootOperationTypeName: Mutation apolloFederation: enableRootFields: true + diff --git a/apps/hasura3/oso_subgraph/connector/oso_clickhouse/.hasura-connector/connector-metadata.yaml b/apps/hasura3/oso_subgraph/connector/oso_clickhouse/.hasura-connector/connector-metadata.yaml index d9c295398..46c330254 100644 --- a/apps/hasura3/oso_subgraph/connector/oso_clickhouse/.hasura-connector/connector-metadata.yaml +++ b/apps/hasura3/oso_subgraph/connector/oso_clickhouse/.hasura-connector/connector-metadata.yaml @@ -1,6 +1,6 @@ packagingDefinition: type: PrebuiltDockerImage - dockerImage: "ghcr.io/hasura/ndc-clickhouse:v1.0.0" + dockerImage: "ghcr.io/hasura/ndc-clickhouse:v1.0.2" supportedEnvironmentVariables: - name: CLICKHOUSE_URL description: The ClickHouse connection URL @@ -12,7 +12,7 @@ commands: update: hasura-clickhouse update cliPlugin: name: clickhouse - version: "v1.0.0" + version: "v1.0.2" dockerComposeWatch: - path: ./ target: /etc/connector diff --git a/apps/hasura3/oso_subgraph/connector/oso_clickhouse/compose.yaml b/apps/hasura3/oso_subgraph/connector/oso_clickhouse/compose.yaml index 13d56d087..c2f14abd1 100644 --- a/apps/hasura3/oso_subgraph/connector/oso_clickhouse/compose.yaml +++ b/apps/hasura3/oso_subgraph/connector/oso_clickhouse/compose.yaml @@ -3,7 +3,7 @@ services: build: context: . dockerfile_inline: |- - FROM ghcr.io/hasura/ndc-clickhouse:v1.0.0 + FROM ghcr.io/hasura/ndc-clickhouse:v1.0.2 COPY ./ /etc/connector develop: watch: diff --git a/apps/hasura3/oso_subgraph/connector/oso_clickhouse/configuration.json b/apps/hasura3/oso_subgraph/connector/oso_clickhouse/configuration.json index 5a1dc2197..e37ef8e1a 100644 --- a/apps/hasura3/oso_subgraph/connector/oso_clickhouse/configuration.json +++ b/apps/hasura3/oso_subgraph/connector/oso_clickhouse/configuration.json @@ -154,453 +154,6835 @@ } } }, - "metrics__dev_events_daily_to_artifact": { + "metrics__test_active_addresses_to_artifact_daily": { + "name": "active_addresses_to_artifact_daily", + "schema": "metrics__test", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_artifact_id": "String" + } + } + }, + "metrics__test_active_addresses_to_artifact_monthly": { + "name": "active_addresses_to_artifact_monthly", + "schema": "metrics__test", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_artifact_id": "String" + } + } + }, + "metrics__test_active_addresses_to_artifact_weekly": { + "name": "active_addresses_to_artifact_weekly", + "schema": "metrics__test", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_artifact_id": "String" + } + } + }, + "metrics__test_active_addresses_to_collection_daily": { + "name": "active_addresses_to_collection_daily", + "schema": "metrics__test", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_collection_id": "String" + } + } + }, + "metrics__test_active_addresses_to_collection_monthly": { + "name": "active_addresses_to_collection_monthly", + "schema": "metrics__test", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_collection_id": "String" + } + } + }, + "metrics__test_active_addresses_to_collection_weekly": { + "name": "active_addresses_to_collection_weekly", + "schema": "metrics__test", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_collection_id": "String" + } + } + }, + "metrics__test_active_addresses_to_project_daily": { + "name": "active_addresses_to_project_daily", + "schema": "metrics__test", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_project_id": "String" + } + } + }, + "metrics__test_active_addresses_to_project_monthly": { + "name": "active_addresses_to_project_monthly", + "schema": "metrics__test", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_project_id": "String" + } + } + }, + "metrics__test_active_addresses_to_project_weekly": { + "name": "active_addresses_to_project_weekly", + "schema": "metrics__test", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_project_id": "String" + } + } + }, + "metrics__test_commits_to_artifact_daily": { + "name": "commits_to_artifact_daily", + "schema": "metrics__test", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_artifact_id": "String" + } + } + }, + "metrics__test_commits_to_artifact_monthly": { + "name": "commits_to_artifact_monthly", + "schema": "metrics__test", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_artifact_id": "String" + } + } + }, + "metrics__test_commits_to_artifact_weekly": { + "name": "commits_to_artifact_weekly", + "schema": "metrics__test", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_artifact_id": "String" + } + } + }, + "metrics__test_commits_to_collection_daily": { + "name": "commits_to_collection_daily", + "schema": "metrics__test", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_collection_id": "String" + } + } + }, + "metrics__test_commits_to_collection_monthly": { + "name": "commits_to_collection_monthly", + "schema": "metrics__test", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_collection_id": "String" + } + } + }, + "metrics__test_commits_to_collection_weekly": { + "name": "commits_to_collection_weekly", + "schema": "metrics__test", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_collection_id": "String" + } + } + }, + "metrics__test_commits_to_project_daily": { + "name": "commits_to_project_daily", + "schema": "metrics__test", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_project_id": "String" + } + } + }, + "metrics__test_commits_to_project_monthly": { + "name": "commits_to_project_monthly", + "schema": "metrics__test", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_project_id": "String" + } + } + }, + "metrics__test_commits_to_project_weekly": { + "name": "commits_to_project_weekly", + "schema": "metrics__test", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_project_id": "String" + } + } + }, + "metrics__test_contributor_classifications_to_artifact_over_30_day": { + "name": "contributor_classifications_to_artifact_over_30_day", + "schema": "metrics__test", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_artifact_id": "String" + } + } + }, + "metrics__test_contributor_classifications_to_artifact_over_60_day": { + "name": "contributor_classifications_to_artifact_over_60_day", + "schema": "metrics__test", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_artifact_id": "String" + } + } + }, + "metrics__test_contributor_classifications_to_artifact_over_90_day": { + "name": "contributor_classifications_to_artifact_over_90_day", + "schema": "metrics__test", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_artifact_id": "String" + } + } + }, + "metrics__test_contributor_classifications_to_collection_over_30_day": { + "name": "contributor_classifications_to_collection_over_30_day", + "schema": "metrics__test", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_collection_id": "String" + } + } + }, + "metrics__test_contributor_classifications_to_collection_over_60_day": { + "name": "contributor_classifications_to_collection_over_60_day", + "schema": "metrics__test", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_collection_id": "String" + } + } + }, + "metrics__test_contributor_classifications_to_collection_over_90_day": { + "name": "contributor_classifications_to_collection_over_90_day", + "schema": "metrics__test", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_collection_id": "String" + } + } + }, + "metrics__test_contributor_classifications_to_project_over_30_day": { + "name": "contributor_classifications_to_project_over_30_day", + "schema": "metrics__test", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_project_id": "String" + } + } + }, + "metrics__test_contributor_classifications_to_project_over_60_day": { + "name": "contributor_classifications_to_project_over_60_day", + "schema": "metrics__test", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_project_id": "String" + } + } + }, + "metrics__test_contributor_classifications_to_project_over_90_day": { + "name": "contributor_classifications_to_project_over_90_day", + "schema": "metrics__test", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_project_id": "String" + } + } + }, + "metrics__test_developer_active_days_to_artifact_over_30_day": { + "name": "developer_active_days_to_artifact_over_30_day", + "schema": "metrics__test", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_artifact_id": "String" + } + } + }, + "metrics__test_developer_active_days_to_artifact_over_60_day": { + "name": "developer_active_days_to_artifact_over_60_day", + "schema": "metrics__test", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_artifact_id": "String" + } + } + }, + "metrics__test_developer_active_days_to_artifact_over_90_day": { + "name": "developer_active_days_to_artifact_over_90_day", + "schema": "metrics__test", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_artifact_id": "String" + } + } + }, + "metrics__test_developer_active_days_to_collection_over_30_day": { + "name": "developer_active_days_to_collection_over_30_day", + "schema": "metrics__test", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_collection_id": "String" + } + } + }, + "metrics__test_developer_active_days_to_collection_over_60_day": { + "name": "developer_active_days_to_collection_over_60_day", + "schema": "metrics__test", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_collection_id": "String" + } + } + }, + "metrics__test_developer_active_days_to_collection_over_90_day": { + "name": "developer_active_days_to_collection_over_90_day", + "schema": "metrics__test", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_collection_id": "String" + } + } + }, + "metrics__test_developer_active_days_to_project_over_30_day": { + "name": "developer_active_days_to_project_over_30_day", + "schema": "metrics__test", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_project_id": "String" + } + } + }, + "metrics__test_developer_active_days_to_project_over_60_day": { + "name": "developer_active_days_to_project_over_60_day", + "schema": "metrics__test", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_project_id": "String" + } + } + }, + "metrics__test_developer_active_days_to_project_over_90_day": { + "name": "developer_active_days_to_project_over_90_day", + "schema": "metrics__test", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_project_id": "String" + } + } + }, + "metrics__test_developer_classifications_to_artifact_over_30_day": { + "name": "developer_classifications_to_artifact_over_30_day", + "schema": "metrics__test", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_artifact_id": "String" + } + } + }, + "metrics__test_developer_classifications_to_artifact_over_60_day": { + "name": "developer_classifications_to_artifact_over_60_day", + "schema": "metrics__test", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_artifact_id": "String" + } + } + }, + "metrics__test_developer_classifications_to_artifact_over_90_day": { + "name": "developer_classifications_to_artifact_over_90_day", + "schema": "metrics__test", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_artifact_id": "String" + } + } + }, + "metrics__test_developer_classifications_to_collection_over_30_day": { + "name": "developer_classifications_to_collection_over_30_day", + "schema": "metrics__test", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_collection_id": "String" + } + } + }, + "metrics__test_developer_classifications_to_collection_over_60_day": { + "name": "developer_classifications_to_collection_over_60_day", + "schema": "metrics__test", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_collection_id": "String" + } + } + }, + "metrics__test_developer_classifications_to_collection_over_90_day": { + "name": "developer_classifications_to_collection_over_90_day", + "schema": "metrics__test", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_collection_id": "String" + } + } + }, + "metrics__test_developer_classifications_to_project_over_30_day": { + "name": "developer_classifications_to_project_over_30_day", + "schema": "metrics__test", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_project_id": "String" + } + } + }, + "metrics__test_developer_classifications_to_project_over_60_day": { + "name": "developer_classifications_to_project_over_60_day", + "schema": "metrics__test", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_project_id": "String" + } + } + }, + "metrics__test_developer_classifications_to_project_over_90_day": { + "name": "developer_classifications_to_project_over_90_day", + "schema": "metrics__test", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_project_id": "String" + } + } + }, + "metrics__test_events_daily_to_artifact": { + "name": "events_daily_to_artifact", + "schema": "metrics__test", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "_sign": "Int8", + "_version": "UInt32", + "amount": "Float64", + "bucket_day": "Date", + "event_source": "String", + "event_type": "String", + "from_artifact_id": "String", + "to_artifact_id": "String" + } + } + }, + "metrics__test_forks_to_artifact_daily": { + "name": "forks_to_artifact_daily", + "schema": "metrics__test", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_artifact_id": "String" + } + } + }, + "metrics__test_forks_to_artifact_monthly": { + "name": "forks_to_artifact_monthly", + "schema": "metrics__test", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_artifact_id": "String" + } + } + }, + "metrics__test_forks_to_artifact_weekly": { + "name": "forks_to_artifact_weekly", + "schema": "metrics__test", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_artifact_id": "String" + } + } + }, + "metrics__test_forks_to_collection_daily": { + "name": "forks_to_collection_daily", + "schema": "metrics__test", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_collection_id": "String" + } + } + }, + "metrics__test_forks_to_collection_monthly": { + "name": "forks_to_collection_monthly", + "schema": "metrics__test", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_collection_id": "String" + } + } + }, + "metrics__test_forks_to_collection_weekly": { + "name": "forks_to_collection_weekly", + "schema": "metrics__test", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_collection_id": "String" + } + } + }, + "metrics__test_forks_to_project_daily": { + "name": "forks_to_project_daily", + "schema": "metrics__test", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_project_id": "String" + } + } + }, + "metrics__test_forks_to_project_monthly": { + "name": "forks_to_project_monthly", + "schema": "metrics__test", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_project_id": "String" + } + } + }, + "metrics__test_forks_to_project_weekly": { + "name": "forks_to_project_weekly", + "schema": "metrics__test", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_project_id": "String" + } + } + }, + "metrics__test_gas_fees_to_artifact_daily": { + "name": "gas_fees_to_artifact_daily", + "schema": "metrics__test", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_artifact_id": "String" + } + } + }, + "metrics__test_gas_fees_to_artifact_monthly": { + "name": "gas_fees_to_artifact_monthly", + "schema": "metrics__test", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_artifact_id": "String" + } + } + }, + "metrics__test_gas_fees_to_artifact_weekly": { + "name": "gas_fees_to_artifact_weekly", + "schema": "metrics__test", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_artifact_id": "String" + } + } + }, + "metrics__test_gas_fees_to_collection_daily": { + "name": "gas_fees_to_collection_daily", + "schema": "metrics__test", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_collection_id": "String" + } + } + }, + "metrics__test_gas_fees_to_collection_monthly": { + "name": "gas_fees_to_collection_monthly", + "schema": "metrics__test", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_collection_id": "String" + } + } + }, + "metrics__test_gas_fees_to_collection_weekly": { + "name": "gas_fees_to_collection_weekly", + "schema": "metrics__test", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_collection_id": "String" + } + } + }, + "metrics__test_gas_fees_to_project_daily": { + "name": "gas_fees_to_project_daily", + "schema": "metrics__test", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_project_id": "String" + } + } + }, + "metrics__test_gas_fees_to_project_monthly": { + "name": "gas_fees_to_project_monthly", + "schema": "metrics__test", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_project_id": "String" + } + } + }, + "metrics__test_gas_fees_to_project_weekly": { + "name": "gas_fees_to_project_weekly", + "schema": "metrics__test", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_project_id": "String" + } + } + }, + "metrics__test_metrics_v0": { + "name": "metrics_v0", + "schema": "metrics__test", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "aggregation_function": "Nullable(String)", + "definition_ref": "Nullable(String)", + "description": "Nullable(String)", + "display_name": "String", + "metric_id": "String", + "metric_name": "String", + "metric_namespace": "String", + "metric_source": "String", + "raw_definition": "Nullable(String)" + } + } + }, + "metrics__test_stars_to_artifact_daily": { + "name": "stars_to_artifact_daily", + "schema": "metrics__test", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_artifact_id": "String" + } + } + }, + "metrics__test_stars_to_artifact_monthly": { + "name": "stars_to_artifact_monthly", + "schema": "metrics__test", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_artifact_id": "String" + } + } + }, + "metrics__test_stars_to_artifact_weekly": { + "name": "stars_to_artifact_weekly", + "schema": "metrics__test", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_artifact_id": "String" + } + } + }, + "metrics__test_stars_to_collection_daily": { + "name": "stars_to_collection_daily", + "schema": "metrics__test", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_collection_id": "String" + } + } + }, + "metrics__test_stars_to_collection_monthly": { + "name": "stars_to_collection_monthly", + "schema": "metrics__test", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_collection_id": "String" + } + } + }, + "metrics__test_stars_to_collection_weekly": { + "name": "stars_to_collection_weekly", + "schema": "metrics__test", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_collection_id": "String" + } + } + }, + "metrics__test_stars_to_project_daily": { + "name": "stars_to_project_daily", + "schema": "metrics__test", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_project_id": "String" + } + } + }, + "metrics__test_stars_to_project_monthly": { + "name": "stars_to_project_monthly", + "schema": "metrics__test", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_project_id": "String" + } + } + }, + "metrics__test_stars_to_project_weekly": { + "name": "stars_to_project_weekly", + "schema": "metrics__test", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_project_id": "String" + } + } + }, + "metrics__test_timeseries_metrics_by_artifact_v0": { + "name": "timeseries_metrics_by_artifact_v0", + "schema": "metrics__test", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "artifact_id": "String", + "metric_id": "String", + "sample_date": "Date", + "unit": "Nullable(String)" + } + } + }, + "metrics__test_timeseries_metrics_by_collection_v0": { + "name": "timeseries_metrics_by_collection_v0", + "schema": "metrics__test", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "collection_id": "String", + "metric_id": "String", + "sample_date": "Date", + "unit": "Nullable(String)" + } + } + }, + "metrics__test_timeseries_metrics_by_project_v0": { + "name": "timeseries_metrics_by_project_v0", + "schema": "metrics__test", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "metric_id": "String", + "project_id": "String", + "sample_date": "Date", + "unit": "Nullable(String)" + } + } + }, + "metrics__test_timeseries_metrics_to_artifact": { + "name": "timeseries_metrics_to_artifact", + "schema": "metrics__test", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_artifact_id": "String" + } + } + }, + "metrics__test_timeseries_metrics_to_collection": { + "name": "timeseries_metrics_to_collection", + "schema": "metrics__test", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_collection_id": "String" + } + } + }, + "metrics__test_timeseries_metrics_to_project": { + "name": "timeseries_metrics_to_project", + "schema": "metrics__test", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_project_id": "String" + } + } + }, + "metrics_active_addresses_to_artifact_daily": { + "name": "active_addresses_to_artifact_daily", + "schema": "metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_artifact_id": "String" + } + } + }, + "metrics_active_addresses_to_artifact_monthly": { + "name": "active_addresses_to_artifact_monthly", + "schema": "metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_artifact_id": "String" + } + } + }, + "metrics_active_addresses_to_artifact_weekly": { + "name": "active_addresses_to_artifact_weekly", + "schema": "metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_artifact_id": "String" + } + } + }, + "metrics_active_addresses_to_collection_daily": { + "name": "active_addresses_to_collection_daily", + "schema": "metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_collection_id": "String" + } + } + }, + "metrics_active_addresses_to_collection_monthly": { + "name": "active_addresses_to_collection_monthly", + "schema": "metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_collection_id": "String" + } + } + }, + "metrics_active_addresses_to_collection_weekly": { + "name": "active_addresses_to_collection_weekly", + "schema": "metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_collection_id": "String" + } + } + }, + "metrics_active_addresses_to_project_daily": { + "name": "active_addresses_to_project_daily", + "schema": "metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_project_id": "String" + } + } + }, + "metrics_active_addresses_to_project_monthly": { + "name": "active_addresses_to_project_monthly", + "schema": "metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_project_id": "String" + } + } + }, + "metrics_active_addresses_to_project_weekly": { + "name": "active_addresses_to_project_weekly", + "schema": "metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_project_id": "String" + } + } + }, + "metrics_commits_to_artifact_daily": { + "name": "commits_to_artifact_daily", + "schema": "metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_artifact_id": "String" + } + } + }, + "metrics_commits_to_artifact_monthly": { + "name": "commits_to_artifact_monthly", + "schema": "metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_artifact_id": "String" + } + } + }, + "metrics_commits_to_artifact_weekly": { + "name": "commits_to_artifact_weekly", + "schema": "metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_artifact_id": "String" + } + } + }, + "metrics_commits_to_collection_daily": { + "name": "commits_to_collection_daily", + "schema": "metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_collection_id": "String" + } + } + }, + "metrics_commits_to_collection_monthly": { + "name": "commits_to_collection_monthly", + "schema": "metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_collection_id": "String" + } + } + }, + "metrics_commits_to_collection_weekly": { + "name": "commits_to_collection_weekly", + "schema": "metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_collection_id": "String" + } + } + }, + "metrics_commits_to_project_daily": { + "name": "commits_to_project_daily", + "schema": "metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_project_id": "String" + } + } + }, + "metrics_commits_to_project_monthly": { + "name": "commits_to_project_monthly", + "schema": "metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_project_id": "String" + } + } + }, + "metrics_commits_to_project_weekly": { + "name": "commits_to_project_weekly", + "schema": "metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_project_id": "String" + } + } + }, + "metrics_contributor_classifications_to_artifact_over_30_day": { + "name": "contributor_classifications_to_artifact_over_30_day", + "schema": "metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_artifact_id": "String" + } + } + }, + "metrics_contributor_classifications_to_artifact_over_60_day": { + "name": "contributor_classifications_to_artifact_over_60_day", + "schema": "metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_artifact_id": "String" + } + } + }, + "metrics_contributor_classifications_to_artifact_over_90_day": { + "name": "contributor_classifications_to_artifact_over_90_day", + "schema": "metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_artifact_id": "String" + } + } + }, + "metrics_contributor_classifications_to_collection_over_30_day": { + "name": "contributor_classifications_to_collection_over_30_day", + "schema": "metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_collection_id": "String" + } + } + }, + "metrics_contributor_classifications_to_collection_over_60_day": { + "name": "contributor_classifications_to_collection_over_60_day", + "schema": "metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_collection_id": "String" + } + } + }, + "metrics_contributor_classifications_to_collection_over_90_day": { + "name": "contributor_classifications_to_collection_over_90_day", + "schema": "metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_collection_id": "String" + } + } + }, + "metrics_contributor_classifications_to_project_over_30_day": { + "name": "contributor_classifications_to_project_over_30_day", + "schema": "metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_project_id": "String" + } + } + }, + "metrics_contributor_classifications_to_project_over_60_day": { + "name": "contributor_classifications_to_project_over_60_day", + "schema": "metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_project_id": "String" + } + } + }, + "metrics_contributor_classifications_to_project_over_90_day": { + "name": "contributor_classifications_to_project_over_90_day", + "schema": "metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_project_id": "String" + } + } + }, + "metrics_developer_active_days_to_artifact_over_30_day": { + "name": "developer_active_days_to_artifact_over_30_day", + "schema": "metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_artifact_id": "String" + } + } + }, + "metrics_developer_active_days_to_artifact_over_60_day": { + "name": "developer_active_days_to_artifact_over_60_day", + "schema": "metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_artifact_id": "String" + } + } + }, + "metrics_developer_active_days_to_artifact_over_90_day": { + "name": "developer_active_days_to_artifact_over_90_day", + "schema": "metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_artifact_id": "String" + } + } + }, + "metrics_developer_active_days_to_collection_over_30_day": { + "name": "developer_active_days_to_collection_over_30_day", + "schema": "metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_collection_id": "String" + } + } + }, + "metrics_developer_active_days_to_collection_over_60_day": { + "name": "developer_active_days_to_collection_over_60_day", + "schema": "metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_collection_id": "String" + } + } + }, + "metrics_developer_active_days_to_collection_over_90_day": { + "name": "developer_active_days_to_collection_over_90_day", + "schema": "metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_collection_id": "String" + } + } + }, + "metrics_developer_active_days_to_project_over_30_day": { + "name": "developer_active_days_to_project_over_30_day", + "schema": "metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_project_id": "String" + } + } + }, + "metrics_developer_active_days_to_project_over_60_day": { + "name": "developer_active_days_to_project_over_60_day", + "schema": "metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_project_id": "String" + } + } + }, + "metrics_developer_active_days_to_project_over_90_day": { + "name": "developer_active_days_to_project_over_90_day", + "schema": "metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_project_id": "String" + } + } + }, + "metrics_developer_classifications_to_artifact_over_30_day": { + "name": "developer_classifications_to_artifact_over_30_day", + "schema": "metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_artifact_id": "String" + } + } + }, + "metrics_developer_classifications_to_artifact_over_60_day": { + "name": "developer_classifications_to_artifact_over_60_day", + "schema": "metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_artifact_id": "String" + } + } + }, + "metrics_developer_classifications_to_artifact_over_90_day": { + "name": "developer_classifications_to_artifact_over_90_day", + "schema": "metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_artifact_id": "String" + } + } + }, + "metrics_developer_classifications_to_collection_over_30_day": { + "name": "developer_classifications_to_collection_over_30_day", + "schema": "metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_collection_id": "String" + } + } + }, + "metrics_developer_classifications_to_collection_over_60_day": { + "name": "developer_classifications_to_collection_over_60_day", + "schema": "metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_collection_id": "String" + } + } + }, + "metrics_developer_classifications_to_collection_over_90_day": { + "name": "developer_classifications_to_collection_over_90_day", + "schema": "metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_collection_id": "String" + } + } + }, + "metrics_developer_classifications_to_project_over_30_day": { + "name": "developer_classifications_to_project_over_30_day", + "schema": "metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_project_id": "String" + } + } + }, + "metrics_developer_classifications_to_project_over_60_day": { + "name": "developer_classifications_to_project_over_60_day", + "schema": "metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_project_id": "String" + } + } + }, + "metrics_developer_classifications_to_project_over_90_day": { + "name": "developer_classifications_to_project_over_90_day", + "schema": "metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_project_id": "String" + } + } + }, + "metrics_events_daily_to_artifact": { + "name": "events_daily_to_artifact", + "schema": "metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "_sign": "Int8", + "_version": "UInt32", + "amount": "Float64", + "bucket_day": "Date", + "event_source": "String", + "event_type": "String", + "from_artifact_id": "String", + "to_artifact_id": "String" + } + } + }, + "metrics_forks_to_artifact_daily": { + "name": "forks_to_artifact_daily", + "schema": "metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_artifact_id": "String" + } + } + }, + "metrics_forks_to_artifact_monthly": { + "name": "forks_to_artifact_monthly", + "schema": "metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_artifact_id": "String" + } + } + }, + "metrics_forks_to_artifact_weekly": { + "name": "forks_to_artifact_weekly", + "schema": "metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_artifact_id": "String" + } + } + }, + "metrics_forks_to_collection_daily": { + "name": "forks_to_collection_daily", + "schema": "metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_collection_id": "String" + } + } + }, + "metrics_forks_to_collection_monthly": { + "name": "forks_to_collection_monthly", + "schema": "metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_collection_id": "String" + } + } + }, + "metrics_forks_to_collection_weekly": { + "name": "forks_to_collection_weekly", + "schema": "metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_collection_id": "String" + } + } + }, + "metrics_forks_to_project_daily": { + "name": "forks_to_project_daily", + "schema": "metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_project_id": "String" + } + } + }, + "metrics_forks_to_project_monthly": { + "name": "forks_to_project_monthly", + "schema": "metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_project_id": "String" + } + } + }, + "metrics_forks_to_project_weekly": { + "name": "forks_to_project_weekly", + "schema": "metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_project_id": "String" + } + } + }, + "metrics_gas_fees_to_artifact_daily": { + "name": "gas_fees_to_artifact_daily", + "schema": "metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_artifact_id": "String" + } + } + }, + "metrics_gas_fees_to_artifact_monthly": { + "name": "gas_fees_to_artifact_monthly", + "schema": "metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_artifact_id": "String" + } + } + }, + "metrics_gas_fees_to_artifact_weekly": { + "name": "gas_fees_to_artifact_weekly", + "schema": "metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_artifact_id": "String" + } + } + }, + "metrics_gas_fees_to_collection_daily": { + "name": "gas_fees_to_collection_daily", + "schema": "metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_collection_id": "String" + } + } + }, + "metrics_gas_fees_to_collection_monthly": { + "name": "gas_fees_to_collection_monthly", + "schema": "metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_collection_id": "String" + } + } + }, + "metrics_gas_fees_to_collection_weekly": { + "name": "gas_fees_to_collection_weekly", + "schema": "metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_collection_id": "String" + } + } + }, + "metrics_gas_fees_to_project_daily": { + "name": "gas_fees_to_project_daily", + "schema": "metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_project_id": "String" + } + } + }, + "metrics_gas_fees_to_project_monthly": { + "name": "gas_fees_to_project_monthly", + "schema": "metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_project_id": "String" + } + } + }, + "metrics_gas_fees_to_project_weekly": { + "name": "gas_fees_to_project_weekly", + "schema": "metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_project_id": "String" + } + } + }, + "metrics_metrics_v0": { + "name": "metrics_v0", + "schema": "metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "aggregation_function": "Nullable(String)", + "definition_ref": "Nullable(String)", + "description": "Nullable(String)", + "display_name": "String", + "metric_id": "String", + "metric_name": "String", + "metric_namespace": "String", + "metric_source": "String", + "raw_definition": "Nullable(String)" + } + } + }, + "metrics_stars_to_artifact_daily": { + "name": "stars_to_artifact_daily", + "schema": "metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_artifact_id": "String" + } + } + }, + "metrics_stars_to_artifact_monthly": { + "name": "stars_to_artifact_monthly", + "schema": "metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_artifact_id": "String" + } + } + }, + "metrics_stars_to_artifact_weekly": { + "name": "stars_to_artifact_weekly", + "schema": "metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_artifact_id": "String" + } + } + }, + "metrics_stars_to_collection_daily": { + "name": "stars_to_collection_daily", + "schema": "metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_collection_id": "String" + } + } + }, + "metrics_stars_to_collection_monthly": { + "name": "stars_to_collection_monthly", + "schema": "metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_collection_id": "String" + } + } + }, + "metrics_stars_to_collection_weekly": { + "name": "stars_to_collection_weekly", + "schema": "metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_collection_id": "String" + } + } + }, + "metrics_stars_to_project_daily": { + "name": "stars_to_project_daily", + "schema": "metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_project_id": "String" + } + } + }, + "metrics_stars_to_project_monthly": { + "name": "stars_to_project_monthly", + "schema": "metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_project_id": "String" + } + } + }, + "metrics_stars_to_project_weekly": { + "name": "stars_to_project_weekly", + "schema": "metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_project_id": "String" + } + } + }, + "metrics_timeseries_metrics_by_artifact_v0": { + "name": "timeseries_metrics_by_artifact_v0", + "schema": "metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "artifact_id": "String", + "metric_id": "String", + "sample_date": "Date", + "unit": "Nullable(String)" + } + } + }, + "metrics_timeseries_metrics_by_collection_v0": { + "name": "timeseries_metrics_by_collection_v0", + "schema": "metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "collection_id": "String", + "metric_id": "String", + "sample_date": "Date", + "unit": "Nullable(String)" + } + } + }, + "metrics_timeseries_metrics_by_project_v0": { + "name": "timeseries_metrics_by_project_v0", + "schema": "metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "metric_id": "String", + "project_id": "String", + "sample_date": "Date", + "unit": "Nullable(String)" + } + } + }, + "metrics_timeseries_metrics_to_artifact": { + "name": "timeseries_metrics_to_artifact", + "schema": "metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_artifact_id": "String" + } + } + }, + "metrics_timeseries_metrics_to_collection": { + "name": "timeseries_metrics_to_collection", + "schema": "metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_collection_id": "String" + } + } + }, + "metrics_timeseries_metrics_to_project": { + "name": "timeseries_metrics_to_project", + "schema": "metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_project_id": "String" + } + } + }, + "onchain_metrics_by_project_v1": { + "name": "onchain_metrics_by_project_v1", + "schema": "default", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "active_contract_count_90_days": "Float32", + "address_count": "Float32", + "address_count_90_days": "Float32", + "days_since_first_transaction": "Float32", + "display_name": "String", + "event_source": "String", + "gas_fees_sum": "Float32", + "gas_fees_sum_6_months": "Float32", + "high_activity_address_count_90_days": "Float32", + "low_activity_address_count_90_days": "Float32", + "medium_activity_address_count_90_days": "Float32", + "multi_project_address_count_90_days": "Float32", + "new_address_count_90_days": "Float32", + "project_id": "String", + "project_name": "String", + "project_namespace": "String", + "project_source": "String", + "returning_address_count_90_days": "Float32", + "transaction_count": "Float32", + "transaction_count_6_months": "Float32" + } + } + }, + "projects_by_collection_v1": { + "name": "projects_by_collection_v1", + "schema": "default", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "collection_id": "String", + "collection_name": "String", + "collection_namespace": "String", + "collection_source": "String", + "project_id": "String", + "project_name": "String", + "project_namespace": "String", + "project_source": "String" + } + } + }, + "projects_v1": { + "name": "projects_v1", + "schema": "default", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "description": "String", + "display_name": "String", + "project_id": "String", + "project_name": "String", + "project_namespace": "String", + "project_source": "String" + } + } + }, + "reuventest_events_daily_to_artifact": { "name": "events_daily_to_artifact", - "schema": "metrics__dev", + "schema": "reuventest", + "comment": "", + "primary_key": { + "name": "event_type, event_source, from_artifact_id, to_artifact_id, bucket_day", + "columns": [ + "bucket_day", + "event_source", + "event_type", + "from_artifact_id", + "to_artifact_id" + ] + }, + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "bucket_day": "Date", + "event_source": "String", + "event_type": "String", + "from_artifact_id": "String", + "to_artifact_id": "String" + } + } + }, + "reuventest_events_daily_to_artifact_mv": { + "name": "events_daily_to_artifact_mv", + "schema": "reuventest", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "bucket_day": "DateTime", + "event_source": "String", + "event_type": "String", + "from_artifact_id": "String", + "to_artifact_id": "String" + } + } + }, + "reuventest_events_null": { + "name": "events_null", + "schema": "reuventest", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float32", + "event_source": "String", + "event_source_id": "String", + "event_type": "String", + "from_artifact_id": "String", + "time": "DateTime", + "to_artifact_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__active_addresses_to_artifact_daily__1451097649": { + "name": "metrics__active_addresses_to_artifact_daily__1451097649", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_artifact_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__active_addresses_to_artifact_daily__1451097649__temp": { + "name": "metrics__active_addresses_to_artifact_daily__1451097649__temp", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_artifact_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__active_addresses_to_artifact_daily__4067249413": { + "name": "metrics__active_addresses_to_artifact_daily__4067249413", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_artifact_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__active_addresses_to_artifact_daily__4067249413__temp": { + "name": "metrics__active_addresses_to_artifact_daily__4067249413__temp", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_artifact_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__active_addresses_to_artifact_monthly__2869240330": { + "name": "metrics__active_addresses_to_artifact_monthly__2869240330", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_artifact_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__active_addresses_to_artifact_monthly__2869240330__temp": { + "name": "metrics__active_addresses_to_artifact_monthly__2869240330__temp", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_artifact_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__active_addresses_to_artifact_monthly__3897035807": { + "name": "metrics__active_addresses_to_artifact_monthly__3897035807", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_artifact_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__active_addresses_to_artifact_monthly__3897035807__temp": { + "name": "metrics__active_addresses_to_artifact_monthly__3897035807__temp", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_artifact_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__active_addresses_to_artifact_weekly__3021279003": { + "name": "metrics__active_addresses_to_artifact_weekly__3021279003", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_artifact_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__active_addresses_to_artifact_weekly__3021279003__temp": { + "name": "metrics__active_addresses_to_artifact_weekly__3021279003__temp", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_artifact_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__active_addresses_to_artifact_weekly__585528268": { + "name": "metrics__active_addresses_to_artifact_weekly__585528268", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_artifact_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__active_addresses_to_artifact_weekly__585528268__temp": { + "name": "metrics__active_addresses_to_artifact_weekly__585528268__temp", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_artifact_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__active_addresses_to_collection_daily__2961514227": { + "name": "metrics__active_addresses_to_collection_daily__2961514227", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_collection_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__active_addresses_to_collection_daily__2961514227__temp": { + "name": "metrics__active_addresses_to_collection_daily__2961514227__temp", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_collection_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__active_addresses_to_collection_daily__48316747": { + "name": "metrics__active_addresses_to_collection_daily__48316747", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_collection_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__active_addresses_to_collection_daily__48316747__temp": { + "name": "metrics__active_addresses_to_collection_daily__48316747__temp", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_collection_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__active_addresses_to_collection_monthly__2299528175": { + "name": "metrics__active_addresses_to_collection_monthly__2299528175", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_collection_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__active_addresses_to_collection_monthly__2299528175__temp": { + "name": "metrics__active_addresses_to_collection_monthly__2299528175__temp", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_collection_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__active_addresses_to_collection_monthly__383354905": { + "name": "metrics__active_addresses_to_collection_monthly__383354905", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_collection_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__active_addresses_to_collection_monthly__383354905__temp": { + "name": "metrics__active_addresses_to_collection_monthly__383354905__temp", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_collection_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__active_addresses_to_collection_weekly__827715063": { + "name": "metrics__active_addresses_to_collection_weekly__827715063", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_collection_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__active_addresses_to_collection_weekly__827715063__temp": { + "name": "metrics__active_addresses_to_collection_weekly__827715063__temp", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_collection_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__active_addresses_to_collection_weekly__84759969": { + "name": "metrics__active_addresses_to_collection_weekly__84759969", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_collection_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__active_addresses_to_collection_weekly__84759969__temp": { + "name": "metrics__active_addresses_to_collection_weekly__84759969__temp", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_collection_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__active_addresses_to_project_daily__2184062176": { + "name": "metrics__active_addresses_to_project_daily__2184062176", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_project_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__active_addresses_to_project_daily__2184062176__temp": { + "name": "metrics__active_addresses_to_project_daily__2184062176__temp", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_project_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__active_addresses_to_project_daily__445087334": { + "name": "metrics__active_addresses_to_project_daily__445087334", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_project_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__active_addresses_to_project_daily__445087334__temp": { + "name": "metrics__active_addresses_to_project_daily__445087334__temp", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_project_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__active_addresses_to_project_monthly__1155158455": { + "name": "metrics__active_addresses_to_project_monthly__1155158455", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_project_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__active_addresses_to_project_monthly__1155158455__temp": { + "name": "metrics__active_addresses_to_project_monthly__1155158455__temp", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_project_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__active_addresses_to_project_monthly__1940167565": { + "name": "metrics__active_addresses_to_project_monthly__1940167565", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_project_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__active_addresses_to_project_monthly__1940167565__temp": { + "name": "metrics__active_addresses_to_project_monthly__1940167565__temp", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_project_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__active_addresses_to_project_weekly__2067969286": { + "name": "metrics__active_addresses_to_project_weekly__2067969286", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_project_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__active_addresses_to_project_weekly__2067969286__temp": { + "name": "metrics__active_addresses_to_project_weekly__2067969286__temp", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_project_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__active_addresses_to_project_weekly__3486119930": { + "name": "metrics__active_addresses_to_project_weekly__3486119930", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_project_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__active_addresses_to_project_weekly__3486119930__temp": { + "name": "metrics__active_addresses_to_project_weekly__3486119930__temp", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_project_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__commits_to_artifact_daily__3019250927": { + "name": "metrics__commits_to_artifact_daily__3019250927", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_artifact_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__commits_to_artifact_daily__3019250927__temp": { + "name": "metrics__commits_to_artifact_daily__3019250927__temp", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_artifact_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__commits_to_artifact_daily__384003590": { + "name": "metrics__commits_to_artifact_daily__384003590", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_artifact_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__commits_to_artifact_daily__384003590__temp": { + "name": "metrics__commits_to_artifact_daily__384003590__temp", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_artifact_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__commits_to_artifact_monthly__627485741": { + "name": "metrics__commits_to_artifact_monthly__627485741", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_artifact_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__commits_to_artifact_monthly__627485741__temp": { + "name": "metrics__commits_to_artifact_monthly__627485741__temp", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_artifact_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__commits_to_artifact_monthly__891933314": { + "name": "metrics__commits_to_artifact_monthly__891933314", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_artifact_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__commits_to_artifact_monthly__891933314__temp": { + "name": "metrics__commits_to_artifact_monthly__891933314__temp", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_artifact_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__commits_to_artifact_weekly__3680977809": { + "name": "metrics__commits_to_artifact_weekly__3680977809", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_artifact_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__commits_to_artifact_weekly__3680977809__temp": { + "name": "metrics__commits_to_artifact_weekly__3680977809__temp", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_artifact_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__commits_to_artifact_weekly__3772586010": { + "name": "metrics__commits_to_artifact_weekly__3772586010", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_artifact_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__commits_to_artifact_weekly__3772586010__temp": { + "name": "metrics__commits_to_artifact_weekly__3772586010__temp", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_artifact_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__commits_to_collection_daily__1391967423": { + "name": "metrics__commits_to_collection_daily__1391967423", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_collection_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__commits_to_collection_daily__1391967423__temp": { + "name": "metrics__commits_to_collection_daily__1391967423__temp", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_collection_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__commits_to_collection_daily__2104049234": { + "name": "metrics__commits_to_collection_daily__2104049234", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_collection_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__commits_to_collection_daily__2104049234__temp": { + "name": "metrics__commits_to_collection_daily__2104049234__temp", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_collection_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__commits_to_collection_monthly__2146928748": { + "name": "metrics__commits_to_collection_monthly__2146928748", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_collection_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__commits_to_collection_monthly__2146928748__temp": { + "name": "metrics__commits_to_collection_monthly__2146928748__temp", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_collection_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__commits_to_collection_monthly__2714929276": { + "name": "metrics__commits_to_collection_monthly__2714929276", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_collection_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__commits_to_collection_monthly__2714929276__temp": { + "name": "metrics__commits_to_collection_monthly__2714929276__temp", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_collection_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__commits_to_collection_weekly__2525167268": { + "name": "metrics__commits_to_collection_weekly__2525167268", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_collection_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__commits_to_collection_weekly__2525167268__temp": { + "name": "metrics__commits_to_collection_weekly__2525167268__temp", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_collection_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__commits_to_collection_weekly__3070326138": { + "name": "metrics__commits_to_collection_weekly__3070326138", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_collection_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__commits_to_collection_weekly__3070326138__temp": { + "name": "metrics__commits_to_collection_weekly__3070326138__temp", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_collection_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__commits_to_project_daily__2991942092": { + "name": "metrics__commits_to_project_daily__2991942092", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_project_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__commits_to_project_daily__2991942092__temp": { + "name": "metrics__commits_to_project_daily__2991942092__temp", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_project_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__commits_to_project_daily__3560291209": { + "name": "metrics__commits_to_project_daily__3560291209", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_project_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__commits_to_project_daily__3560291209__temp": { + "name": "metrics__commits_to_project_daily__3560291209__temp", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_project_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__commits_to_project_monthly__165981058": { + "name": "metrics__commits_to_project_monthly__165981058", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_project_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__commits_to_project_monthly__165981058__temp": { + "name": "metrics__commits_to_project_monthly__165981058__temp", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_project_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__commits_to_project_monthly__626680148": { + "name": "metrics__commits_to_project_monthly__626680148", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_project_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__commits_to_project_monthly__626680148__temp": { + "name": "metrics__commits_to_project_monthly__626680148__temp", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_project_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__commits_to_project_weekly__1130064547": { + "name": "metrics__commits_to_project_weekly__1130064547", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_project_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__commits_to_project_weekly__1130064547__temp": { + "name": "metrics__commits_to_project_weekly__1130064547__temp", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_project_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__commits_to_project_weekly__1769590475": { + "name": "metrics__commits_to_project_weekly__1769590475", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_project_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__commits_to_project_weekly__1769590475__temp": { + "name": "metrics__commits_to_project_weekly__1769590475__temp", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_project_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__contributor_classifications_to_artifact_over_30_day__1293957495": { + "name": "metrics__contributor_classifications_to_artifact_over_30_day__1293957495", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_artifact_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__contributor_classifications_to_artifact_over_30_day__1293957495__temp": { + "name": "metrics__contributor_classifications_to_artifact_over_30_day__1293957495__temp", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_artifact_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__contributor_classifications_to_artifact_over_30_day__700718732": { + "name": "metrics__contributor_classifications_to_artifact_over_30_day__700718732", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_artifact_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__contributor_classifications_to_artifact_over_30_day__700718732__temp": { + "name": "metrics__contributor_classifications_to_artifact_over_30_day__700718732__temp", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_artifact_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__contributor_classifications_to_artifact_over_60_day__4174814200": { + "name": "metrics__contributor_classifications_to_artifact_over_60_day__4174814200", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_artifact_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__contributor_classifications_to_artifact_over_60_day__4174814200__temp": { + "name": "metrics__contributor_classifications_to_artifact_over_60_day__4174814200__temp", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_artifact_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__contributor_classifications_to_artifact_over_60_day__513193079": { + "name": "metrics__contributor_classifications_to_artifact_over_60_day__513193079", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_artifact_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__contributor_classifications_to_artifact_over_60_day__513193079__temp": { + "name": "metrics__contributor_classifications_to_artifact_over_60_day__513193079__temp", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_artifact_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__contributor_classifications_to_artifact_over_90_day__1883848372": { + "name": "metrics__contributor_classifications_to_artifact_over_90_day__1883848372", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_artifact_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__contributor_classifications_to_artifact_over_90_day__1883848372__temp": { + "name": "metrics__contributor_classifications_to_artifact_over_90_day__1883848372__temp", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_artifact_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__contributor_classifications_to_artifact_over_90_day__648386949": { + "name": "metrics__contributor_classifications_to_artifact_over_90_day__648386949", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_artifact_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__contributor_classifications_to_artifact_over_90_day__648386949__temp": { + "name": "metrics__contributor_classifications_to_artifact_over_90_day__648386949__temp", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_artifact_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__contributor_classifications_to_collection_over_30_day__1375928387": { + "name": "metrics__contributor_classifications_to_collection_over_30_day__1375928387", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_collection_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__contributor_classifications_to_collection_over_30_day__1375928387__temp": { + "name": "metrics__contributor_classifications_to_collection_over_30_day__1375928387__temp", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_collection_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__contributor_classifications_to_collection_over_30_day__3775457162": { + "name": "metrics__contributor_classifications_to_collection_over_30_day__3775457162", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_collection_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__contributor_classifications_to_collection_over_30_day__3775457162__temp": { + "name": "metrics__contributor_classifications_to_collection_over_30_day__3775457162__temp", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_collection_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__contributor_classifications_to_collection_over_60_day__2167309429": { + "name": "metrics__contributor_classifications_to_collection_over_60_day__2167309429", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_collection_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__contributor_classifications_to_collection_over_60_day__2167309429__temp": { + "name": "metrics__contributor_classifications_to_collection_over_60_day__2167309429__temp", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_collection_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__contributor_classifications_to_collection_over_60_day__793383406": { + "name": "metrics__contributor_classifications_to_collection_over_60_day__793383406", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_collection_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__contributor_classifications_to_collection_over_60_day__793383406__temp": { + "name": "metrics__contributor_classifications_to_collection_over_60_day__793383406__temp", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_collection_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__contributor_classifications_to_collection_over_90_day__1776377347": { + "name": "metrics__contributor_classifications_to_collection_over_90_day__1776377347", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_collection_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__contributor_classifications_to_collection_over_90_day__1776377347__temp": { + "name": "metrics__contributor_classifications_to_collection_over_90_day__1776377347__temp", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_collection_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__contributor_classifications_to_collection_over_90_day__2342269647": { + "name": "metrics__contributor_classifications_to_collection_over_90_day__2342269647", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_collection_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__contributor_classifications_to_collection_over_90_day__2342269647__temp": { + "name": "metrics__contributor_classifications_to_collection_over_90_day__2342269647__temp", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_collection_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__contributor_classifications_to_project_over_30_day__3386019216": { + "name": "metrics__contributor_classifications_to_project_over_30_day__3386019216", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_project_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__contributor_classifications_to_project_over_30_day__3386019216__temp": { + "name": "metrics__contributor_classifications_to_project_over_30_day__3386019216__temp", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_project_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__contributor_classifications_to_project_over_30_day__3621045737": { + "name": "metrics__contributor_classifications_to_project_over_30_day__3621045737", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_project_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__contributor_classifications_to_project_over_30_day__3621045737__temp": { + "name": "metrics__contributor_classifications_to_project_over_30_day__3621045737__temp", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_project_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__contributor_classifications_to_project_over_60_day__1363814395": { + "name": "metrics__contributor_classifications_to_project_over_60_day__1363814395", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_project_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__contributor_classifications_to_project_over_60_day__1363814395__temp": { + "name": "metrics__contributor_classifications_to_project_over_60_day__1363814395__temp", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_project_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__contributor_classifications_to_project_over_60_day__1364596116": { + "name": "metrics__contributor_classifications_to_project_over_60_day__1364596116", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_project_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__contributor_classifications_to_project_over_60_day__1364596116__temp": { + "name": "metrics__contributor_classifications_to_project_over_60_day__1364596116__temp", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_project_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__contributor_classifications_to_project_over_90_day__3482993181": { + "name": "metrics__contributor_classifications_to_project_over_90_day__3482993181", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_project_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__contributor_classifications_to_project_over_90_day__3482993181__temp": { + "name": "metrics__contributor_classifications_to_project_over_90_day__3482993181__temp", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_project_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__contributor_classifications_to_project_over_90_day__3658098767": { + "name": "metrics__contributor_classifications_to_project_over_90_day__3658098767", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_project_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__contributor_classifications_to_project_over_90_day__3658098767__temp": { + "name": "metrics__contributor_classifications_to_project_over_90_day__3658098767__temp", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_project_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__developer_active_days_to_artifact_over_30_day__2147579824": { + "name": "metrics__developer_active_days_to_artifact_over_30_day__2147579824", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_artifact_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__developer_active_days_to_artifact_over_30_day__2147579824__temp": { + "name": "metrics__developer_active_days_to_artifact_over_30_day__2147579824__temp", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_artifact_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__developer_active_days_to_artifact_over_30_day__3976516872": { + "name": "metrics__developer_active_days_to_artifact_over_30_day__3976516872", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_artifact_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__developer_active_days_to_artifact_over_30_day__3976516872__temp": { + "name": "metrics__developer_active_days_to_artifact_over_30_day__3976516872__temp", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_artifact_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__developer_active_days_to_artifact_over_60_day__2285488471": { + "name": "metrics__developer_active_days_to_artifact_over_60_day__2285488471", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_artifact_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__developer_active_days_to_artifact_over_60_day__2285488471__temp": { + "name": "metrics__developer_active_days_to_artifact_over_60_day__2285488471__temp", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_artifact_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__developer_active_days_to_artifact_over_60_day__3546454637": { + "name": "metrics__developer_active_days_to_artifact_over_60_day__3546454637", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_artifact_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__developer_active_days_to_artifact_over_60_day__3546454637__temp": { + "name": "metrics__developer_active_days_to_artifact_over_60_day__3546454637__temp", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_artifact_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__developer_active_days_to_artifact_over_90_day__1696840528": { + "name": "metrics__developer_active_days_to_artifact_over_90_day__1696840528", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_artifact_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__developer_active_days_to_artifact_over_90_day__1696840528__temp": { + "name": "metrics__developer_active_days_to_artifact_over_90_day__1696840528__temp", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_artifact_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__developer_active_days_to_artifact_over_90_day__2939537768": { + "name": "metrics__developer_active_days_to_artifact_over_90_day__2939537768", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_artifact_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__developer_active_days_to_artifact_over_90_day__2939537768__temp": { + "name": "metrics__developer_active_days_to_artifact_over_90_day__2939537768__temp", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_artifact_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__developer_active_days_to_collection_over_30_day__1822537695": { + "name": "metrics__developer_active_days_to_collection_over_30_day__1822537695", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_collection_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__developer_active_days_to_collection_over_30_day__1822537695__temp": { + "name": "metrics__developer_active_days_to_collection_over_30_day__1822537695__temp", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_collection_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__developer_active_days_to_collection_over_30_day__820316417": { + "name": "metrics__developer_active_days_to_collection_over_30_day__820316417", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_collection_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__developer_active_days_to_collection_over_30_day__820316417__temp": { + "name": "metrics__developer_active_days_to_collection_over_30_day__820316417__temp", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_collection_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__developer_active_days_to_collection_over_60_day__3163575043": { + "name": "metrics__developer_active_days_to_collection_over_60_day__3163575043", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_collection_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__developer_active_days_to_collection_over_60_day__3163575043__temp": { + "name": "metrics__developer_active_days_to_collection_over_60_day__3163575043__temp", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_collection_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__developer_active_days_to_collection_over_60_day__3397863041": { + "name": "metrics__developer_active_days_to_collection_over_60_day__3397863041", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_collection_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__developer_active_days_to_collection_over_60_day__3397863041__temp": { + "name": "metrics__developer_active_days_to_collection_over_60_day__3397863041__temp", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_collection_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__developer_active_days_to_collection_over_90_day__1907804058": { + "name": "metrics__developer_active_days_to_collection_over_90_day__1907804058", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_collection_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__developer_active_days_to_collection_over_90_day__1907804058__temp": { + "name": "metrics__developer_active_days_to_collection_over_90_day__1907804058__temp", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_collection_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__developer_active_days_to_collection_over_90_day__911125358": { + "name": "metrics__developer_active_days_to_collection_over_90_day__911125358", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_collection_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__developer_active_days_to_collection_over_90_day__911125358__temp": { + "name": "metrics__developer_active_days_to_collection_over_90_day__911125358__temp", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_collection_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__developer_active_days_to_project_over_30_day__1776115062": { + "name": "metrics__developer_active_days_to_project_over_30_day__1776115062", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_project_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__developer_active_days_to_project_over_30_day__1776115062__temp": { + "name": "metrics__developer_active_days_to_project_over_30_day__1776115062__temp", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_project_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__developer_active_days_to_project_over_30_day__2682941095": { + "name": "metrics__developer_active_days_to_project_over_30_day__2682941095", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_project_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__developer_active_days_to_project_over_30_day__2682941095__temp": { + "name": "metrics__developer_active_days_to_project_over_30_day__2682941095__temp", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_project_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__developer_active_days_to_project_over_60_day__3267032478": { + "name": "metrics__developer_active_days_to_project_over_60_day__3267032478", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_project_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__developer_active_days_to_project_over_60_day__3267032478__temp": { + "name": "metrics__developer_active_days_to_project_over_60_day__3267032478__temp", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_project_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__developer_active_days_to_project_over_60_day__831546181": { + "name": "metrics__developer_active_days_to_project_over_60_day__831546181", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_project_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__developer_active_days_to_project_over_60_day__831546181__temp": { + "name": "metrics__developer_active_days_to_project_over_60_day__831546181__temp", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_project_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__developer_active_days_to_project_over_90_day__2232286171": { + "name": "metrics__developer_active_days_to_project_over_90_day__2232286171", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_project_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__developer_active_days_to_project_over_90_day__2232286171__temp": { + "name": "metrics__developer_active_days_to_project_over_90_day__2232286171__temp", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_project_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__developer_active_days_to_project_over_90_day__929128788": { + "name": "metrics__developer_active_days_to_project_over_90_day__929128788", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_project_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__developer_active_days_to_project_over_90_day__929128788__temp": { + "name": "metrics__developer_active_days_to_project_over_90_day__929128788__temp", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_project_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__developer_classifications_to_artifact_over_30_day__2657100041": { + "name": "metrics__developer_classifications_to_artifact_over_30_day__2657100041", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_artifact_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__developer_classifications_to_artifact_over_30_day__2657100041__temp": { + "name": "metrics__developer_classifications_to_artifact_over_30_day__2657100041__temp", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_artifact_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__developer_classifications_to_artifact_over_30_day__4202956530": { + "name": "metrics__developer_classifications_to_artifact_over_30_day__4202956530", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_artifact_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__developer_classifications_to_artifact_over_30_day__4202956530__temp": { + "name": "metrics__developer_classifications_to_artifact_over_30_day__4202956530__temp", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_artifact_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__developer_classifications_to_artifact_over_60_day__3286510146": { + "name": "metrics__developer_classifications_to_artifact_over_60_day__3286510146", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_artifact_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__developer_classifications_to_artifact_over_60_day__3286510146__temp": { + "name": "metrics__developer_classifications_to_artifact_over_60_day__3286510146__temp", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_artifact_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__developer_classifications_to_artifact_over_60_day__890887252": { + "name": "metrics__developer_classifications_to_artifact_over_60_day__890887252", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_artifact_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__developer_classifications_to_artifact_over_60_day__890887252__temp": { + "name": "metrics__developer_classifications_to_artifact_over_60_day__890887252__temp", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_artifact_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__developer_classifications_to_artifact_over_90_day__1988187751": { + "name": "metrics__developer_classifications_to_artifact_over_90_day__1988187751", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_artifact_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__developer_classifications_to_artifact_over_90_day__1988187751__temp": { + "name": "metrics__developer_classifications_to_artifact_over_90_day__1988187751__temp", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_artifact_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__developer_classifications_to_artifact_over_90_day__544076118": { + "name": "metrics__developer_classifications_to_artifact_over_90_day__544076118", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_artifact_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__developer_classifications_to_artifact_over_90_day__544076118__temp": { + "name": "metrics__developer_classifications_to_artifact_over_90_day__544076118__temp", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_artifact_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__developer_classifications_to_collection_over_30_day__2670781055": { + "name": "metrics__developer_classifications_to_collection_over_30_day__2670781055", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_collection_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__developer_classifications_to_collection_over_30_day__2670781055__temp": { + "name": "metrics__developer_classifications_to_collection_over_30_day__2670781055__temp", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_collection_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__developer_classifications_to_collection_over_30_day__742065590": { + "name": "metrics__developer_classifications_to_collection_over_30_day__742065590", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_collection_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__developer_classifications_to_collection_over_30_day__742065590__temp": { + "name": "metrics__developer_classifications_to_collection_over_30_day__742065590__temp", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_collection_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__developer_classifications_to_collection_over_60_day__1495436071": { + "name": "metrics__developer_classifications_to_collection_over_60_day__1495436071", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_collection_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__developer_classifications_to_collection_over_60_day__1495436071__temp": { + "name": "metrics__developer_classifications_to_collection_over_60_day__1495436071__temp", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_collection_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__developer_classifications_to_collection_over_60_day__779000134": { + "name": "metrics__developer_classifications_to_collection_over_60_day__779000134", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_collection_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__developer_classifications_to_collection_over_60_day__779000134__temp": { + "name": "metrics__developer_classifications_to_collection_over_60_day__779000134__temp", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_collection_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__developer_classifications_to_collection_over_90_day__228961017": { + "name": "metrics__developer_classifications_to_collection_over_90_day__228961017", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_collection_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__developer_classifications_to_collection_over_90_day__228961017__temp": { + "name": "metrics__developer_classifications_to_collection_over_90_day__228961017__temp", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_collection_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__developer_classifications_to_collection_over_90_day__4023961141": { + "name": "metrics__developer_classifications_to_collection_over_90_day__4023961141", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_collection_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__developer_classifications_to_collection_over_90_day__4023961141__temp": { + "name": "metrics__developer_classifications_to_collection_over_90_day__4023961141__temp", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_collection_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__developer_classifications_to_project_over_30_day__2268986554": { + "name": "metrics__developer_classifications_to_project_over_30_day__2268986554", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_project_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__developer_classifications_to_project_over_30_day__2268986554__temp": { + "name": "metrics__developer_classifications_to_project_over_30_day__2268986554__temp", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_project_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__developer_classifications_to_project_over_30_day__2570826947": { + "name": "metrics__developer_classifications_to_project_over_30_day__2570826947", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_project_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__developer_classifications_to_project_over_30_day__2570826947__temp": { + "name": "metrics__developer_classifications_to_project_over_30_day__2570826947__temp", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_project_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__developer_classifications_to_project_over_60_day__1484843749": { + "name": "metrics__developer_classifications_to_project_over_60_day__1484843749", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_project_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__developer_classifications_to_project_over_60_day__1484843749__temp": { + "name": "metrics__developer_classifications_to_project_over_60_day__1484843749__temp", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_project_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__developer_classifications_to_project_over_60_day__1486674058": { + "name": "metrics__developer_classifications_to_project_over_60_day__1486674058", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_project_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__developer_classifications_to_project_over_60_day__1486674058__temp": { + "name": "metrics__developer_classifications_to_project_over_60_day__1486674058__temp", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_project_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__developer_classifications_to_project_over_90_day__270003167": { + "name": "metrics__developer_classifications_to_project_over_90_day__270003167", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_project_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__developer_classifications_to_project_over_90_day__270003167__temp": { + "name": "metrics__developer_classifications_to_project_over_90_day__270003167__temp", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_project_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__developer_classifications_to_project_over_90_day__92766605": { + "name": "metrics__developer_classifications_to_project_over_90_day__92766605", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_project_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__developer_classifications_to_project_over_90_day__92766605__temp": { + "name": "metrics__developer_classifications_to_project_over_90_day__92766605__temp", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_project_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__events_daily_to_artifact__256496682": { + "name": "metrics__events_daily_to_artifact__256496682", + "schema": "sqlmesh__metrics", + "comment": "", + "primary_key": { + "name": "event_type, event_source, from_artifact_id, to_artifact_id, bucket_day", + "columns": [ + "bucket_day", + "event_source", + "event_type", + "from_artifact_id", + "to_artifact_id" + ] + }, + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "bucket_day": "Date", + "event_source": "String", + "event_type": "String", + "from_artifact_id": "String", + "to_artifact_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__events_daily_to_artifact__256496682__temp": { + "name": "metrics__events_daily_to_artifact__256496682__temp", + "schema": "sqlmesh__metrics", + "comment": "", + "primary_key": { + "name": "event_type, event_source, from_artifact_id, to_artifact_id, bucket_day", + "columns": [ + "bucket_day", + "event_source", + "event_type", + "from_artifact_id", + "to_artifact_id" + ] + }, + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "bucket_day": "Date", + "event_source": "String", + "event_type": "String", + "from_artifact_id": "String", + "to_artifact_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__events_daily_to_artifact__787267005": { + "name": "metrics__events_daily_to_artifact__787267005", + "schema": "sqlmesh__metrics", + "comment": "", + "primary_key": { + "name": "event_type, event_source, from_artifact_id, to_artifact_id, bucket_day", + "columns": [ + "bucket_day", + "event_source", + "event_type", + "from_artifact_id", + "to_artifact_id" + ] + }, + "return_type": { + "kind": "definition", + "columns": { + "_sign": "Int8", + "_version": "UInt32", + "amount": "Float64", + "bucket_day": "Date", + "event_source": "String", + "event_type": "String", + "from_artifact_id": "String", + "to_artifact_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__events_daily_to_artifact__787267005__temp": { + "name": "metrics__events_daily_to_artifact__787267005__temp", + "schema": "sqlmesh__metrics", + "comment": "", + "primary_key": { + "name": "event_type, event_source, from_artifact_id, to_artifact_id, bucket_day", + "columns": [ + "bucket_day", + "event_source", + "event_type", + "from_artifact_id", + "to_artifact_id" + ] + }, + "return_type": { + "kind": "definition", + "columns": { + "_sign": "Int8", + "_version": "UInt32", + "amount": "Float64", + "bucket_day": "Date", + "event_source": "String", + "event_type": "String", + "from_artifact_id": "String", + "to_artifact_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__forks_to_artifact_daily__1195578825": { + "name": "metrics__forks_to_artifact_daily__1195578825", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_artifact_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__forks_to_artifact_daily__1195578825__temp": { + "name": "metrics__forks_to_artifact_daily__1195578825__temp", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_artifact_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__forks_to_artifact_daily__3290062578": { + "name": "metrics__forks_to_artifact_daily__3290062578", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_artifact_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__forks_to_artifact_daily__3290062578__temp": { + "name": "metrics__forks_to_artifact_daily__3290062578__temp", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_artifact_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__forks_to_artifact_monthly__1415490740": { + "name": "metrics__forks_to_artifact_monthly__1415490740", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_artifact_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__forks_to_artifact_monthly__1415490740__temp": { + "name": "metrics__forks_to_artifact_monthly__1415490740__temp", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_artifact_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__forks_to_artifact_monthly__3938275018": { + "name": "metrics__forks_to_artifact_monthly__3938275018", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_artifact_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__forks_to_artifact_monthly__3938275018__temp": { + "name": "metrics__forks_to_artifact_monthly__3938275018__temp", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_artifact_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__forks_to_artifact_weekly__2641707394": { + "name": "metrics__forks_to_artifact_weekly__2641707394", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_artifact_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__forks_to_artifact_weekly__2641707394__temp": { + "name": "metrics__forks_to_artifact_weekly__2641707394__temp", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_artifact_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__forks_to_artifact_weekly__634319038": { + "name": "metrics__forks_to_artifact_weekly__634319038", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_artifact_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__forks_to_artifact_weekly__634319038__temp": { + "name": "metrics__forks_to_artifact_weekly__634319038__temp", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_artifact_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__forks_to_collection_daily__2600488515": { + "name": "metrics__forks_to_collection_daily__2600488515", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_collection_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__forks_to_collection_daily__2600488515__temp": { + "name": "metrics__forks_to_collection_daily__2600488515__temp", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_collection_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__forks_to_collection_daily__3383457687": { + "name": "metrics__forks_to_collection_daily__3383457687", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_collection_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__forks_to_collection_daily__3383457687__temp": { + "name": "metrics__forks_to_collection_daily__3383457687__temp", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_collection_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__forks_to_collection_monthly__2690014976": { + "name": "metrics__forks_to_collection_monthly__2690014976", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_collection_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__forks_to_collection_monthly__2690014976__temp": { + "name": "metrics__forks_to_collection_monthly__2690014976__temp", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_collection_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__forks_to_collection_monthly__642068908": { + "name": "metrics__forks_to_collection_monthly__642068908", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_collection_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__forks_to_collection_monthly__642068908__temp": { + "name": "metrics__forks_to_collection_monthly__642068908__temp", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_collection_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__forks_to_collection_weekly__2254060970": { + "name": "metrics__forks_to_collection_weekly__2254060970", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_collection_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__forks_to_collection_weekly__2254060970__temp": { + "name": "metrics__forks_to_collection_weekly__2254060970__temp", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_collection_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__forks_to_collection_weekly__3048743392": { + "name": "metrics__forks_to_collection_weekly__3048743392", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_collection_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__forks_to_collection_weekly__3048743392__temp": { + "name": "metrics__forks_to_collection_weekly__3048743392__temp", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_collection_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__forks_to_project_daily__3162175235": { + "name": "metrics__forks_to_project_daily__3162175235", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_project_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__forks_to_project_daily__3162175235__temp": { + "name": "metrics__forks_to_project_daily__3162175235__temp", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_project_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__forks_to_project_daily__539182721": { + "name": "metrics__forks_to_project_daily__539182721", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_project_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__forks_to_project_daily__539182721__temp": { + "name": "metrics__forks_to_project_daily__539182721__temp", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_project_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__forks_to_project_monthly__1390457095": { + "name": "metrics__forks_to_project_monthly__1390457095", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_project_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__forks_to_project_monthly__1390457095__temp": { + "name": "metrics__forks_to_project_monthly__1390457095__temp", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_project_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__forks_to_project_monthly__3020189315": { + "name": "metrics__forks_to_project_monthly__3020189315", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_project_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__forks_to_project_monthly__3020189315__temp": { + "name": "metrics__forks_to_project_monthly__3020189315__temp", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_project_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__forks_to_project_weekly__1848268533": { + "name": "metrics__forks_to_project_weekly__1848268533", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_project_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__forks_to_project_weekly__1848268533__temp": { + "name": "metrics__forks_to_project_weekly__1848268533__temp", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_project_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__forks_to_project_weekly__2097630631": { + "name": "metrics__forks_to_project_weekly__2097630631", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_project_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__forks_to_project_weekly__2097630631__temp": { + "name": "metrics__forks_to_project_weekly__2097630631__temp", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_project_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__gas_fees_to_artifact_daily__2207311257": { + "name": "metrics__gas_fees_to_artifact_daily__2207311257", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_artifact_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__gas_fees_to_artifact_daily__2207311257__temp": { + "name": "metrics__gas_fees_to_artifact_daily__2207311257__temp", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_artifact_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__gas_fees_to_artifact_daily__2947931382": { + "name": "metrics__gas_fees_to_artifact_daily__2947931382", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_artifact_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__gas_fees_to_artifact_daily__2947931382__temp": { + "name": "metrics__gas_fees_to_artifact_daily__2947931382__temp", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_artifact_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__gas_fees_to_artifact_monthly__3205598518": { + "name": "metrics__gas_fees_to_artifact_monthly__3205598518", + "schema": "sqlmesh__metrics", "comment": "", "return_type": { "kind": "definition", "columns": { "amount": "Float64", - "bucket_day": "Date", "event_source": "String", - "event_type": "String", "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", "to_artifact_id": "String" } } }, - "metrics__dev_metrics_v0": { - "name": "metrics_v0", - "schema": "metrics__dev", + "sqlmesh__metrics_metrics__gas_fees_to_artifact_monthly__3205598518__temp": { + "name": "metrics__gas_fees_to_artifact_monthly__3205598518__temp", + "schema": "sqlmesh__metrics", "comment": "", "return_type": { "kind": "definition", "columns": { - "aggregation_function": "Nullable(String)", - "definition_ref": "Nullable(String)", - "description": "Nullable(String)", - "display_name": "String", - "metric_id": "String", - "metric_name": "String", - "metric_source": "String", - "raw_definition": "Nullable(String)" + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_artifact_id": "String" } } }, - "metrics__dev_timeseries_metrics_by_artifact_over_30_days": { - "name": "timeseries_metrics_by_artifact_over_30_days", - "schema": "metrics__dev", + "sqlmesh__metrics_metrics__gas_fees_to_artifact_monthly__4256923395": { + "name": "metrics__gas_fees_to_artifact_monthly__4256923395", + "schema": "sqlmesh__metrics", "comment": "", "return_type": { "kind": "definition", "columns": { "amount": "Float64", - "bucket_day": "Date", "event_source": "String", "from_artifact_id": "String", "metric": "String", + "metrics_sample_date": "Date", "to_artifact_id": "String" } } }, - "metrics__dev_timeseries_metrics_by_artifact_v0": { - "name": "timeseries_metrics_by_artifact_v0", - "schema": "metrics__dev", + "sqlmesh__metrics_metrics__gas_fees_to_artifact_monthly__4256923395__temp": { + "name": "metrics__gas_fees_to_artifact_monthly__4256923395__temp", + "schema": "sqlmesh__metrics", "comment": "", "return_type": { "kind": "definition", "columns": { "amount": "Float64", - "artifact_id": "String", - "metric_id": "String", - "sample_date": "Date", - "unit": "Nullable(String)" + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_artifact_id": "String" } } }, - "metrics_events_daily_to_artifact": { - "name": "events_daily_to_artifact", - "schema": "metrics", + "sqlmesh__metrics_metrics__gas_fees_to_artifact_weekly__2045847874": { + "name": "metrics__gas_fees_to_artifact_weekly__2045847874", + "schema": "sqlmesh__metrics", "comment": "", "return_type": { "kind": "definition", "columns": { "amount": "Float64", - "bucket_day": "Date", "event_source": "String", - "event_type": "String", "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", "to_artifact_id": "String" } } }, - "metrics_metrics_v0": { - "name": "metrics_v0", - "schema": "metrics", + "sqlmesh__metrics_metrics__gas_fees_to_artifact_weekly__2045847874__temp": { + "name": "metrics__gas_fees_to_artifact_weekly__2045847874__temp", + "schema": "sqlmesh__metrics", "comment": "", "return_type": { "kind": "definition", "columns": { - "aggregation_function": "Nullable(String)", - "definition_ref": "Nullable(String)", - "description": "Nullable(String)", - "display_name": "String", - "metric_id": "String", - "metric_name": "String", - "metric_namespace": "String", - "metric_source": "String", - "raw_definition": "Nullable(String)" + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_artifact_id": "String" } } }, - "metrics_timeseries_metrics_by_artifact_over_30_days": { - "name": "timeseries_metrics_by_artifact_over_30_days", - "schema": "metrics", + "sqlmesh__metrics_metrics__gas_fees_to_artifact_weekly__298236217": { + "name": "metrics__gas_fees_to_artifact_weekly__298236217", + "schema": "sqlmesh__metrics", "comment": "", "return_type": { "kind": "definition", "columns": { "amount": "Float64", - "bucket_day": "Date", "event_source": "String", "from_artifact_id": "String", "metric": "String", + "metrics_sample_date": "Date", "to_artifact_id": "String" } } }, - "metrics_timeseries_metrics_by_artifact_v0": { - "name": "timeseries_metrics_by_artifact_v0", - "schema": "metrics", + "sqlmesh__metrics_metrics__gas_fees_to_artifact_weekly__298236217__temp": { + "name": "metrics__gas_fees_to_artifact_weekly__298236217__temp", + "schema": "sqlmesh__metrics", "comment": "", "return_type": { "kind": "definition", "columns": { "amount": "Float64", - "artifact_id": "String", - "metric_id": "String", - "sample_date": "Date", - "unit": "Nullable(String)" + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_artifact_id": "String" } } }, - "onchain_metrics_by_project_v1": { - "name": "onchain_metrics_by_project_v1", - "schema": "default", + "sqlmesh__metrics_metrics__gas_fees_to_collection_daily__2865969994": { + "name": "metrics__gas_fees_to_collection_daily__2865969994", + "schema": "sqlmesh__metrics", "comment": "", "return_type": { "kind": "definition", "columns": { - "active_contract_count_90_days": "Float32", - "address_count": "Float32", - "address_count_90_days": "Float32", - "days_since_first_transaction": "Float32", - "display_name": "String", + "amount": "Float64", "event_source": "String", - "gas_fees_sum": "Float32", - "gas_fees_sum_6_months": "Float32", - "high_activity_address_count_90_days": "Float32", - "low_activity_address_count_90_days": "Float32", - "medium_activity_address_count_90_days": "Float32", - "multi_project_address_count_90_days": "Float32", - "new_address_count_90_days": "Float32", - "project_id": "String", - "project_name": "String", - "project_namespace": "String", - "project_source": "String", - "returning_address_count_90_days": "Float32", - "transaction_count": "Float32", - "transaction_count_6_months": "Float32" + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_collection_id": "String" } } }, - "projects_by_collection_v1": { - "name": "projects_by_collection_v1", - "schema": "default", + "sqlmesh__metrics_metrics__gas_fees_to_collection_daily__2865969994__temp": { + "name": "metrics__gas_fees_to_collection_daily__2865969994__temp", + "schema": "sqlmesh__metrics", "comment": "", "return_type": { "kind": "definition", "columns": { - "collection_id": "String", - "collection_name": "String", - "collection_namespace": "String", - "collection_source": "String", - "project_id": "String", - "project_name": "String", - "project_namespace": "String", - "project_source": "String" + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_collection_id": "String" } } }, - "projects_v1": { - "name": "projects_v1", - "schema": "default", + "sqlmesh__metrics_metrics__gas_fees_to_collection_daily__2957384774": { + "name": "metrics__gas_fees_to_collection_daily__2957384774", + "schema": "sqlmesh__metrics", "comment": "", "return_type": { "kind": "definition", "columns": { - "description": "String", - "display_name": "String", - "project_id": "String", - "project_name": "String", - "project_namespace": "String", - "project_source": "String" + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_collection_id": "String" } } }, - "sqlmesh__metrics_metrics__events_daily_to_artifact__1469322421": { - "name": "metrics__events_daily_to_artifact__1469322421", + "sqlmesh__metrics_metrics__gas_fees_to_collection_daily__2957384774__temp": { + "name": "metrics__gas_fees_to_collection_daily__2957384774__temp", "schema": "sqlmesh__metrics", "comment": "", "return_type": { "kind": "definition", "columns": { "amount": "Float64", - "bucket_day": "Date", "event_source": "String", - "event_type": "String", "from_artifact_id": "String", - "to_artifact_id": "String" + "metric": "String", + "metrics_sample_date": "Date", + "to_collection_id": "String" } } }, - "sqlmesh__metrics_metrics__events_daily_to_artifact__1469322421__temp": { - "name": "metrics__events_daily_to_artifact__1469322421__temp", + "sqlmesh__metrics_metrics__gas_fees_to_collection_monthly__3188093965": { + "name": "metrics__gas_fees_to_collection_monthly__3188093965", "schema": "sqlmesh__metrics", "comment": "", "return_type": { "kind": "definition", "columns": { "amount": "Float64", - "bucket_day": "Date", "event_source": "String", - "event_type": "String", "from_artifact_id": "String", - "to_artifact_id": "String" + "metric": "String", + "metrics_sample_date": "Date", + "to_collection_id": "String" } } }, - "sqlmesh__metrics_metrics__events_daily_to_artifact__753507400": { - "name": "metrics__events_daily_to_artifact__753507400", + "sqlmesh__metrics_metrics__gas_fees_to_collection_monthly__3188093965__temp": { + "name": "metrics__gas_fees_to_collection_monthly__3188093965__temp", "schema": "sqlmesh__metrics", "comment": "", "return_type": { "kind": "definition", "columns": { - "amount": "Int64", - "bucket_day": "Date", + "amount": "Float64", "event_source": "String", - "event_type": "String", "from_artifact_id": "String", - "to_artifact_id": "String" + "metric": "String", + "metrics_sample_date": "Date", + "to_collection_id": "String" } } }, - "sqlmesh__metrics_metrics__events_daily_to_artifact__753507400__temp": { - "name": "metrics__events_daily_to_artifact__753507400__temp", + "sqlmesh__metrics_metrics__gas_fees_to_collection_monthly__825442882": { + "name": "metrics__gas_fees_to_collection_monthly__825442882", "schema": "sqlmesh__metrics", "comment": "", "return_type": { "kind": "definition", "columns": { - "amount": "Int64", - "bucket_day": "Date", + "amount": "Float64", "event_source": "String", - "event_type": "String", "from_artifact_id": "String", - "to_artifact_id": "String" + "metric": "String", + "metrics_sample_date": "Date", + "to_collection_id": "String" } } }, - "sqlmesh__metrics_metrics__metrics_v0__1027447929": { - "name": "metrics__metrics_v0__1027447929", + "sqlmesh__metrics_metrics__gas_fees_to_collection_monthly__825442882__temp": { + "name": "metrics__gas_fees_to_collection_monthly__825442882__temp", "schema": "sqlmesh__metrics", "comment": "", "return_type": { "kind": "definition", "columns": { - "aggregation_function": "Nullable(String)", - "definition_ref": "Nullable(String)", - "description": "Nullable(String)", - "display_name": "String", - "metric_id": "String", - "metric_name": "String", - "metric_namespace": "String", - "metric_source": "String", - "raw_definition": "Nullable(String)" + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_collection_id": "String" } } }, - "sqlmesh__metrics_metrics__metrics_v0__1027447929__temp": { - "name": "metrics__metrics_v0__1027447929__temp", + "sqlmesh__metrics_metrics__gas_fees_to_collection_weekly__718832396": { + "name": "metrics__gas_fees_to_collection_weekly__718832396", "schema": "sqlmesh__metrics", "comment": "", "return_type": { "kind": "definition", "columns": { - "aggregation_function": "Nullable(String)", - "definition_ref": "Nullable(String)", - "description": "Nullable(String)", - "display_name": "String", - "metric_id": "String", - "metric_name": "String", - "metric_namespace": "String", - "metric_source": "String", - "raw_definition": "Nullable(String)" + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_collection_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__gas_fees_to_collection_weekly__718832396__temp": { + "name": "metrics__gas_fees_to_collection_weekly__718832396__temp", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_collection_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__gas_fees_to_collection_weekly__796521307": { + "name": "metrics__gas_fees_to_collection_weekly__796521307", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_collection_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__gas_fees_to_collection_weekly__796521307__temp": { + "name": "metrics__gas_fees_to_collection_weekly__796521307__temp", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_collection_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__gas_fees_to_project_daily__4018447587": { + "name": "metrics__gas_fees_to_project_daily__4018447587", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_project_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__gas_fees_to_project_daily__4018447587__temp": { + "name": "metrics__gas_fees_to_project_daily__4018447587__temp", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_project_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__gas_fees_to_project_daily__520704149": { + "name": "metrics__gas_fees_to_project_daily__520704149", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_project_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__gas_fees_to_project_daily__520704149__temp": { + "name": "metrics__gas_fees_to_project_daily__520704149__temp", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_project_id": "String" } } }, - "sqlmesh__metrics_metrics__metrics_v0__1122994148": { - "name": "metrics__metrics_v0__1122994148", + "sqlmesh__metrics_metrics__gas_fees_to_project_monthly__2728156525": { + "name": "metrics__gas_fees_to_project_monthly__2728156525", "schema": "sqlmesh__metrics", "comment": "", "return_type": { "kind": "definition", "columns": { - "aggregation_function": "Nullable(String)", - "definition_ref": "Nullable(String)", - "description": "Nullable(String)", - "display_name": "String", - "metric_id": "String", - "metric_name": "String", - "metric_source": "String", - "raw_definition": "Nullable(String)" + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_project_id": "String" } } }, - "sqlmesh__metrics_metrics__metrics_v0__1122994148__temp": { - "name": "metrics__metrics_v0__1122994148__temp", + "sqlmesh__metrics_metrics__gas_fees_to_project_monthly__2728156525__temp": { + "name": "metrics__gas_fees_to_project_monthly__2728156525__temp", "schema": "sqlmesh__metrics", "comment": "", "return_type": { "kind": "definition", "columns": { - "aggregation_function": "Nullable(String)", - "definition_ref": "Nullable(String)", - "description": "Nullable(String)", - "display_name": "String", - "metric_id": "String", - "metric_name": "String", - "metric_source": "String", - "raw_definition": "Nullable(String)" + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_project_id": "String" } } }, - "sqlmesh__metrics_metrics__metrics_v0__1931009280": { - "name": "metrics__metrics_v0__1931009280", + "sqlmesh__metrics_metrics__gas_fees_to_project_monthly__3346743315": { + "name": "metrics__gas_fees_to_project_monthly__3346743315", "schema": "sqlmesh__metrics", "comment": "", "return_type": { "kind": "definition", "columns": { - "aggregation_function": "Nullable(String)", - "definition_ref": "Nullable(String)", - "description": "Nullable(String)", - "display_name": "String", - "metric_id": "String", - "metric_name": "String", - "metric_namespace": "String", - "metric_source": "String", - "raw_definition": "Nullable(String)" + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_project_id": "String" } } }, - "sqlmesh__metrics_metrics__metrics_v0__1931009280__temp": { - "name": "metrics__metrics_v0__1931009280__temp", + "sqlmesh__metrics_metrics__gas_fees_to_project_monthly__3346743315__temp": { + "name": "metrics__gas_fees_to_project_monthly__3346743315__temp", "schema": "sqlmesh__metrics", "comment": "", "return_type": { "kind": "definition", "columns": { - "aggregation_function": "Nullable(String)", - "definition_ref": "Nullable(String)", - "description": "Nullable(String)", - "display_name": "String", - "metric_id": "String", - "metric_name": "String", - "metric_namespace": "String", - "metric_source": "String", - "raw_definition": "Nullable(String)" + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_project_id": "String" } } }, - "sqlmesh__metrics_metrics__metrics_v0__1972836302": { - "name": "metrics__metrics_v0__1972836302", + "sqlmesh__metrics_metrics__gas_fees_to_project_weekly__1947565140": { + "name": "metrics__gas_fees_to_project_weekly__1947565140", "schema": "sqlmesh__metrics", "comment": "", "return_type": { "kind": "definition", "columns": { - "aggregation_function": "Nullable(String)", - "definition_ref": "Nullable(String)", - "description": "Nullable(String)", - "display_name": "String", - "metric_id": "String", - "metric_name": "String", - "metric_namespace": "String", - "metric_source": "String", - "raw_definition": "Nullable(String)" + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_project_id": "String" } } }, - "sqlmesh__metrics_metrics__metrics_v0__1972836302__temp": { - "name": "metrics__metrics_v0__1972836302__temp", + "sqlmesh__metrics_metrics__gas_fees_to_project_weekly__1947565140__temp": { + "name": "metrics__gas_fees_to_project_weekly__1947565140__temp", "schema": "sqlmesh__metrics", "comment": "", "return_type": { "kind": "definition", "columns": { - "aggregation_function": "Nullable(String)", - "definition_ref": "Nullable(String)", - "description": "Nullable(String)", - "display_name": "String", - "metric_id": "String", - "metric_name": "String", - "metric_namespace": "String", - "metric_source": "String", - "raw_definition": "Nullable(String)" + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_project_id": "String" } } }, - "sqlmesh__metrics_metrics__metrics_v0__1989478904": { - "name": "metrics__metrics_v0__1989478904", + "sqlmesh__metrics_metrics__gas_fees_to_project_weekly__2566492595": { + "name": "metrics__gas_fees_to_project_weekly__2566492595", "schema": "sqlmesh__metrics", "comment": "", "return_type": { "kind": "definition", "columns": { - "aggregation_function": "Nullable(String)", - "definition_ref": "Nullable(String)", - "description": "Nullable(String)", - "display_name": "String", - "metric_id": "String", - "metric_name": "String", - "metric_source": "String", - "raw_definition": "Nullable(String)" + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_project_id": "String" } } }, - "sqlmesh__metrics_metrics__metrics_v0__1989478904__temp": { - "name": "metrics__metrics_v0__1989478904__temp", + "sqlmesh__metrics_metrics__gas_fees_to_project_weekly__2566492595__temp": { + "name": "metrics__gas_fees_to_project_weekly__2566492595__temp", "schema": "sqlmesh__metrics", "comment": "", "return_type": { "kind": "definition", "columns": { - "aggregation_function": "Nullable(String)", - "definition_ref": "Nullable(String)", - "description": "Nullable(String)", - "display_name": "String", - "metric_id": "String", - "metric_name": "String", - "metric_source": "String", - "raw_definition": "Nullable(String)" + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_project_id": "String" } } }, - "sqlmesh__metrics_metrics__metrics_v0__2384275897": { - "name": "metrics__metrics_v0__2384275897", + "sqlmesh__metrics_metrics__metrics_v0__2208086179": { + "name": "metrics__metrics_v0__2208086179", "schema": "sqlmesh__metrics", "comment": "", "return_type": { @@ -618,8 +7000,8 @@ } } }, - "sqlmesh__metrics_metrics__metrics_v0__2384275897__temp": { - "name": "metrics__metrics_v0__2384275897__temp", + "sqlmesh__metrics_metrics__metrics_v0__2208086179__temp": { + "name": "metrics__metrics_v0__2208086179__temp", "schema": "sqlmesh__metrics", "comment": "", "return_type": { @@ -637,8 +7019,8 @@ } } }, - "sqlmesh__metrics_metrics__metrics_v0__3641251458": { - "name": "metrics__metrics_v0__3641251458", + "sqlmesh__metrics_metrics__metrics_v0__55568561": { + "name": "metrics__metrics_v0__55568561", "schema": "sqlmesh__metrics", "comment": "", "return_type": { @@ -650,13 +7032,14 @@ "display_name": "String", "metric_id": "String", "metric_name": "String", + "metric_namespace": "String", "metric_source": "String", "raw_definition": "Nullable(String)" } } }, - "sqlmesh__metrics_metrics__metrics_v0__3641251458__temp": { - "name": "metrics__metrics_v0__3641251458__temp", + "sqlmesh__metrics_metrics__metrics_v0__55568561__temp": { + "name": "metrics__metrics_v0__55568561__temp", "schema": "sqlmesh__metrics", "comment": "", "return_type": { @@ -668,13 +7051,14 @@ "display_name": "String", "metric_id": "String", "metric_name": "String", + "metric_namespace": "String", "metric_source": "String", "raw_definition": "Nullable(String)" } } }, - "sqlmesh__metrics_metrics__metrics_v0__3889562040": { - "name": "metrics__metrics_v0__3889562040", + "sqlmesh__metrics_metrics__metrics_v0__88067858": { + "name": "metrics__metrics_v0__88067858", "schema": "sqlmesh__metrics", "comment": "", "return_type": { @@ -692,8 +7076,8 @@ } } }, - "sqlmesh__metrics_metrics__metrics_v0__3889562040__temp": { - "name": "metrics__metrics_v0__3889562040__temp", + "sqlmesh__metrics_metrics__metrics_v0__88067858__temp": { + "name": "metrics__metrics_v0__88067858__temp", "schema": "sqlmesh__metrics", "comment": "", "return_type": { @@ -711,608 +7095,584 @@ } } }, - "sqlmesh__metrics_metrics__metrics_v0__4156811425": { - "name": "metrics__metrics_v0__4156811425", + "sqlmesh__metrics_metrics__stars_to_artifact_daily__3943953320": { + "name": "metrics__stars_to_artifact_daily__3943953320", "schema": "sqlmesh__metrics", "comment": "", "return_type": { "kind": "definition", "columns": { - "aggregation_function": "Nullable(String)", - "definition_ref": "Nullable(String)", - "description": "Nullable(String)", - "display_name": "String", - "metric_id": "String", - "metric_name": "String", - "metric_source": "String", - "raw_definition": "Nullable(String)" + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_artifact_id": "String" } } }, - "sqlmesh__metrics_metrics__metrics_v0__4156811425__temp": { - "name": "metrics__metrics_v0__4156811425__temp", + "sqlmesh__metrics_metrics__stars_to_artifact_daily__3943953320__temp": { + "name": "metrics__stars_to_artifact_daily__3943953320__temp", "schema": "sqlmesh__metrics", "comment": "", "return_type": { "kind": "definition", "columns": { - "aggregation_function": "Nullable(String)", - "definition_ref": "Nullable(String)", - "description": "Nullable(String)", - "display_name": "String", - "metric_id": "String", - "metric_name": "String", - "metric_source": "String", - "raw_definition": "Nullable(String)" + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_artifact_id": "String" } } }, - "sqlmesh__metrics_metrics__metrics_v0__472213919": { - "name": "metrics__metrics_v0__472213919", + "sqlmesh__metrics_metrics__stars_to_artifact_daily__4261634010": { + "name": "metrics__stars_to_artifact_daily__4261634010", "schema": "sqlmesh__metrics", "comment": "", "return_type": { "kind": "definition", "columns": { - "aggregation_function": "Nullable(String)", - "definition_ref": "Nullable(String)", - "description": "Nullable(String)", - "display_name": "String", - "metric_id": "String", - "metric_name": "String", - "metric_namespace": "String", - "metric_source": "String", - "raw_definition": "Nullable(String)" + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_artifact_id": "String" } } }, - "sqlmesh__metrics_metrics__metrics_v0__472213919__temp": { - "name": "metrics__metrics_v0__472213919__temp", + "sqlmesh__metrics_metrics__stars_to_artifact_daily__4261634010__temp": { + "name": "metrics__stars_to_artifact_daily__4261634010__temp", "schema": "sqlmesh__metrics", "comment": "", "return_type": { "kind": "definition", "columns": { - "aggregation_function": "Nullable(String)", - "definition_ref": "Nullable(String)", - "description": "Nullable(String)", - "display_name": "String", - "metric_id": "String", - "metric_name": "String", - "metric_namespace": "String", - "metric_source": "String", - "raw_definition": "Nullable(String)" + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_artifact_id": "String" } } }, - "sqlmesh__metrics_metrics__metrics_v0__698231123": { - "name": "metrics__metrics_v0__698231123", + "sqlmesh__metrics_metrics__stars_to_artifact_monthly__2168815381": { + "name": "metrics__stars_to_artifact_monthly__2168815381", "schema": "sqlmesh__metrics", "comment": "", "return_type": { "kind": "definition", "columns": { - "aggregation_function": "Nullable(String)", - "definition_ref": "Nullable(String)", - "description": "Nullable(String)", - "display_name": "String", - "metric_id": "String", - "metric_name": "String", - "metric_source": "String", - "raw_definition": "Nullable(String)" + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_artifact_id": "String" } } }, - "sqlmesh__metrics_metrics__metrics_v0__698231123__temp": { - "name": "metrics__metrics_v0__698231123__temp", + "sqlmesh__metrics_metrics__stars_to_artifact_monthly__2168815381__temp": { + "name": "metrics__stars_to_artifact_monthly__2168815381__temp", "schema": "sqlmesh__metrics", "comment": "", "return_type": { "kind": "definition", "columns": { - "aggregation_function": "Nullable(String)", - "definition_ref": "Nullable(String)", - "description": "Nullable(String)", - "display_name": "String", - "metric_id": "String", - "metric_name": "String", - "metric_source": "String", - "raw_definition": "Nullable(String)" + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_artifact_id": "String" } } }, - "sqlmesh__metrics_metrics__metrics_v0__741092249": { - "name": "metrics__metrics_v0__741092249", + "sqlmesh__metrics_metrics__stars_to_artifact_monthly__3342764004": { + "name": "metrics__stars_to_artifact_monthly__3342764004", "schema": "sqlmesh__metrics", "comment": "", "return_type": { "kind": "definition", "columns": { - "aggregation_function": "Nullable(String)", - "definition_ref": "Nullable(String)", - "description": "Nullable(String)", - "display_name": "String", - "metric_id": "String", - "metric_name": "String", - "metric_source": "String", - "raw_definition": "Nullable(String)" + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_artifact_id": "String" } } }, - "sqlmesh__metrics_metrics__metrics_v0__741092249__temp": { - "name": "metrics__metrics_v0__741092249__temp", + "sqlmesh__metrics_metrics__stars_to_artifact_monthly__3342764004__temp": { + "name": "metrics__stars_to_artifact_monthly__3342764004__temp", "schema": "sqlmesh__metrics", "comment": "", "return_type": { "kind": "definition", "columns": { - "aggregation_function": "Nullable(String)", - "definition_ref": "Nullable(String)", - "description": "Nullable(String)", - "display_name": "String", - "metric_id": "String", - "metric_name": "String", - "metric_source": "String", - "raw_definition": "Nullable(String)" + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_artifact_id": "String" } } }, - "sqlmesh__metrics_metrics__metrics_v0__885103174": { - "name": "metrics__metrics_v0__885103174", + "sqlmesh__metrics_metrics__stars_to_artifact_weekly__1743497213": { + "name": "metrics__stars_to_artifact_weekly__1743497213", "schema": "sqlmesh__metrics", "comment": "", "return_type": { "kind": "definition", "columns": { - "aggregation_function": "String", - "definition_ref": "String", - "description": "String", - "display_name": "String", - "metric_id": "FixedString(32)", - "metric_name": "String", - "metric_namespace": "String", - "metric_source": "String", - "raw_definition": "Nullable(String)" + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_artifact_id": "String" } } }, - "sqlmesh__metrics_metrics__metrics_v0__885103174__temp": { - "name": "metrics__metrics_v0__885103174__temp", + "sqlmesh__metrics_metrics__stars_to_artifact_weekly__1743497213__temp": { + "name": "metrics__stars_to_artifact_weekly__1743497213__temp", "schema": "sqlmesh__metrics", "comment": "", "return_type": { "kind": "definition", "columns": { - "aggregation_function": "String", - "definition_ref": "String", - "description": "String", - "display_name": "String", - "metric_id": "FixedString(32)", - "metric_name": "String", - "metric_namespace": "String", - "metric_source": "String", - "raw_definition": "Nullable(String)" + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_artifact_id": "String" } } }, - "sqlmesh__metrics_metrics__timeseries_code_metrics_by_artifact_over_30_days__7598012": { - "name": "metrics__timeseries_code_metrics_by_artifact_over_30_days__7598012", + "sqlmesh__metrics_metrics__stars_to_artifact_weekly__3851289333": { + "name": "metrics__stars_to_artifact_weekly__3851289333", "schema": "sqlmesh__metrics", "comment": "", "return_type": { "kind": "definition", "columns": { - "amount": "Nullable(Int64)", - "bucket_day": "Nullable(Date)", - "event_source": "Nullable(String)", - "from_artifact_id": "Nullable(String)", - "metric": "Nullable(String)", - "to_artifact_id": "Nullable(String)" + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_artifact_id": "String" } } }, - "sqlmesh__metrics_metrics__timeseries_code_metrics_by_artifact_over_30_days__7598012__temp": { - "name": "metrics__timeseries_code_metrics_by_artifact_over_30_days__7598012__temp", + "sqlmesh__metrics_metrics__stars_to_artifact_weekly__3851289333__temp": { + "name": "metrics__stars_to_artifact_weekly__3851289333__temp", "schema": "sqlmesh__metrics", "comment": "", "return_type": { "kind": "definition", "columns": { - "amount": "Nullable(Int64)", - "bucket_day": "Nullable(Date)", - "event_source": "Nullable(String)", - "from_artifact_id": "Nullable(String)", - "metric": "Nullable(String)", - "to_artifact_id": "Nullable(String)" + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_artifact_id": "String" } } }, - "sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_over_30_days__1052226158": { - "name": "metrics__timeseries_metrics_by_artifact_over_30_days__1052226158", + "sqlmesh__metrics_metrics__stars_to_collection_daily__1704087402": { + "name": "metrics__stars_to_collection_daily__1704087402", "schema": "sqlmesh__metrics", "comment": "", "return_type": { "kind": "definition", "columns": { "amount": "Float64", - "bucket_day": "Date", "event_source": "String", "from_artifact_id": "String", "metric": "String", - "to_artifact_id": "String" + "metrics_sample_date": "Date", + "to_collection_id": "String" } } }, - "sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_over_30_days__1052226158__temp": { - "name": "metrics__timeseries_metrics_by_artifact_over_30_days__1052226158__temp", + "sqlmesh__metrics_metrics__stars_to_collection_daily__1704087402__temp": { + "name": "metrics__stars_to_collection_daily__1704087402__temp", "schema": "sqlmesh__metrics", "comment": "", "return_type": { "kind": "definition", "columns": { "amount": "Float64", - "bucket_day": "Date", "event_source": "String", "from_artifact_id": "String", "metric": "String", - "to_artifact_id": "String" + "metrics_sample_date": "Date", + "to_collection_id": "String" } } }, - "sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_over_30_days__1641497371": { - "name": "metrics__timeseries_metrics_by_artifact_over_30_days__1641497371", + "sqlmesh__metrics_metrics__stars_to_collection_daily__516027240": { + "name": "metrics__stars_to_collection_daily__516027240", "schema": "sqlmesh__metrics", "comment": "", "return_type": { "kind": "definition", "columns": { "amount": "Float64", - "bucket_day": "Date", "event_source": "String", "from_artifact_id": "String", "metric": "String", - "to_artifact_id": "String" + "metrics_sample_date": "Date", + "to_collection_id": "String" } } }, - "sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_over_30_days__1641497371__temp": { - "name": "metrics__timeseries_metrics_by_artifact_over_30_days__1641497371__temp", + "sqlmesh__metrics_metrics__stars_to_collection_daily__516027240__temp": { + "name": "metrics__stars_to_collection_daily__516027240__temp", "schema": "sqlmesh__metrics", "comment": "", "return_type": { "kind": "definition", "columns": { "amount": "Float64", - "bucket_day": "Date", "event_source": "String", "from_artifact_id": "String", "metric": "String", - "to_artifact_id": "String" + "metrics_sample_date": "Date", + "to_collection_id": "String" } } }, - "sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_over_30_days__2141203280": { - "name": "metrics__timeseries_metrics_by_artifact_over_30_days__2141203280", + "sqlmesh__metrics_metrics__stars_to_collection_monthly__1295871846": { + "name": "metrics__stars_to_collection_monthly__1295871846", "schema": "sqlmesh__metrics", "comment": "", "return_type": { "kind": "definition", "columns": { "amount": "Float64", - "bucket_day": "Date", "event_source": "String", "from_artifact_id": "String", "metric": "String", - "to_artifact_id": "String" + "metrics_sample_date": "Date", + "to_collection_id": "String" } } }, - "sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_over_30_days__2141203280__temp": { - "name": "metrics__timeseries_metrics_by_artifact_over_30_days__2141203280__temp", + "sqlmesh__metrics_metrics__stars_to_collection_monthly__1295871846__temp": { + "name": "metrics__stars_to_collection_monthly__1295871846__temp", "schema": "sqlmesh__metrics", "comment": "", "return_type": { "kind": "definition", "columns": { "amount": "Float64", - "bucket_day": "Date", "event_source": "String", "from_artifact_id": "String", "metric": "String", - "to_artifact_id": "String" + "metrics_sample_date": "Date", + "to_collection_id": "String" } } }, - "sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_over_30_days__2202426059": { - "name": "metrics__timeseries_metrics_by_artifact_over_30_days__2202426059", + "sqlmesh__metrics_metrics__stars_to_collection_monthly__3008979280": { + "name": "metrics__stars_to_collection_monthly__3008979280", "schema": "sqlmesh__metrics", "comment": "", "return_type": { "kind": "definition", "columns": { "amount": "Float64", - "bucket_day": "Date", "event_source": "String", "from_artifact_id": "String", "metric": "String", - "to_artifact_id": "String" + "metrics_sample_date": "Date", + "to_collection_id": "String" } } }, - "sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_over_30_days__2202426059__temp": { - "name": "metrics__timeseries_metrics_by_artifact_over_30_days__2202426059__temp", + "sqlmesh__metrics_metrics__stars_to_collection_monthly__3008979280__temp": { + "name": "metrics__stars_to_collection_monthly__3008979280__temp", "schema": "sqlmesh__metrics", "comment": "", "return_type": { "kind": "definition", "columns": { "amount": "Float64", - "bucket_day": "Date", "event_source": "String", "from_artifact_id": "String", "metric": "String", - "to_artifact_id": "String" + "metrics_sample_date": "Date", + "to_collection_id": "String" } } }, - "sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_over_30_days__2705758559": { - "name": "metrics__timeseries_metrics_by_artifact_over_30_days__2705758559", + "sqlmesh__metrics_metrics__stars_to_collection_weekly__1485544187": { + "name": "metrics__stars_to_collection_weekly__1485544187", "schema": "sqlmesh__metrics", "comment": "", "return_type": { "kind": "definition", "columns": { "amount": "Float64", - "bucket_day": "Date", "event_source": "String", "from_artifact_id": "String", "metric": "String", - "to_artifact_id": "String" + "metrics_sample_date": "Date", + "to_collection_id": "String" } } }, - "sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_over_30_days__2705758559__temp": { - "name": "metrics__timeseries_metrics_by_artifact_over_30_days__2705758559__temp", + "sqlmesh__metrics_metrics__stars_to_collection_weekly__1485544187__temp": { + "name": "metrics__stars_to_collection_weekly__1485544187__temp", "schema": "sqlmesh__metrics", "comment": "", "return_type": { "kind": "definition", "columns": { "amount": "Float64", - "bucket_day": "Date", "event_source": "String", "from_artifact_id": "String", "metric": "String", - "to_artifact_id": "String" + "metrics_sample_date": "Date", + "to_collection_id": "String" } } }, - "sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_over_30_days__3060931431": { - "name": "metrics__timeseries_metrics_by_artifact_over_30_days__3060931431", + "sqlmesh__metrics_metrics__stars_to_collection_weekly__3749819661": { + "name": "metrics__stars_to_collection_weekly__3749819661", "schema": "sqlmesh__metrics", "comment": "", "return_type": { "kind": "definition", "columns": { "amount": "Float64", - "bucket_day": "Date", "event_source": "String", "from_artifact_id": "String", "metric": "String", - "to_artifact_id": "String" + "metrics_sample_date": "Date", + "to_collection_id": "String" } } }, - "sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_over_30_days__3060931431__temp": { - "name": "metrics__timeseries_metrics_by_artifact_over_30_days__3060931431__temp", + "sqlmesh__metrics_metrics__stars_to_collection_weekly__3749819661__temp": { + "name": "metrics__stars_to_collection_weekly__3749819661__temp", "schema": "sqlmesh__metrics", "comment": "", "return_type": { "kind": "definition", "columns": { "amount": "Float64", - "bucket_day": "Date", "event_source": "String", "from_artifact_id": "String", "metric": "String", - "to_artifact_id": "String" + "metrics_sample_date": "Date", + "to_collection_id": "String" } } }, - "sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_over_30_days__3629470274": { - "name": "metrics__timeseries_metrics_by_artifact_over_30_days__3629470274", + "sqlmesh__metrics_metrics__stars_to_project_daily__3520205442": { + "name": "metrics__stars_to_project_daily__3520205442", "schema": "sqlmesh__metrics", "comment": "", "return_type": { "kind": "definition", "columns": { "amount": "Float64", - "bucket_day": "Date", "event_source": "String", "from_artifact_id": "String", "metric": "String", - "to_artifact_id": "String" + "metrics_sample_date": "Date", + "to_project_id": "String" } } }, - "sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_over_30_days__3629470274__temp": { - "name": "metrics__timeseries_metrics_by_artifact_over_30_days__3629470274__temp", + "sqlmesh__metrics_metrics__stars_to_project_daily__3520205442__temp": { + "name": "metrics__stars_to_project_daily__3520205442__temp", "schema": "sqlmesh__metrics", "comment": "", "return_type": { "kind": "definition", "columns": { "amount": "Float64", - "bucket_day": "Date", "event_source": "String", "from_artifact_id": "String", "metric": "String", - "to_artifact_id": "String" + "metrics_sample_date": "Date", + "to_project_id": "String" } } }, - "sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_over_30_days__3716588191": { - "name": "metrics__timeseries_metrics_by_artifact_over_30_days__3716588191", + "sqlmesh__metrics_metrics__stars_to_project_daily__629299181": { + "name": "metrics__stars_to_project_daily__629299181", "schema": "sqlmesh__metrics", "comment": "", "return_type": { "kind": "definition", "columns": { "amount": "Float64", - "bucket_day": "Date", "event_source": "String", "from_artifact_id": "String", "metric": "String", - "to_artifact_id": "String" + "metrics_sample_date": "Date", + "to_project_id": "String" } } }, - "sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_over_30_days__3716588191__temp": { - "name": "metrics__timeseries_metrics_by_artifact_over_30_days__3716588191__temp", + "sqlmesh__metrics_metrics__stars_to_project_daily__629299181__temp": { + "name": "metrics__stars_to_project_daily__629299181__temp", "schema": "sqlmesh__metrics", "comment": "", "return_type": { "kind": "definition", "columns": { "amount": "Float64", - "bucket_day": "Date", "event_source": "String", "from_artifact_id": "String", "metric": "String", - "to_artifact_id": "String" + "metrics_sample_date": "Date", + "to_project_id": "String" } } }, - "sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_over_30_days__3782520343": { - "name": "metrics__timeseries_metrics_by_artifact_over_30_days__3782520343", + "sqlmesh__metrics_metrics__stars_to_project_monthly__1354212363": { + "name": "metrics__stars_to_project_monthly__1354212363", "schema": "sqlmesh__metrics", "comment": "", "return_type": { "kind": "definition", "columns": { "amount": "Float64", - "bucket_day": "Date", "event_source": "String", "from_artifact_id": "String", "metric": "String", - "to_artifact_id": "String" + "metrics_sample_date": "Date", + "to_project_id": "String" } } }, - "sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_over_30_days__3782520343__temp": { - "name": "metrics__timeseries_metrics_by_artifact_over_30_days__3782520343__temp", + "sqlmesh__metrics_metrics__stars_to_project_monthly__1354212363__temp": { + "name": "metrics__stars_to_project_monthly__1354212363__temp", "schema": "sqlmesh__metrics", "comment": "", "return_type": { "kind": "definition", "columns": { "amount": "Float64", - "bucket_day": "Date", "event_source": "String", "from_artifact_id": "String", "metric": "String", - "to_artifact_id": "String" + "metrics_sample_date": "Date", + "to_project_id": "String" } } }, - "sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_over_30_days__4007628622": { - "name": "metrics__timeseries_metrics_by_artifact_over_30_days__4007628622", + "sqlmesh__metrics_metrics__stars_to_project_monthly__2390911040": { + "name": "metrics__stars_to_project_monthly__2390911040", "schema": "sqlmesh__metrics", "comment": "", "return_type": { "kind": "definition", "columns": { "amount": "Float64", - "bucket_day": "Date", "event_source": "String", "from_artifact_id": "String", "metric": "String", - "to_artifact_id": "String" + "metrics_sample_date": "Date", + "to_project_id": "String" } } }, - "sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_over_30_days__4007628622__temp": { - "name": "metrics__timeseries_metrics_by_artifact_over_30_days__4007628622__temp", + "sqlmesh__metrics_metrics__stars_to_project_monthly__2390911040__temp": { + "name": "metrics__stars_to_project_monthly__2390911040__temp", "schema": "sqlmesh__metrics", "comment": "", "return_type": { "kind": "definition", "columns": { "amount": "Float64", - "bucket_day": "Date", "event_source": "String", "from_artifact_id": "String", "metric": "String", - "to_artifact_id": "String" + "metrics_sample_date": "Date", + "to_project_id": "String" } } }, - "sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_over_30_days__411625291": { - "name": "metrics__timeseries_metrics_by_artifact_over_30_days__411625291", + "sqlmesh__metrics_metrics__stars_to_project_weekly__2108842660": { + "name": "metrics__stars_to_project_weekly__2108842660", "schema": "sqlmesh__metrics", "comment": "", "return_type": { "kind": "definition", "columns": { "amount": "Float64", - "bucket_day": "Date", "event_source": "String", "from_artifact_id": "String", "metric": "String", - "to_artifact_id": "String" + "metrics_sample_date": "Date", + "to_project_id": "String" } } }, - "sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_over_30_days__411625291__temp": { - "name": "metrics__timeseries_metrics_by_artifact_over_30_days__411625291__temp", + "sqlmesh__metrics_metrics__stars_to_project_weekly__2108842660__temp": { + "name": "metrics__stars_to_project_weekly__2108842660__temp", "schema": "sqlmesh__metrics", "comment": "", "return_type": { "kind": "definition", "columns": { "amount": "Float64", - "bucket_day": "Date", "event_source": "String", "from_artifact_id": "String", "metric": "String", - "to_artifact_id": "String" + "metrics_sample_date": "Date", + "to_project_id": "String" } } }, - "sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_over_30_days__4285487256": { - "name": "metrics__timeseries_metrics_by_artifact_over_30_days__4285487256", + "sqlmesh__metrics_metrics__stars_to_project_weekly__4146311776": { + "name": "metrics__stars_to_project_weekly__4146311776", "schema": "sqlmesh__metrics", "comment": "", "return_type": { "kind": "definition", "columns": { "amount": "Float64", - "bucket_day": "Date", "event_source": "String", "from_artifact_id": "String", "metric": "String", - "to_artifact_id": "String" + "metrics_sample_date": "Date", + "to_project_id": "String" } } }, - "sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_over_30_days__4285487256__temp": { - "name": "metrics__timeseries_metrics_by_artifact_over_30_days__4285487256__temp", + "sqlmesh__metrics_metrics__stars_to_project_weekly__4146311776__temp": { + "name": "metrics__stars_to_project_weekly__4146311776__temp", "schema": "sqlmesh__metrics", "comment": "", "return_type": { "kind": "definition", "columns": { "amount": "Float64", - "bucket_day": "Date", "event_source": "String", "from_artifact_id": "String", "metric": "String", - "to_artifact_id": "String" + "metrics_sample_date": "Date", + "to_project_id": "String" } } }, - "sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_v0__1280450367": { - "name": "metrics__timeseries_metrics_by_artifact_v0__1280450367", + "sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_v0__1270130250": { + "name": "metrics__timeseries_metrics_by_artifact_v0__1270130250", "schema": "sqlmesh__metrics", "comment": "", "return_type": { @@ -1326,8 +7686,8 @@ } } }, - "sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_v0__1280450367__temp": { - "name": "metrics__timeseries_metrics_by_artifact_v0__1280450367__temp", + "sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_v0__1270130250__temp": { + "name": "metrics__timeseries_metrics_by_artifact_v0__1270130250__temp", "schema": "sqlmesh__metrics", "comment": "", "return_type": { @@ -1341,8 +7701,8 @@ } } }, - "sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_v0__1833626329": { - "name": "metrics__timeseries_metrics_by_artifact_v0__1833626329", + "sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_v0__1727810142": { + "name": "metrics__timeseries_metrics_by_artifact_v0__1727810142", "schema": "sqlmesh__metrics", "comment": "", "return_type": { @@ -1356,8 +7716,8 @@ } } }, - "sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_v0__1833626329__temp": { - "name": "metrics__timeseries_metrics_by_artifact_v0__1833626329__temp", + "sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_v0__1727810142__temp": { + "name": "metrics__timeseries_metrics_by_artifact_v0__1727810142__temp", "schema": "sqlmesh__metrics", "comment": "", "return_type": { @@ -1371,8 +7731,8 @@ } } }, - "sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_v0__2123659464": { - "name": "metrics__timeseries_metrics_by_artifact_v0__2123659464", + "sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_v0__1996731649": { + "name": "metrics__timeseries_metrics_by_artifact_v0__1996731649", "schema": "sqlmesh__metrics", "comment": "", "return_type": { @@ -1386,8 +7746,8 @@ } } }, - "sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_v0__2123659464__temp": { - "name": "metrics__timeseries_metrics_by_artifact_v0__2123659464__temp", + "sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_v0__1996731649__temp": { + "name": "metrics__timeseries_metrics_by_artifact_v0__1996731649__temp", "schema": "sqlmesh__metrics", "comment": "", "return_type": { @@ -1401,273 +7761,471 @@ } } }, - "sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_v0__2343650771": { - "name": "metrics__timeseries_metrics_by_artifact_v0__2343650771", + "sqlmesh__metrics_metrics__timeseries_metrics_by_collection_v0__2468299318": { + "name": "metrics__timeseries_metrics_by_collection_v0__2468299318", "schema": "sqlmesh__metrics", "comment": "", "return_type": { "kind": "definition", "columns": { "amount": "Float64", - "artifact_id": "String", + "collection_id": "String", "metric_id": "String", "sample_date": "Date", "unit": "Nullable(String)" } } }, - "sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_v0__2343650771__temp": { - "name": "metrics__timeseries_metrics_by_artifact_v0__2343650771__temp", + "sqlmesh__metrics_metrics__timeseries_metrics_by_collection_v0__2468299318__temp": { + "name": "metrics__timeseries_metrics_by_collection_v0__2468299318__temp", "schema": "sqlmesh__metrics", "comment": "", "return_type": { "kind": "definition", "columns": { "amount": "Float64", - "artifact_id": "String", + "collection_id": "String", "metric_id": "String", "sample_date": "Date", "unit": "Nullable(String)" } } }, - "sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_v0__2513542600": { - "name": "metrics__timeseries_metrics_by_artifact_v0__2513542600", + "sqlmesh__metrics_metrics__timeseries_metrics_by_collection_v0__2496789213": { + "name": "metrics__timeseries_metrics_by_collection_v0__2496789213", "schema": "sqlmesh__metrics", "comment": "", "return_type": { "kind": "definition", "columns": { "amount": "Float64", - "artifact_id": "String", + "collection_id": "String", "metric_id": "String", "sample_date": "Date", "unit": "Nullable(String)" } } }, - "sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_v0__2513542600__temp": { - "name": "metrics__timeseries_metrics_by_artifact_v0__2513542600__temp", + "sqlmesh__metrics_metrics__timeseries_metrics_by_collection_v0__2496789213__temp": { + "name": "metrics__timeseries_metrics_by_collection_v0__2496789213__temp", "schema": "sqlmesh__metrics", "comment": "", "return_type": { "kind": "definition", "columns": { "amount": "Float64", - "artifact_id": "String", + "collection_id": "String", "metric_id": "String", "sample_date": "Date", "unit": "Nullable(String)" } } }, - "sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_v0__274191541": { - "name": "metrics__timeseries_metrics_by_artifact_v0__274191541", + "sqlmesh__metrics_metrics__timeseries_metrics_by_collection_v0__3525966047": { + "name": "metrics__timeseries_metrics_by_collection_v0__3525966047", "schema": "sqlmesh__metrics", "comment": "", "return_type": { "kind": "definition", "columns": { "amount": "Float64", - "artifact_id": "String", + "collection_id": "String", "metric_id": "String", "sample_date": "Date", "unit": "Nullable(String)" } } }, - "sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_v0__274191541__temp": { - "name": "metrics__timeseries_metrics_by_artifact_v0__274191541__temp", + "sqlmesh__metrics_metrics__timeseries_metrics_by_collection_v0__3525966047__temp": { + "name": "metrics__timeseries_metrics_by_collection_v0__3525966047__temp", "schema": "sqlmesh__metrics", "comment": "", "return_type": { "kind": "definition", "columns": { "amount": "Float64", - "artifact_id": "String", + "collection_id": "String", "metric_id": "String", "sample_date": "Date", "unit": "Nullable(String)" } } }, - "sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_v0__2787405387": { - "name": "metrics__timeseries_metrics_by_artifact_v0__2787405387", + "sqlmesh__metrics_metrics__timeseries_metrics_by_project_v0__1782460057": { + "name": "metrics__timeseries_metrics_by_project_v0__1782460057", "schema": "sqlmesh__metrics", "comment": "", "return_type": { "kind": "definition", "columns": { "amount": "Float64", - "artifact_id": "String", "metric_id": "String", + "project_id": "String", "sample_date": "Date", "unit": "Nullable(String)" } } }, - "sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_v0__2787405387__temp": { - "name": "metrics__timeseries_metrics_by_artifact_v0__2787405387__temp", + "sqlmesh__metrics_metrics__timeseries_metrics_by_project_v0__1782460057__temp": { + "name": "metrics__timeseries_metrics_by_project_v0__1782460057__temp", "schema": "sqlmesh__metrics", "comment": "", "return_type": { "kind": "definition", "columns": { "amount": "Float64", - "artifact_id": "String", "metric_id": "String", + "project_id": "String", "sample_date": "Date", "unit": "Nullable(String)" } } }, - "sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_v0__4180627168": { - "name": "metrics__timeseries_metrics_by_artifact_v0__4180627168", + "sqlmesh__metrics_metrics__timeseries_metrics_by_project_v0__1912179822": { + "name": "metrics__timeseries_metrics_by_project_v0__1912179822", "schema": "sqlmesh__metrics", "comment": "", "return_type": { "kind": "definition", "columns": { "amount": "Float64", - "artifact_id": "String", "metric_id": "String", + "project_id": "String", "sample_date": "Date", "unit": "Nullable(String)" } } }, - "sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_v0__4180627168__temp": { - "name": "metrics__timeseries_metrics_by_artifact_v0__4180627168__temp", + "sqlmesh__metrics_metrics__timeseries_metrics_by_project_v0__1912179822__temp": { + "name": "metrics__timeseries_metrics_by_project_v0__1912179822__temp", "schema": "sqlmesh__metrics", "comment": "", "return_type": { "kind": "definition", "columns": { "amount": "Float64", - "artifact_id": "String", "metric_id": "String", + "project_id": "String", "sample_date": "Date", "unit": "Nullable(String)" } } }, - "sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_v0__4229608905": { - "name": "metrics__timeseries_metrics_by_artifact_v0__4229608905", + "sqlmesh__metrics_metrics__timeseries_metrics_by_project_v0__3979194729": { + "name": "metrics__timeseries_metrics_by_project_v0__3979194729", "schema": "sqlmesh__metrics", "comment": "", "return_type": { "kind": "definition", "columns": { "amount": "Float64", - "artifact_id": "String", "metric_id": "String", + "project_id": "String", "sample_date": "Date", "unit": "Nullable(String)" } } }, - "sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_v0__4229608905__temp": { - "name": "metrics__timeseries_metrics_by_artifact_v0__4229608905__temp", + "sqlmesh__metrics_metrics__timeseries_metrics_by_project_v0__3979194729__temp": { + "name": "metrics__timeseries_metrics_by_project_v0__3979194729__temp", "schema": "sqlmesh__metrics", "comment": "", "return_type": { "kind": "definition", "columns": { "amount": "Float64", - "artifact_id": "String", "metric_id": "String", + "project_id": "String", "sample_date": "Date", "unit": "Nullable(String)" } } }, - "sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_v0__594520992": { - "name": "metrics__timeseries_metrics_by_artifact_v0__594520992", + "sqlmesh__metrics_metrics__timeseries_metrics_to_artifact__2351048721": { + "name": "metrics__timeseries_metrics_to_artifact__2351048721", "schema": "sqlmesh__metrics", "comment": "", "return_type": { "kind": "definition", "columns": { "amount": "Float64", - "artifact_id": "String", - "metric_id": "String", - "sample_date": "Date", - "unit": "Nullable(String)" + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_artifact_id": "String" } } }, - "sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_v0__594520992__temp": { - "name": "metrics__timeseries_metrics_by_artifact_v0__594520992__temp", + "sqlmesh__metrics_metrics__timeseries_metrics_to_artifact__2351048721__temp": { + "name": "metrics__timeseries_metrics_to_artifact__2351048721__temp", "schema": "sqlmesh__metrics", "comment": "", "return_type": { "kind": "definition", "columns": { "amount": "Float64", - "artifact_id": "String", - "metric_id": "String", - "sample_date": "Date", - "unit": "Nullable(String)" + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_artifact_id": "String" } } }, - "sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_v0__635461998": { - "name": "metrics__timeseries_metrics_by_artifact_v0__635461998", + "sqlmesh__metrics_metrics__timeseries_metrics_to_artifact__3322379927": { + "name": "metrics__timeseries_metrics_to_artifact__3322379927", "schema": "sqlmesh__metrics", "comment": "", "return_type": { "kind": "definition", "columns": { "amount": "Float64", - "artifact_id": "String", - "metric_id": "String", - "sample_date": "Date", - "unit": "Nullable(String)" + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_artifact_id": "String" } } }, - "sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_v0__635461998__temp": { - "name": "metrics__timeseries_metrics_by_artifact_v0__635461998__temp", + "sqlmesh__metrics_metrics__timeseries_metrics_to_artifact__3322379927__temp": { + "name": "metrics__timeseries_metrics_to_artifact__3322379927__temp", "schema": "sqlmesh__metrics", "comment": "", "return_type": { "kind": "definition", "columns": { "amount": "Float64", - "artifact_id": "String", - "metric_id": "String", - "sample_date": "Date", - "unit": "Nullable(String)" + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_artifact_id": "String" } } }, - "sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_v0__661819154": { - "name": "metrics__timeseries_metrics_by_artifact_v0__661819154", + "sqlmesh__metrics_metrics__timeseries_metrics_to_artifact__4207207325": { + "name": "metrics__timeseries_metrics_to_artifact__4207207325", "schema": "sqlmesh__metrics", "comment": "", "return_type": { "kind": "definition", "columns": { "amount": "Float64", - "artifact_id": "String", - "metric_id": "String", - "sample_date": "Date", - "unit": "Nullable(String)" + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_artifact_id": "String" } } }, - "sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_v0__661819154__temp": { - "name": "metrics__timeseries_metrics_by_artifact_v0__661819154__temp", + "sqlmesh__metrics_metrics__timeseries_metrics_to_artifact__4207207325__temp": { + "name": "metrics__timeseries_metrics_to_artifact__4207207325__temp", "schema": "sqlmesh__metrics", "comment": "", "return_type": { "kind": "definition", "columns": { "amount": "Float64", - "artifact_id": "String", - "metric_id": "String", - "sample_date": "Date", - "unit": "Nullable(String)" + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_artifact_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__timeseries_metrics_to_collection__2679590610": { + "name": "metrics__timeseries_metrics_to_collection__2679590610", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_collection_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__timeseries_metrics_to_collection__2679590610__temp": { + "name": "metrics__timeseries_metrics_to_collection__2679590610__temp", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_collection_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__timeseries_metrics_to_collection__3172946056": { + "name": "metrics__timeseries_metrics_to_collection__3172946056", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_collection_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__timeseries_metrics_to_collection__3172946056__temp": { + "name": "metrics__timeseries_metrics_to_collection__3172946056__temp", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_collection_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__timeseries_metrics_to_collection__3648127228": { + "name": "metrics__timeseries_metrics_to_collection__3648127228", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_collection_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__timeseries_metrics_to_collection__3648127228__temp": { + "name": "metrics__timeseries_metrics_to_collection__3648127228__temp", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_collection_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__timeseries_metrics_to_project__2069061168": { + "name": "metrics__timeseries_metrics_to_project__2069061168", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_project_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__timeseries_metrics_to_project__2069061168__temp": { + "name": "metrics__timeseries_metrics_to_project__2069061168__temp", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_project_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__timeseries_metrics_to_project__3295140178": { + "name": "metrics__timeseries_metrics_to_project__3295140178", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_project_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__timeseries_metrics_to_project__3295140178__temp": { + "name": "metrics__timeseries_metrics_to_project__3295140178__temp", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_project_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__timeseries_metrics_to_project__693599064": { + "name": "metrics__timeseries_metrics_to_project__693599064", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_project_id": "String" + } + } + }, + "sqlmesh__metrics_metrics__timeseries_metrics_to_project__693599064__temp": { + "name": "metrics__timeseries_metrics_to_project__693599064__temp", + "schema": "sqlmesh__metrics", + "comment": "", + "return_type": { + "kind": "definition", + "columns": { + "amount": "Float64", + "event_source": "String", + "from_artifact_id": "String", + "metric": "String", + "metrics_sample_date": "Date", + "to_project_id": "String" } } }, diff --git a/apps/hasura3/oso_subgraph/connector/oso_clickhouse/connector.yaml b/apps/hasura3/oso_subgraph/connector/oso_clickhouse/connector.yaml index 0f78be65d..45b51bd61 100644 --- a/apps/hasura3/oso_subgraph/connector/oso_clickhouse/connector.yaml +++ b/apps/hasura3/oso_subgraph/connector/oso_clickhouse/connector.yaml @@ -3,7 +3,7 @@ version: v2 definition: name: oso_clickhouse subgraph: oso_subgraph - source: hasura/clickhouse:v1.0.0 + source: hasura/clickhouse:v1.0.2 context: . envMapping: CLICKHOUSE_PASSWORD: diff --git a/apps/hasura3/oso_subgraph/metadata/ArtifactsByProjectV1.hml b/apps/hasura3/oso_subgraph/metadata/ArtifactsByProjectV1.hml index 35fe9c8ff..dfb267d7f 100644 --- a/apps/hasura3/oso_subgraph/metadata/ArtifactsByProjectV1.hml +++ b/apps/hasura3/oso_subgraph/metadata/ArtifactsByProjectV1.hml @@ -88,45 +88,6 @@ definition: - projectNamespace - projectSource ---- -kind: ObjectBooleanExpressionType -version: v1 -definition: - name: ArtifactsByProjectV1BoolExp - objectType: ArtifactsByProjectV1 - dataConnectorName: oso_clickhouse - dataConnectorObjectType: artifacts_by_project_v1 - comparableFields: - - fieldName: artifactId - operators: - enableAll: true - - fieldName: artifactName - operators: - enableAll: true - - fieldName: artifactNamespace - operators: - enableAll: true - - fieldName: artifactSource - operators: - enableAll: true - - fieldName: artifactSourceId - operators: - enableAll: true - - fieldName: projectId - operators: - enableAll: true - - fieldName: projectName - operators: - enableAll: true - - fieldName: projectNamespace - operators: - enableAll: true - - fieldName: projectSource - operators: - enableAll: true - graphql: - typeName: Oso_ArtifactsByProjectV1BoolExp - --- kind: Model version: v1 @@ -170,6 +131,10 @@ definition: queryRootField: oso_artifactsByProjectV1 selectUniques: [] orderByExpressionType: Oso_ArtifactsByProjectV1OrderBy + filterInputTypeName: Oso_ArtifactsByProjectV1FilterInput + aggregate: + queryRootField: oso_artifactsByProjectV1Aggregate + aggregateExpression: ArtifactsByProjectV1AggExp --- kind: ModelPermissions @@ -183,3 +148,71 @@ definition: - role: anonymous select: filter: null + +--- +kind: BooleanExpressionType +version: v1 +definition: + name: ArtifactsByProjectV1BoolExp + operand: + object: + type: ArtifactsByProjectV1 + comparableFields: + - fieldName: artifactId + booleanExpressionType: StringBoolExp + - fieldName: artifactName + booleanExpressionType: StringBoolExp + - fieldName: artifactNamespace + booleanExpressionType: StringBoolExp + - fieldName: artifactSource + booleanExpressionType: StringBoolExp + - fieldName: artifactSourceId + booleanExpressionType: StringBoolExp + - fieldName: projectId + booleanExpressionType: StringBoolExp + - fieldName: projectName + booleanExpressionType: StringBoolExp + - fieldName: projectNamespace + booleanExpressionType: StringBoolExp + - fieldName: projectSource + booleanExpressionType: StringBoolExp + comparableRelationships: [] + logicalOperators: + enable: true + isNull: + enable: true + graphql: + typeName: Oso_ArtifactsByProjectV1BoolExp + +--- +kind: AggregateExpression +version: v1 +definition: + name: ArtifactsByProjectV1AggExp + operand: + object: + aggregatedType: ArtifactsByProjectV1 + aggregatableFields: + - fieldName: artifactId + aggregateExpression: StringAggExp + - fieldName: artifactName + aggregateExpression: StringAggExp + - fieldName: artifactNamespace + aggregateExpression: StringAggExp + - fieldName: artifactSource + aggregateExpression: StringAggExp + - fieldName: artifactSourceId + aggregateExpression: StringAggExp + - fieldName: projectId + aggregateExpression: StringAggExp + - fieldName: projectName + aggregateExpression: StringAggExp + - fieldName: projectNamespace + aggregateExpression: StringAggExp + - fieldName: projectSource + aggregateExpression: StringAggExp + count: + enable: true + graphql: + selectTypeName: Oso_ArtifactsByProjectV1AggExp + diff --git a/apps/hasura3/oso_subgraph/metadata/ArtifactsV1.hml b/apps/hasura3/oso_subgraph/metadata/ArtifactsV1.hml index 047adc515..76fdd0509 100644 --- a/apps/hasura3/oso_subgraph/metadata/ArtifactsV1.hml +++ b/apps/hasura3/oso_subgraph/metadata/ArtifactsV1.hml @@ -67,36 +67,6 @@ definition: - artifactSourceId - artifactUrl ---- -kind: ObjectBooleanExpressionType -version: v1 -definition: - name: ArtifactsV1BoolExp - objectType: ArtifactsV1 - dataConnectorName: oso_clickhouse - dataConnectorObjectType: artifacts_v1 - comparableFields: - - fieldName: artifactId - operators: - enableAll: true - - fieldName: artifactName - operators: - enableAll: true - - fieldName: artifactNamespace - operators: - enableAll: true - - fieldName: artifactSource - operators: - enableAll: true - - fieldName: artifactSourceId - operators: - enableAll: true - - fieldName: artifactUrl - operators: - enableAll: true - graphql: - typeName: Oso_ArtifactsV1BoolExp - --- kind: Model version: v1 @@ -131,6 +101,10 @@ definition: queryRootField: oso_artifactsV1 selectUniques: [] orderByExpressionType: Oso_ArtifactsV1OrderBy + filterInputTypeName: Oso_ArtifactsV1FilterInput + aggregate: + queryRootField: oso_artifactsV1Aggregate + aggregateExpression: ArtifactsV1AggExp --- kind: ModelPermissions @@ -144,3 +118,59 @@ definition: - role: anonymous select: filter: null + +--- +kind: BooleanExpressionType +version: v1 +definition: + name: ArtifactsV1BoolExp + operand: + object: + type: ArtifactsV1 + comparableFields: + - fieldName: artifactId + booleanExpressionType: StringBoolExp + - fieldName: artifactName + booleanExpressionType: StringBoolExp + - fieldName: artifactNamespace + booleanExpressionType: StringBoolExp + - fieldName: artifactSource + booleanExpressionType: StringBoolExp + - fieldName: artifactSourceId + booleanExpressionType: StringBoolExp + - fieldName: artifactUrl + booleanExpressionType: StringBoolExp + comparableRelationships: [] + logicalOperators: + enable: true + isNull: + enable: true + graphql: + typeName: Oso_ArtifactsV1BoolExp + +--- +kind: AggregateExpression +version: v1 +definition: + name: ArtifactsV1AggExp + operand: + object: + aggregatedType: ArtifactsV1 + aggregatableFields: + - fieldName: artifactId + aggregateExpression: StringAggExp + - fieldName: artifactName + aggregateExpression: StringAggExp + - fieldName: artifactNamespace + aggregateExpression: StringAggExp + - fieldName: artifactSource + aggregateExpression: StringAggExp + - fieldName: artifactSourceId + aggregateExpression: StringAggExp + - fieldName: artifactUrl + aggregateExpression: StringAggExp + count: + enable: true + graphql: + selectTypeName: Oso_ArtifactsV1AggExp + diff --git a/apps/hasura3/oso_subgraph/metadata/CodeMetricsByArtifactV0.hml b/apps/hasura3/oso_subgraph/metadata/CodeMetricsByArtifactV0.hml index b82d91bb8..630205316 100644 --- a/apps/hasura3/oso_subgraph/metadata/CodeMetricsByArtifactV0.hml +++ b/apps/hasura3/oso_subgraph/metadata/CodeMetricsByArtifactV0.hml @@ -151,72 +151,6 @@ definition: - openedPullRequestCount6Months - starCount ---- -kind: ObjectBooleanExpressionType -version: v1 -definition: - name: CodeMetricsByArtifactV0BoolExp - objectType: CodeMetricsByArtifactV0 - dataConnectorName: oso_clickhouse - dataConnectorObjectType: code_metrics_by_artifact_v0 - comparableFields: - - fieldName: activeDeveloperCount6Months - operators: - enableAll: true - - fieldName: artifactId - operators: - enableAll: true - - fieldName: artifactName - operators: - enableAll: true - - fieldName: artifactNamespace - operators: - enableAll: true - - fieldName: closedIssueCount6Months - operators: - enableAll: true - - fieldName: commitCount6Months - operators: - enableAll: true - - fieldName: contributorCount - operators: - enableAll: true - - fieldName: contributorCount6Months - operators: - enableAll: true - - fieldName: eventSource - operators: - enableAll: true - - fieldName: firstCommitDate - operators: - enableAll: true - - fieldName: forkCount - operators: - enableAll: true - - fieldName: fulltimeDeveloperAverage6Months - operators: - enableAll: true - - fieldName: lastCommitDate - operators: - enableAll: true - - fieldName: mergedPullRequestCount6Months - operators: - enableAll: true - - fieldName: newContributorCount6Months - operators: - enableAll: true - - fieldName: openedIssueCount6Months - operators: - enableAll: true - - fieldName: openedPullRequestCount6Months - operators: - enableAll: true - - fieldName: starCount - operators: - enableAll: true - graphql: - typeName: Oso_CodeMetricsByArtifactV0BoolExp - --- kind: Model version: v1 @@ -287,6 +221,10 @@ definition: queryRootField: oso_codeMetricsByArtifactV0 selectUniques: [] orderByExpressionType: Oso_CodeMetricsByArtifactV0OrderBy + filterInputTypeName: Oso_CodeMetricsByArtifactV0FilterInput + aggregate: + queryRootField: oso_codeMetricsByArtifactV0Aggregate + aggregateExpression: CodeMetricsByArtifactV0AggExp --- kind: ModelPermissions @@ -300,3 +238,107 @@ definition: - role: anonymous select: filter: null + +--- +kind: BooleanExpressionType +version: v1 +definition: + name: CodeMetricsByArtifactV0BoolExp + operand: + object: + type: CodeMetricsByArtifactV0 + comparableFields: + - fieldName: activeDeveloperCount6Months + booleanExpressionType: Float32BoolExp + - fieldName: artifactId + booleanExpressionType: StringBoolExp + - fieldName: artifactName + booleanExpressionType: StringBoolExp + - fieldName: artifactNamespace + booleanExpressionType: StringBoolExp + - fieldName: closedIssueCount6Months + booleanExpressionType: Float32BoolExp + - fieldName: commitCount6Months + booleanExpressionType: Float32BoolExp + - fieldName: contributorCount + booleanExpressionType: Float32BoolExp + - fieldName: contributorCount6Months + booleanExpressionType: Float32BoolExp + - fieldName: eventSource + booleanExpressionType: StringBoolExp + - fieldName: firstCommitDate + booleanExpressionType: DateTimeBoolExp + - fieldName: forkCount + booleanExpressionType: Int64BoolExp + - fieldName: fulltimeDeveloperAverage6Months + booleanExpressionType: Float32BoolExp + - fieldName: lastCommitDate + booleanExpressionType: DateTimeBoolExp + - fieldName: mergedPullRequestCount6Months + booleanExpressionType: Float32BoolExp + - fieldName: newContributorCount6Months + booleanExpressionType: Float32BoolExp + - fieldName: openedIssueCount6Months + booleanExpressionType: Float32BoolExp + - fieldName: openedPullRequestCount6Months + booleanExpressionType: Float32BoolExp + - fieldName: starCount + booleanExpressionType: Int64BoolExp + comparableRelationships: [] + logicalOperators: + enable: true + isNull: + enable: true + graphql: + typeName: Oso_CodeMetricsByArtifactV0BoolExp + +--- +kind: AggregateExpression +version: v1 +definition: + name: CodeMetricsByArtifactV0AggExp + operand: + object: + aggregatedType: CodeMetricsByArtifactV0 + aggregatableFields: + - fieldName: activeDeveloperCount6Months + aggregateExpression: Float32AggExp + - fieldName: artifactId + aggregateExpression: StringAggExp + - fieldName: artifactName + aggregateExpression: StringAggExp + - fieldName: artifactNamespace + aggregateExpression: StringAggExp + - fieldName: closedIssueCount6Months + aggregateExpression: Float32AggExp + - fieldName: commitCount6Months + aggregateExpression: Float32AggExp + - fieldName: contributorCount + aggregateExpression: Float32AggExp + - fieldName: contributorCount6Months + aggregateExpression: Float32AggExp + - fieldName: eventSource + aggregateExpression: StringAggExp + - fieldName: firstCommitDate + aggregateExpression: DateTimeAggExp + - fieldName: forkCount + aggregateExpression: Int64AggExp + - fieldName: fulltimeDeveloperAverage6Months + aggregateExpression: Float32AggExp + - fieldName: lastCommitDate + aggregateExpression: DateTimeAggExp + - fieldName: mergedPullRequestCount6Months + aggregateExpression: Float32AggExp + - fieldName: newContributorCount6Months + aggregateExpression: Float32AggExp + - fieldName: openedIssueCount6Months + aggregateExpression: Float32AggExp + - fieldName: openedPullRequestCount6Months + aggregateExpression: Float32AggExp + - fieldName: starCount + aggregateExpression: Int64AggExp + count: + enable: true + graphql: + selectTypeName: Oso_CodeMetricsByArtifactV0AggExp + diff --git a/apps/hasura3/oso_subgraph/metadata/CodeMetricsByProjectV1.hml b/apps/hasura3/oso_subgraph/metadata/CodeMetricsByProjectV1.hml index c15100d29..5650e7f1c 100644 --- a/apps/hasura3/oso_subgraph/metadata/CodeMetricsByProjectV1.hml +++ b/apps/hasura3/oso_subgraph/metadata/CodeMetricsByProjectV1.hml @@ -172,81 +172,6 @@ definition: - repositoryCount - starCount ---- -kind: ObjectBooleanExpressionType -version: v1 -definition: - name: CodeMetricsByProjectV1BoolExp - objectType: CodeMetricsByProjectV1 - dataConnectorName: oso_clickhouse - dataConnectorObjectType: code_metrics_by_project_v1 - comparableFields: - - fieldName: activeDeveloperCount6Months - operators: - enableAll: true - - fieldName: closedIssueCount6Months - operators: - enableAll: true - - fieldName: commitCount6Months - operators: - enableAll: true - - fieldName: contributorCount - operators: - enableAll: true - - fieldName: contributorCount6Months - operators: - enableAll: true - - fieldName: displayName - operators: - enableAll: true - - fieldName: eventSource - operators: - enableAll: true - - fieldName: firstCommitDate - operators: - enableAll: true - - fieldName: forkCount - operators: - enableAll: true - - fieldName: fulltimeDeveloperAverage6Months - operators: - enableAll: true - - fieldName: lastCommitDate - operators: - enableAll: true - - fieldName: mergedPullRequestCount6Months - operators: - enableAll: true - - fieldName: newContributorCount6Months - operators: - enableAll: true - - fieldName: openedIssueCount6Months - operators: - enableAll: true - - fieldName: openedPullRequestCount6Months - operators: - enableAll: true - - fieldName: projectId - operators: - enableAll: true - - fieldName: projectName - operators: - enableAll: true - - fieldName: projectNamespace - operators: - enableAll: true - - fieldName: projectSource - operators: - enableAll: true - - fieldName: repositoryCount - operators: - enableAll: true - - fieldName: starCount - operators: - enableAll: true - graphql: - typeName: Oso_CodeMetricsByProjectV1BoolExp - --- kind: Model version: v1 @@ -326,6 +251,10 @@ definition: queryRootField: oso_codeMetricsByProjectV1 selectUniques: [] orderByExpressionType: Oso_CodeMetricsByProjectV1OrderBy + filterInputTypeName: Oso_CodeMetricsByProjectV1FilterInput + aggregate: + queryRootField: oso_codeMetricsByProjectV1Aggregate + aggregateExpression: CodeMetricsByProjectV1AggExp --- kind: ModelPermissions @@ -339,3 +268,119 @@ definition: - role: anonymous select: filter: null + +--- +kind: BooleanExpressionType +version: v1 +definition: + name: CodeMetricsByProjectV1BoolExp + operand: + object: + type: CodeMetricsByProjectV1 + comparableFields: + - fieldName: activeDeveloperCount6Months + booleanExpressionType: Float32BoolExp + - fieldName: closedIssueCount6Months + booleanExpressionType: Float32BoolExp + - fieldName: commitCount6Months + booleanExpressionType: Float32BoolExp + - fieldName: contributorCount + booleanExpressionType: Float32BoolExp + - fieldName: contributorCount6Months + booleanExpressionType: Float32BoolExp + - fieldName: displayName + booleanExpressionType: StringBoolExp + - fieldName: eventSource + booleanExpressionType: StringBoolExp + - fieldName: firstCommitDate + booleanExpressionType: DateTimeBoolExp + - fieldName: forkCount + booleanExpressionType: Int64BoolExp + - fieldName: fulltimeDeveloperAverage6Months + booleanExpressionType: Float32BoolExp + - fieldName: lastCommitDate + booleanExpressionType: DateTimeBoolExp + - fieldName: mergedPullRequestCount6Months + booleanExpressionType: Float32BoolExp + - fieldName: newContributorCount6Months + booleanExpressionType: Float32BoolExp + - fieldName: openedIssueCount6Months + booleanExpressionType: Float32BoolExp + - fieldName: openedPullRequestCount6Months + booleanExpressionType: Float32BoolExp + - fieldName: projectId + booleanExpressionType: StringBoolExp + - fieldName: projectName + booleanExpressionType: StringBoolExp + - fieldName: projectNamespace + booleanExpressionType: StringBoolExp + - fieldName: projectSource + booleanExpressionType: StringBoolExp + - fieldName: repositoryCount + booleanExpressionType: Int64BoolExp + - fieldName: starCount + booleanExpressionType: Int64BoolExp + comparableRelationships: [] + logicalOperators: + enable: true + isNull: + enable: true + graphql: + typeName: Oso_CodeMetricsByProjectV1BoolExp + +--- +kind: AggregateExpression +version: v1 +definition: + name: CodeMetricsByProjectV1AggExp + operand: + object: + aggregatedType: CodeMetricsByProjectV1 + aggregatableFields: + - fieldName: activeDeveloperCount6Months + aggregateExpression: Float32AggExp + - fieldName: closedIssueCount6Months + aggregateExpression: Float32AggExp + - fieldName: commitCount6Months + aggregateExpression: Float32AggExp + - fieldName: contributorCount + aggregateExpression: Float32AggExp + - fieldName: contributorCount6Months + aggregateExpression: Float32AggExp + - fieldName: displayName + aggregateExpression: StringAggExp + - fieldName: eventSource + aggregateExpression: StringAggExp + - fieldName: firstCommitDate + aggregateExpression: DateTimeAggExp + - fieldName: forkCount + aggregateExpression: Int64AggExp + - fieldName: fulltimeDeveloperAverage6Months + aggregateExpression: Float32AggExp + - fieldName: lastCommitDate + aggregateExpression: DateTimeAggExp + - fieldName: mergedPullRequestCount6Months + aggregateExpression: Float32AggExp + - fieldName: newContributorCount6Months + aggregateExpression: Float32AggExp + - fieldName: openedIssueCount6Months + aggregateExpression: Float32AggExp + - fieldName: openedPullRequestCount6Months + aggregateExpression: Float32AggExp + - fieldName: projectId + aggregateExpression: StringAggExp + - fieldName: projectName + aggregateExpression: StringAggExp + - fieldName: projectNamespace + aggregateExpression: StringAggExp + - fieldName: projectSource + aggregateExpression: StringAggExp + - fieldName: repositoryCount + aggregateExpression: Int64AggExp + - fieldName: starCount + aggregateExpression: Int64AggExp + count: + enable: true + graphql: + selectTypeName: Oso_CodeMetricsByProjectV1AggExp + diff --git a/apps/hasura3/oso_subgraph/metadata/CollectionsV1.hml b/apps/hasura3/oso_subgraph/metadata/CollectionsV1.hml index 6ef5bd317..98554396f 100644 --- a/apps/hasura3/oso_subgraph/metadata/CollectionsV1.hml +++ b/apps/hasura3/oso_subgraph/metadata/CollectionsV1.hml @@ -67,36 +67,6 @@ definition: - description - displayName ---- -kind: ObjectBooleanExpressionType -version: v1 -definition: - name: CollectionsV1BoolExp - objectType: CollectionsV1 - dataConnectorName: oso_clickhouse - dataConnectorObjectType: collections_v1 - comparableFields: - - fieldName: collectionId - operators: - enableAll: true - - fieldName: collectionName - operators: - enableAll: true - - fieldName: collectionNamespace - operators: - enableAll: true - - fieldName: collectionSource - operators: - enableAll: true - - fieldName: description - operators: - enableAll: true - - fieldName: displayName - operators: - enableAll: true - graphql: - typeName: Oso_CollectionsV1BoolExp - --- kind: Model version: v1 @@ -131,6 +101,10 @@ definition: queryRootField: oso_collectionsV1 selectUniques: [] orderByExpressionType: Oso_CollectionsV1OrderBy + filterInputTypeName: Oso_CollectionsV1FilterInput + aggregate: + queryRootField: oso_collectionsV1Aggregate + aggregateExpression: CollectionsV1AggExp --- kind: ModelPermissions @@ -144,3 +118,59 @@ definition: - role: anonymous select: filter: null + +--- +kind: BooleanExpressionType +version: v1 +definition: + name: CollectionsV1BoolExp + operand: + object: + type: CollectionsV1 + comparableFields: + - fieldName: collectionId + booleanExpressionType: StringBoolExp + - fieldName: collectionName + booleanExpressionType: StringBoolExp + - fieldName: collectionNamespace + booleanExpressionType: StringBoolExp + - fieldName: collectionSource + booleanExpressionType: StringBoolExp + - fieldName: description + booleanExpressionType: StringBoolExp + - fieldName: displayName + booleanExpressionType: StringBoolExp + comparableRelationships: [] + logicalOperators: + enable: true + isNull: + enable: true + graphql: + typeName: Oso_CollectionsV1BoolExp + +--- +kind: AggregateExpression +version: v1 +definition: + name: CollectionsV1AggExp + operand: + object: + aggregatedType: CollectionsV1 + aggregatableFields: + - fieldName: collectionId + aggregateExpression: StringAggExp + - fieldName: collectionName + aggregateExpression: StringAggExp + - fieldName: collectionNamespace + aggregateExpression: StringAggExp + - fieldName: collectionSource + aggregateExpression: StringAggExp + - fieldName: description + aggregateExpression: StringAggExp + - fieldName: displayName + aggregateExpression: StringAggExp + count: + enable: true + graphql: + selectTypeName: Oso_CollectionsV1AggExp + diff --git a/apps/hasura3/oso_subgraph/metadata/ContractsV0.hml b/apps/hasura3/oso_subgraph/metadata/ContractsV0.hml index 56c8250d6..383865b54 100644 --- a/apps/hasura3/oso_subgraph/metadata/ContractsV0.hml +++ b/apps/hasura3/oso_subgraph/metadata/ContractsV0.hml @@ -46,27 +46,6 @@ definition: - contractAddress - rootDeployerAddress ---- -kind: ObjectBooleanExpressionType -version: v1 -definition: - name: ContractsV0BoolExp - objectType: ContractsV0 - dataConnectorName: oso_clickhouse - dataConnectorObjectType: contracts_v0 - comparableFields: - - fieldName: artifactSource - operators: - enableAll: true - - fieldName: contractAddress - operators: - enableAll: true - - fieldName: rootDeployerAddress - operators: - enableAll: true - graphql: - typeName: Oso_ContractsV0BoolExp - --- kind: Model version: v1 @@ -92,6 +71,10 @@ definition: queryRootField: oso_contractsV0 selectUniques: [] orderByExpressionType: Oso_ContractsV0OrderBy + filterInputTypeName: Oso_ContractsV0FilterInput + aggregate: + queryRootField: oso_contractsV0Aggregate + aggregateExpression: ContractsV0AggExp --- kind: ModelPermissions @@ -105,3 +88,47 @@ definition: - role: anonymous select: filter: null + +--- +kind: BooleanExpressionType +version: v1 +definition: + name: ContractsV0BoolExp + operand: + object: + type: ContractsV0 + comparableFields: + - fieldName: artifactSource + booleanExpressionType: StringBoolExp + - fieldName: contractAddress + booleanExpressionType: StringBoolExp + - fieldName: rootDeployerAddress + booleanExpressionType: StringBoolExp + comparableRelationships: [] + logicalOperators: + enable: true + isNull: + enable: true + graphql: + typeName: Oso_ContractsV0BoolExp + +--- +kind: AggregateExpression +version: v1 +definition: + name: ContractsV0AggExp + operand: + object: + aggregatedType: ContractsV0 + aggregatableFields: + - fieldName: artifactSource + aggregateExpression: StringAggExp + - fieldName: contractAddress + aggregateExpression: StringAggExp + - fieldName: rootDeployerAddress + aggregateExpression: StringAggExp + count: + enable: true + graphql: + selectTypeName: Oso_ContractsV0AggExp + diff --git a/apps/hasura3/oso_subgraph/metadata/EventIndexingStatusByProjectV1.hml b/apps/hasura3/oso_subgraph/metadata/EventIndexingStatusByProjectV1.hml index 90879f1b2..f88ed1c2c 100644 --- a/apps/hasura3/oso_subgraph/metadata/EventIndexingStatusByProjectV1.hml +++ b/apps/hasura3/oso_subgraph/metadata/EventIndexingStatusByProjectV1.hml @@ -88,45 +88,6 @@ definition: - projectNamespace - projectSource ---- -kind: ObjectBooleanExpressionType -version: v1 -definition: - name: EventIndexingStatusByProjectV1BoolExp - objectType: EventIndexingStatusByProjectV1 - dataConnectorName: oso_clickhouse - dataConnectorObjectType: event_indexing_status_by_project_v1 - comparableFields: - - fieldName: eventSource - operators: - enableAll: true - - fieldName: eventType - operators: - enableAll: true - - fieldName: eventfulDayCount - operators: - enableAll: true - - fieldName: firstEventDate - operators: - enableAll: true - - fieldName: lastEventDate - operators: - enableAll: true - - fieldName: projectId - operators: - enableAll: true - - fieldName: projectName - operators: - enableAll: true - - fieldName: projectNamespace - operators: - enableAll: true - - fieldName: projectSource - operators: - enableAll: true - graphql: - typeName: Oso_EventIndexingStatusByProjectV1BoolExp - --- kind: Model version: v1 @@ -170,6 +131,10 @@ definition: queryRootField: oso_eventIndexingStatusByProjectV1 selectUniques: [] orderByExpressionType: Oso_EventIndexingStatusByProjectV1OrderBy + filterInputTypeName: Oso_EventIndexingStatusByProjectV1FilterInput + aggregate: + queryRootField: oso_eventIndexingStatusByProjectV1Aggregate + aggregateExpression: EventIndexingStatusByProjectV1AggExp --- kind: ModelPermissions @@ -183,3 +148,71 @@ definition: - role: anonymous select: filter: null + +--- +kind: BooleanExpressionType +version: v1 +definition: + name: EventIndexingStatusByProjectV1BoolExp + operand: + object: + type: EventIndexingStatusByProjectV1 + comparableFields: + - fieldName: eventSource + booleanExpressionType: StringBoolExp + - fieldName: eventType + booleanExpressionType: StringBoolExp + - fieldName: eventfulDayCount + booleanExpressionType: Int64BoolExp + - fieldName: firstEventDate + booleanExpressionType: DateTimeBoolExp + - fieldName: lastEventDate + booleanExpressionType: DateTimeBoolExp + - fieldName: projectId + booleanExpressionType: StringBoolExp + - fieldName: projectName + booleanExpressionType: StringBoolExp + - fieldName: projectNamespace + booleanExpressionType: StringBoolExp + - fieldName: projectSource + booleanExpressionType: StringBoolExp + comparableRelationships: [] + logicalOperators: + enable: true + isNull: + enable: true + graphql: + typeName: Oso_EventIndexingStatusByProjectV1BoolExp + +--- +kind: AggregateExpression +version: v1 +definition: + name: EventIndexingStatusByProjectV1AggExp + operand: + object: + aggregatedType: EventIndexingStatusByProjectV1 + aggregatableFields: + - fieldName: eventSource + aggregateExpression: StringAggExp + - fieldName: eventType + aggregateExpression: StringAggExp + - fieldName: eventfulDayCount + aggregateExpression: Int64AggExp + - fieldName: firstEventDate + aggregateExpression: DateTimeAggExp + - fieldName: lastEventDate + aggregateExpression: DateTimeAggExp + - fieldName: projectId + aggregateExpression: StringAggExp + - fieldName: projectName + aggregateExpression: StringAggExp + - fieldName: projectNamespace + aggregateExpression: StringAggExp + - fieldName: projectSource + aggregateExpression: StringAggExp + count: + enable: true + graphql: + selectTypeName: Oso_EventIndexingStatusByProjectV1AggExp + diff --git a/apps/hasura3/oso_subgraph/metadata/EventTypesV1.hml b/apps/hasura3/oso_subgraph/metadata/EventTypesV1.hml index 6953ba6c7..0ff02919c 100644 --- a/apps/hasura3/oso_subgraph/metadata/EventTypesV1.hml +++ b/apps/hasura3/oso_subgraph/metadata/EventTypesV1.hml @@ -32,21 +32,6 @@ definition: allowedFields: - eventType ---- -kind: ObjectBooleanExpressionType -version: v1 -definition: - name: EventTypesV1BoolExp - objectType: EventTypesV1 - dataConnectorName: oso_clickhouse - dataConnectorObjectType: event_types_v1 - comparableFields: - - fieldName: eventType - operators: - enableAll: true - graphql: - typeName: Oso_EventTypesV1BoolExp - --- kind: Model version: v1 @@ -66,6 +51,10 @@ definition: queryRootField: oso_eventTypesV1 selectUniques: [] orderByExpressionType: Oso_EventTypesV1OrderBy + filterInputTypeName: Oso_EventTypesV1FilterInput + aggregate: + queryRootField: oso_eventTypesV1Aggregate + aggregateExpression: EventTypesV1AggExp --- kind: ModelPermissions @@ -79,3 +68,39 @@ definition: - role: anonymous select: filter: null + +--- +kind: BooleanExpressionType +version: v1 +definition: + name: EventTypesV1BoolExp + operand: + object: + type: EventTypesV1 + comparableFields: + - fieldName: eventType + booleanExpressionType: StringBoolExp + comparableRelationships: [] + logicalOperators: + enable: true + isNull: + enable: true + graphql: + typeName: Oso_EventTypesV1BoolExp + +--- +kind: AggregateExpression +version: v1 +definition: + name: EventTypesV1AggExp + operand: + object: + aggregatedType: EventTypesV1 + aggregatableFields: + - fieldName: eventType + aggregateExpression: StringAggExp + count: + enable: true + graphql: + selectTypeName: Oso_EventTypesV1AggExp + diff --git a/apps/hasura3/oso_subgraph/metadata/MetricsMetricsV0.hml b/apps/hasura3/oso_subgraph/metadata/MetricsMetricsV0.hml index f30bb6d90..702a1c4a1 100644 --- a/apps/hasura3/oso_subgraph/metadata/MetricsMetricsV0.hml +++ b/apps/hasura3/oso_subgraph/metadata/MetricsMetricsV0.hml @@ -86,45 +86,7 @@ definition: - metricName - metricSource - rawDefinition - ---- -kind: ObjectBooleanExpressionType -version: v1 -definition: - name: MetricsMetricsV0BoolExp - objectType: MetricsMetricsV0 - dataConnectorName: oso_clickhouse - dataConnectorObjectType: metrics_metrics_v0 - comparableFields: - - fieldName: aggregationFunction - operators: - enableAll: true - - fieldName: definitionRef - operators: - enableAll: true - - fieldName: description - operators: - enableAll: true - - fieldName: displayName - operators: - enableAll: true - - fieldName: metricId - operators: - enableAll: true - - fieldName: metricName - operators: - enableAll: true - - fieldName: metricSource - operators: - enableAll: true - - fieldName: rawDefinition - operators: - enableAll: true - - fieldName: metricNamespace - operators: - enableAll: true - graphql: - typeName: Oso_MetricsMetricsV0BoolExp + - metricNamespace --- kind: Model @@ -169,6 +131,10 @@ definition: queryRootField: oso_metricsV0 selectUniques: [] orderByExpressionType: Oso_MetricsMetricsV0OrderBy + filterInputTypeName: Oso_MetricsMetricsV0FilterInput + aggregate: + queryRootField: oso_metricsV0Aggregate + aggregateExpression: MetricsMetricsV0AggExp --- kind: ModelPermissions @@ -183,3 +149,70 @@ definition: select: filter: null +--- +kind: BooleanExpressionType +version: v1 +definition: + name: MetricsMetricsV0BoolExp + operand: + object: + type: MetricsMetricsV0 + comparableFields: + - fieldName: aggregationFunction + booleanExpressionType: StringBoolExp + - fieldName: definitionRef + booleanExpressionType: StringBoolExp + - fieldName: description + booleanExpressionType: StringBoolExp + - fieldName: displayName + booleanExpressionType: StringBoolExp + - fieldName: metricId + booleanExpressionType: StringBoolExp + - fieldName: metricName + booleanExpressionType: StringBoolExp + - fieldName: metricNamespace + booleanExpressionType: StringBoolExp + - fieldName: metricSource + booleanExpressionType: StringBoolExp + - fieldName: rawDefinition + booleanExpressionType: StringBoolExp + comparableRelationships: [] + logicalOperators: + enable: true + isNull: + enable: true + graphql: + typeName: Oso_MetricsMetricsV0BoolExp + +--- +kind: AggregateExpression +version: v1 +definition: + name: MetricsMetricsV0AggExp + operand: + object: + aggregatedType: MetricsMetricsV0 + aggregatableFields: + - fieldName: aggregationFunction + aggregateExpression: StringAggExp + - fieldName: definitionRef + aggregateExpression: StringAggExp + - fieldName: description + aggregateExpression: StringAggExp + - fieldName: displayName + aggregateExpression: StringAggExp + - fieldName: metricId + aggregateExpression: StringAggExp + - fieldName: metricName + aggregateExpression: StringAggExp + - fieldName: metricNamespace + aggregateExpression: StringAggExp + - fieldName: metricSource + aggregateExpression: StringAggExp + - fieldName: rawDefinition + aggregateExpression: StringAggExp + count: + enable: true + graphql: + selectTypeName: Oso_MetricsMetricsV0AggExp + diff --git a/apps/hasura3/oso_subgraph/metadata/MetricsTimeseriesMetricsByArtifactV0.hml b/apps/hasura3/oso_subgraph/metadata/MetricsTimeseriesMetricsByArtifactV0.hml index 83e528251..c6da8256f 100644 --- a/apps/hasura3/oso_subgraph/metadata/MetricsTimeseriesMetricsByArtifactV0.hml +++ b/apps/hasura3/oso_subgraph/metadata/MetricsTimeseriesMetricsByArtifactV0.hml @@ -60,33 +60,6 @@ definition: - sampleDate - unit ---- -kind: ObjectBooleanExpressionType -version: v1 -definition: - name: MetricsTimeseriesMetricsByArtifactV0BoolExp - objectType: MetricsTimeseriesMetricsByArtifactV0 - dataConnectorName: oso_clickhouse - dataConnectorObjectType: metrics_timeseries_metrics_by_artifact_v0 - comparableFields: - - fieldName: amount - operators: - enableAll: true - - fieldName: artifactId - operators: - enableAll: true - - fieldName: metricId - operators: - enableAll: true - - fieldName: sampleDate - operators: - enableAll: true - - fieldName: unit - operators: - enableAll: true - graphql: - typeName: Oso_MetricsTimeseriesMetricsByArtifactV0BoolExp - --- kind: Model version: v1 @@ -118,6 +91,10 @@ definition: queryRootField: oso_timeseriesMetricsByArtifactV0 selectUniques: [] orderByExpressionType: Oso_MetricsTimeseriesMetricsByArtifactV0OrderBy + filterInputTypeName: Oso_MetricsTimeseriesMetricsByArtifactV0FilterInput + aggregate: + queryRootField: oso_timeseriesMetricsByArtifactV0Aggregate + aggregateExpression: MetricsTimeseriesMetricsByArtifactV0AggExp --- kind: ModelPermissions @@ -131,3 +108,55 @@ definition: - role: anonymous select: filter: null + +--- +kind: BooleanExpressionType +version: v1 +definition: + name: MetricsTimeseriesMetricsByArtifactV0BoolExp + operand: + object: + type: MetricsTimeseriesMetricsByArtifactV0 + comparableFields: + - fieldName: amount + booleanExpressionType: Float64BoolExp + - fieldName: artifactId + booleanExpressionType: StringBoolExp + - fieldName: metricId + booleanExpressionType: StringBoolExp + - fieldName: sampleDate + booleanExpressionType: DateBoolExp + - fieldName: unit + booleanExpressionType: StringBoolExp + comparableRelationships: [] + logicalOperators: + enable: true + isNull: + enable: true + graphql: + typeName: Oso_MetricsTimeseriesMetricsByArtifactV0BoolExp + +--- +kind: AggregateExpression +version: v1 +definition: + name: MetricsTimeseriesMetricsByArtifactV0AggExp + operand: + object: + aggregatedType: MetricsTimeseriesMetricsByArtifactV0 + aggregatableFields: + - fieldName: amount + aggregateExpression: Float64AggExp + - fieldName: artifactId + aggregateExpression: StringAggExp + - fieldName: metricId + aggregateExpression: StringAggExp + - fieldName: sampleDate + aggregateExpression: DateAggExp + - fieldName: unit + aggregateExpression: StringAggExp + count: + enable: true + graphql: + selectTypeName: Oso_MetricsTimeseriesMetricsByArtifactV0AggExp + diff --git a/apps/hasura3/oso_subgraph/metadata/MetricsTimeseriesMetricsByCollectionV0.hml b/apps/hasura3/oso_subgraph/metadata/MetricsTimeseriesMetricsByCollectionV0.hml new file mode 100644 index 000000000..de3278495 --- /dev/null +++ b/apps/hasura3/oso_subgraph/metadata/MetricsTimeseriesMetricsByCollectionV0.hml @@ -0,0 +1,162 @@ +--- +kind: ObjectType +version: v1 +definition: + name: MetricsTimeseriesMetricsByCollectionV0 + fields: + - name: amount + type: Float64! + - name: collectionId + type: String! + - name: metricId + type: String! + - name: sampleDate + type: Date! + - name: unit + type: String + graphql: + typeName: Oso_MetricsTimeseriesMetricsByCollectionV0 + inputTypeName: Oso_MetricsTimeseriesMetricsByCollectionV0Input + dataConnectorTypeMapping: + - dataConnectorName: oso_clickhouse + dataConnectorObjectType: metrics_timeseries_metrics_by_collection_v0 + fieldMapping: + amount: + column: + name: amount + collectionId: + column: + name: collection_id + metricId: + column: + name: metric_id + sampleDate: + column: + name: sample_date + unit: + column: + name: unit + +--- +kind: TypePermissions +version: v1 +definition: + typeName: MetricsTimeseriesMetricsByCollectionV0 + permissions: + - role: admin + output: + allowedFields: + - amount + - collectionId + - metricId + - sampleDate + - unit + - role: anonymous + output: + allowedFields: + - amount + - collectionId + - metricId + - sampleDate + - unit + +--- +kind: Model +version: v1 +definition: + name: MetricsTimeseriesMetricsByCollectionV0 + objectType: MetricsTimeseriesMetricsByCollectionV0 + source: + dataConnectorName: oso_clickhouse + collection: metrics_timeseries_metrics_by_collection_v0 + filterExpressionType: MetricsTimeseriesMetricsByCollectionV0BoolExp + orderableFields: + - fieldName: amount + orderByDirections: + enableAll: true + - fieldName: collectionId + orderByDirections: + enableAll: true + - fieldName: metricId + orderByDirections: + enableAll: true + - fieldName: sampleDate + orderByDirections: + enableAll: true + - fieldName: unit + orderByDirections: + enableAll: true + graphql: + selectMany: + queryRootField: oso_timeseriesMetricsByCollectionV0 + selectUniques: [] + orderByExpressionType: Oso_MetricsTimeseriesMetricsByCollectionV0OrderBy + filterInputTypeName: Oso_MetricsTimeseriesMetricsByCollectionV0FilterInput + aggregate: + queryRootField: oso_timeseriesMetricsByCollectionV0Aggregate + aggregateExpression: MetricsTimeseriesMetricsByCollectionV0AggExp + +--- +kind: ModelPermissions +version: v1 +definition: + modelName: MetricsTimeseriesMetricsByCollectionV0 + permissions: + - role: admin + select: + filter: null + - role: anonymous + select: + filter: null + +--- +kind: BooleanExpressionType +version: v1 +definition: + name: MetricsTimeseriesMetricsByCollectionV0BoolExp + operand: + object: + type: MetricsTimeseriesMetricsByCollectionV0 + comparableFields: + - fieldName: amount + booleanExpressionType: Float64BoolExp + - fieldName: collectionId + booleanExpressionType: StringBoolExp + - fieldName: metricId + booleanExpressionType: StringBoolExp + - fieldName: sampleDate + booleanExpressionType: DateBoolExp + - fieldName: unit + booleanExpressionType: StringBoolExp + comparableRelationships: [] + logicalOperators: + enable: true + isNull: + enable: true + graphql: + typeName: Oso_MetricsTimeseriesMetricsByCollectionV0BoolExp + +--- +kind: AggregateExpression +version: v1 +definition: + name: MetricsTimeseriesMetricsByCollectionV0AggExp + operand: + object: + aggregatedType: MetricsTimeseriesMetricsByCollectionV0 + aggregatableFields: + - fieldName: amount + aggregateExpression: Float64AggExp + - fieldName: collectionId + aggregateExpression: StringAggExp + - fieldName: metricId + aggregateExpression: StringAggExp + - fieldName: sampleDate + aggregateExpression: DateAggExp + - fieldName: unit + aggregateExpression: StringAggExp + count: + enable: true + graphql: + selectTypeName: Oso_MetricsTimeseriesMetricsByCollectionV0AggExp + diff --git a/apps/hasura3/oso_subgraph/metadata/MetricsTimeseriesMetricsByProjectV0.hml b/apps/hasura3/oso_subgraph/metadata/MetricsTimeseriesMetricsByProjectV0.hml new file mode 100644 index 000000000..9a759fd6a --- /dev/null +++ b/apps/hasura3/oso_subgraph/metadata/MetricsTimeseriesMetricsByProjectV0.hml @@ -0,0 +1,162 @@ +--- +kind: ObjectType +version: v1 +definition: + name: MetricsTimeseriesMetricsByProjectV0 + fields: + - name: amount + type: Float64! + - name: metricId + type: String! + - name: projectId + type: String! + - name: sampleDate + type: Date! + - name: unit + type: String + graphql: + typeName: Oso_MetricsTimeseriesMetricsByProjectV0 + inputTypeName: Oso_MetricsTimeseriesMetricsByProjectV0Input + dataConnectorTypeMapping: + - dataConnectorName: oso_clickhouse + dataConnectorObjectType: metrics_timeseries_metrics_by_project_v0 + fieldMapping: + amount: + column: + name: amount + metricId: + column: + name: metric_id + projectId: + column: + name: project_id + sampleDate: + column: + name: sample_date + unit: + column: + name: unit + +--- +kind: TypePermissions +version: v1 +definition: + typeName: MetricsTimeseriesMetricsByProjectV0 + permissions: + - role: admin + output: + allowedFields: + - amount + - metricId + - projectId + - sampleDate + - unit + - role: anonymous + output: + allowedFields: + - amount + - metricId + - projectId + - sampleDate + - unit + +--- +kind: Model +version: v1 +definition: + name: MetricsTimeseriesMetricsByProjectV0 + objectType: MetricsTimeseriesMetricsByProjectV0 + source: + dataConnectorName: oso_clickhouse + collection: metrics_timeseries_metrics_by_project_v0 + filterExpressionType: MetricsTimeseriesMetricsByProjectV0BoolExp + orderableFields: + - fieldName: amount + orderByDirections: + enableAll: true + - fieldName: metricId + orderByDirections: + enableAll: true + - fieldName: projectId + orderByDirections: + enableAll: true + - fieldName: sampleDate + orderByDirections: + enableAll: true + - fieldName: unit + orderByDirections: + enableAll: true + graphql: + selectMany: + queryRootField: oso_timeseriesMetricsByProjectV0 + selectUniques: [] + orderByExpressionType: Oso_MetricsTimeseriesMetricsByProjectV0OrderBy + filterInputTypeName: Oso_MetricsTimeseriesMetricsByProjectV0FilterInput + aggregate: + queryRootField: oso_timeseriesMetricsByProjectV0Aggregate + aggregateExpression: MetricsTimeseriesMetricsByProjectV0AggExp + +--- +kind: ModelPermissions +version: v1 +definition: + modelName: MetricsTimeseriesMetricsByProjectV0 + permissions: + - role: admin + select: + filter: null + - role: anonymous + select: + filter: null + +--- +kind: BooleanExpressionType +version: v1 +definition: + name: MetricsTimeseriesMetricsByProjectV0BoolExp + operand: + object: + type: MetricsTimeseriesMetricsByProjectV0 + comparableFields: + - fieldName: amount + booleanExpressionType: Float64BoolExp + - fieldName: metricId + booleanExpressionType: StringBoolExp + - fieldName: projectId + booleanExpressionType: StringBoolExp + - fieldName: sampleDate + booleanExpressionType: DateBoolExp + - fieldName: unit + booleanExpressionType: StringBoolExp + comparableRelationships: [] + logicalOperators: + enable: true + isNull: + enable: true + graphql: + typeName: Oso_MetricsTimeseriesMetricsByProjectV0BoolExp + +--- +kind: AggregateExpression +version: v1 +definition: + name: MetricsTimeseriesMetricsByProjectV0AggExp + operand: + object: + aggregatedType: MetricsTimeseriesMetricsByProjectV0 + aggregatableFields: + - fieldName: amount + aggregateExpression: Float64AggExp + - fieldName: metricId + aggregateExpression: StringAggExp + - fieldName: projectId + aggregateExpression: StringAggExp + - fieldName: sampleDate + aggregateExpression: DateAggExp + - fieldName: unit + aggregateExpression: StringAggExp + count: + enable: true + graphql: + selectTypeName: Oso_MetricsTimeseriesMetricsByProjectV0AggExp + diff --git a/apps/hasura3/oso_subgraph/metadata/OnchainMetricsByProjectV1.hml b/apps/hasura3/oso_subgraph/metadata/OnchainMetricsByProjectV1.hml index 79039ca10..f4615bcb5 100644 --- a/apps/hasura3/oso_subgraph/metadata/OnchainMetricsByProjectV1.hml +++ b/apps/hasura3/oso_subgraph/metadata/OnchainMetricsByProjectV1.hml @@ -165,78 +165,6 @@ definition: - transactionCount - transactionCount6Months ---- -kind: ObjectBooleanExpressionType -version: v1 -definition: - name: OnchainMetricsByProjectV1BoolExp - objectType: OnchainMetricsByProjectV1 - dataConnectorName: oso_clickhouse - dataConnectorObjectType: onchain_metrics_by_project_v1 - comparableFields: - - fieldName: activeContractCount90Days - operators: - enableAll: true - - fieldName: addressCount - operators: - enableAll: true - - fieldName: addressCount90Days - operators: - enableAll: true - - fieldName: daysSinceFirstTransaction - operators: - enableAll: true - - fieldName: displayName - operators: - enableAll: true - - fieldName: eventSource - operators: - enableAll: true - - fieldName: gasFeesSum - operators: - enableAll: true - - fieldName: gasFeesSum6Months - operators: - enableAll: true - - fieldName: highActivityAddressCount90Days - operators: - enableAll: true - - fieldName: lowActivityAddressCount90Days - operators: - enableAll: true - - fieldName: mediumActivityAddressCount90Days - operators: - enableAll: true - - fieldName: multiProjectAddressCount90Days - operators: - enableAll: true - - fieldName: newAddressCount90Days - operators: - enableAll: true - - fieldName: projectId - operators: - enableAll: true - - fieldName: projectName - operators: - enableAll: true - - fieldName: projectNamespace - operators: - enableAll: true - - fieldName: projectSource - operators: - enableAll: true - - fieldName: returningAddressCount90Days - operators: - enableAll: true - - fieldName: transactionCount - operators: - enableAll: true - - fieldName: transactionCount6Months - operators: - enableAll: true - graphql: - typeName: Oso_OnchainMetricsByProjectV1BoolExp - --- kind: Model version: v1 @@ -313,6 +241,10 @@ definition: queryRootField: oso_onchainMetricsByProjectV1 selectUniques: [] orderByExpressionType: Oso_OnchainMetricsByProjectV1OrderBy + filterInputTypeName: Oso_OnchainMetricsByProjectV1FilterInput + aggregate: + queryRootField: oso_onchainMetricsByProjectV1Aggregate + aggregateExpression: OnchainMetricsByProjectV1AggExp --- kind: ModelPermissions @@ -326,3 +258,115 @@ definition: - role: anonymous select: filter: null + +--- +kind: BooleanExpressionType +version: v1 +definition: + name: OnchainMetricsByProjectV1BoolExp + operand: + object: + type: OnchainMetricsByProjectV1 + comparableFields: + - fieldName: activeContractCount90Days + booleanExpressionType: Float32BoolExp + - fieldName: addressCount + booleanExpressionType: Float32BoolExp + - fieldName: addressCount90Days + booleanExpressionType: Float32BoolExp + - fieldName: daysSinceFirstTransaction + booleanExpressionType: Float32BoolExp + - fieldName: displayName + booleanExpressionType: StringBoolExp + - fieldName: eventSource + booleanExpressionType: StringBoolExp + - fieldName: gasFeesSum + booleanExpressionType: Float32BoolExp + - fieldName: gasFeesSum6Months + booleanExpressionType: Float32BoolExp + - fieldName: highActivityAddressCount90Days + booleanExpressionType: Float32BoolExp + - fieldName: lowActivityAddressCount90Days + booleanExpressionType: Float32BoolExp + - fieldName: mediumActivityAddressCount90Days + booleanExpressionType: Float32BoolExp + - fieldName: multiProjectAddressCount90Days + booleanExpressionType: Float32BoolExp + - fieldName: newAddressCount90Days + booleanExpressionType: Float32BoolExp + - fieldName: projectId + booleanExpressionType: StringBoolExp + - fieldName: projectName + booleanExpressionType: StringBoolExp + - fieldName: projectNamespace + booleanExpressionType: StringBoolExp + - fieldName: projectSource + booleanExpressionType: StringBoolExp + - fieldName: returningAddressCount90Days + booleanExpressionType: Float32BoolExp + - fieldName: transactionCount + booleanExpressionType: Float32BoolExp + - fieldName: transactionCount6Months + booleanExpressionType: Float32BoolExp + comparableRelationships: [] + logicalOperators: + enable: true + isNull: + enable: true + graphql: + typeName: Oso_OnchainMetricsByProjectV1BoolExp + +--- +kind: AggregateExpression +version: v1 +definition: + name: OnchainMetricsByProjectV1AggExp + operand: + object: + aggregatedType: OnchainMetricsByProjectV1 + aggregatableFields: + - fieldName: activeContractCount90Days + aggregateExpression: Float32AggExp + - fieldName: addressCount + aggregateExpression: Float32AggExp + - fieldName: addressCount90Days + aggregateExpression: Float32AggExp + - fieldName: daysSinceFirstTransaction + aggregateExpression: Float32AggExp + - fieldName: displayName + aggregateExpression: StringAggExp + - fieldName: eventSource + aggregateExpression: StringAggExp + - fieldName: gasFeesSum + aggregateExpression: Float32AggExp + - fieldName: gasFeesSum6Months + aggregateExpression: Float32AggExp + - fieldName: highActivityAddressCount90Days + aggregateExpression: Float32AggExp + - fieldName: lowActivityAddressCount90Days + aggregateExpression: Float32AggExp + - fieldName: mediumActivityAddressCount90Days + aggregateExpression: Float32AggExp + - fieldName: multiProjectAddressCount90Days + aggregateExpression: Float32AggExp + - fieldName: newAddressCount90Days + aggregateExpression: Float32AggExp + - fieldName: projectId + aggregateExpression: StringAggExp + - fieldName: projectName + aggregateExpression: StringAggExp + - fieldName: projectNamespace + aggregateExpression: StringAggExp + - fieldName: projectSource + aggregateExpression: StringAggExp + - fieldName: returningAddressCount90Days + aggregateExpression: Float32AggExp + - fieldName: transactionCount + aggregateExpression: Float32AggExp + - fieldName: transactionCount6Months + aggregateExpression: Float32AggExp + count: + enable: true + graphql: + selectTypeName: Oso_OnchainMetricsByProjectV1AggExp + diff --git a/apps/hasura3/oso_subgraph/metadata/ProjectsByCollectionV1.hml b/apps/hasura3/oso_subgraph/metadata/ProjectsByCollectionV1.hml index b9910aafe..0634ad99f 100644 --- a/apps/hasura3/oso_subgraph/metadata/ProjectsByCollectionV1.hml +++ b/apps/hasura3/oso_subgraph/metadata/ProjectsByCollectionV1.hml @@ -81,42 +81,6 @@ definition: - projectNamespace - projectSource ---- -kind: ObjectBooleanExpressionType -version: v1 -definition: - name: ProjectsByCollectionV1BoolExp - objectType: ProjectsByCollectionV1 - dataConnectorName: oso_clickhouse - dataConnectorObjectType: projects_by_collection_v1 - comparableFields: - - fieldName: collectionId - operators: - enableAll: true - - fieldName: collectionName - operators: - enableAll: true - - fieldName: collectionNamespace - operators: - enableAll: true - - fieldName: collectionSource - operators: - enableAll: true - - fieldName: projectId - operators: - enableAll: true - - fieldName: projectName - operators: - enableAll: true - - fieldName: projectNamespace - operators: - enableAll: true - - fieldName: projectSource - operators: - enableAll: true - graphql: - typeName: Oso_ProjectsByCollectionV1BoolExp - --- kind: Model version: v1 @@ -157,6 +121,10 @@ definition: queryRootField: oso_projectsByCollectionV1 selectUniques: [] orderByExpressionType: Oso_ProjectsByCollectionV1OrderBy + filterInputTypeName: Oso_ProjectsByCollectionV1FilterInput + aggregate: + queryRootField: oso_projectsByCollectionV1Aggregate + aggregateExpression: ProjectsByCollectionV1AggExp --- kind: ModelPermissions @@ -170,3 +138,67 @@ definition: - role: anonymous select: filter: null + +--- +kind: BooleanExpressionType +version: v1 +definition: + name: ProjectsByCollectionV1BoolExp + operand: + object: + type: ProjectsByCollectionV1 + comparableFields: + - fieldName: collectionId + booleanExpressionType: StringBoolExp + - fieldName: collectionName + booleanExpressionType: StringBoolExp + - fieldName: collectionNamespace + booleanExpressionType: StringBoolExp + - fieldName: collectionSource + booleanExpressionType: StringBoolExp + - fieldName: projectId + booleanExpressionType: StringBoolExp + - fieldName: projectName + booleanExpressionType: StringBoolExp + - fieldName: projectNamespace + booleanExpressionType: StringBoolExp + - fieldName: projectSource + booleanExpressionType: StringBoolExp + comparableRelationships: [] + logicalOperators: + enable: true + isNull: + enable: true + graphql: + typeName: Oso_ProjectsByCollectionV1BoolExp + +--- +kind: AggregateExpression +version: v1 +definition: + name: ProjectsByCollectionV1AggExp + operand: + object: + aggregatedType: ProjectsByCollectionV1 + aggregatableFields: + - fieldName: collectionId + aggregateExpression: StringAggExp + - fieldName: collectionName + aggregateExpression: StringAggExp + - fieldName: collectionNamespace + aggregateExpression: StringAggExp + - fieldName: collectionSource + aggregateExpression: StringAggExp + - fieldName: projectId + aggregateExpression: StringAggExp + - fieldName: projectName + aggregateExpression: StringAggExp + - fieldName: projectNamespace + aggregateExpression: StringAggExp + - fieldName: projectSource + aggregateExpression: StringAggExp + count: + enable: true + graphql: + selectTypeName: Oso_ProjectsByCollectionV1AggExp + diff --git a/apps/hasura3/oso_subgraph/metadata/ProjectsV1.hml b/apps/hasura3/oso_subgraph/metadata/ProjectsV1.hml index 405c5e191..8fc35064d 100644 --- a/apps/hasura3/oso_subgraph/metadata/ProjectsV1.hml +++ b/apps/hasura3/oso_subgraph/metadata/ProjectsV1.hml @@ -67,36 +67,6 @@ definition: - projectNamespace - projectSource ---- -kind: ObjectBooleanExpressionType -version: v1 -definition: - name: ProjectsV1BoolExp - objectType: ProjectsV1 - dataConnectorName: oso_clickhouse - dataConnectorObjectType: projects_v1 - comparableFields: - - fieldName: description - operators: - enableAll: true - - fieldName: displayName - operators: - enableAll: true - - fieldName: projectId - operators: - enableAll: true - - fieldName: projectName - operators: - enableAll: true - - fieldName: projectNamespace - operators: - enableAll: true - - fieldName: projectSource - operators: - enableAll: true - graphql: - typeName: Oso_ProjectsV1BoolExp - --- kind: Model version: v1 @@ -131,6 +101,10 @@ definition: queryRootField: oso_projectsV1 selectUniques: [] orderByExpressionType: Oso_ProjectsV1OrderBy + filterInputTypeName: Oso_ProjectsV1FilterInput + aggregate: + queryRootField: oso_projectsV1Aggregate + aggregateExpression: ProjectsV1AggExp --- kind: ModelPermissions @@ -144,3 +118,59 @@ definition: - role: anonymous select: filter: null + +--- +kind: BooleanExpressionType +version: v1 +definition: + name: ProjectsV1BoolExp + operand: + object: + type: ProjectsV1 + comparableFields: + - fieldName: description + booleanExpressionType: StringBoolExp + - fieldName: displayName + booleanExpressionType: StringBoolExp + - fieldName: projectId + booleanExpressionType: StringBoolExp + - fieldName: projectName + booleanExpressionType: StringBoolExp + - fieldName: projectNamespace + booleanExpressionType: StringBoolExp + - fieldName: projectSource + booleanExpressionType: StringBoolExp + comparableRelationships: [] + logicalOperators: + enable: true + isNull: + enable: true + graphql: + typeName: Oso_ProjectsV1BoolExp + +--- +kind: AggregateExpression +version: v1 +definition: + name: ProjectsV1AggExp + operand: + object: + aggregatedType: ProjectsV1 + aggregatableFields: + - fieldName: description + aggregateExpression: StringAggExp + - fieldName: displayName + aggregateExpression: StringAggExp + - fieldName: projectId + aggregateExpression: StringAggExp + - fieldName: projectName + aggregateExpression: StringAggExp + - fieldName: projectNamespace + aggregateExpression: StringAggExp + - fieldName: projectSource + aggregateExpression: StringAggExp + count: + enable: true + graphql: + selectTypeName: Oso_ProjectsV1AggExp + diff --git a/apps/hasura3/oso_subgraph/metadata/TimeseriesEventsByArtifactV0.hml b/apps/hasura3/oso_subgraph/metadata/TimeseriesEventsByArtifactV0.hml index c6395a88f..745d7bc52 100644 --- a/apps/hasura3/oso_subgraph/metadata/TimeseriesEventsByArtifactV0.hml +++ b/apps/hasura3/oso_subgraph/metadata/TimeseriesEventsByArtifactV0.hml @@ -74,39 +74,6 @@ definition: - time - toArtifactId ---- -kind: ObjectBooleanExpressionType -version: v1 -definition: - name: TimeseriesEventsByArtifactV0BoolExp - objectType: TimeseriesEventsByArtifactV0 - dataConnectorName: oso_clickhouse - dataConnectorObjectType: timeseries_events_by_artifact_v0 - comparableFields: - - fieldName: amount - operators: - enableAll: true - - fieldName: eventSource - operators: - enableAll: true - - fieldName: eventSourceId - operators: - enableAll: true - - fieldName: eventType - operators: - enableAll: true - - fieldName: fromArtifactId - operators: - enableAll: true - - fieldName: time - operators: - enableAll: true - - fieldName: toArtifactId - operators: - enableAll: true - graphql: - typeName: Oso_TimeseriesEventsByArtifactV0BoolExp - --- kind: Model version: v1 @@ -144,6 +111,10 @@ definition: queryRootField: oso_timeseriesEventsByArtifactV0 selectUniques: [] orderByExpressionType: Oso_TimeseriesEventsByArtifactV0OrderBy + filterInputTypeName: Oso_TimeseriesEventsByArtifactV0FilterInput + aggregate: + queryRootField: oso_timeseriesEventsByArtifactV0Aggregate + aggregateExpression: TimeseriesEventsByArtifactV0AggExp --- kind: ModelPermissions @@ -157,3 +128,63 @@ definition: - role: anonymous select: filter: null + +--- +kind: BooleanExpressionType +version: v1 +definition: + name: TimeseriesEventsByArtifactV0BoolExp + operand: + object: + type: TimeseriesEventsByArtifactV0 + comparableFields: + - fieldName: amount + booleanExpressionType: Float32BoolExp + - fieldName: eventSource + booleanExpressionType: StringBoolExp + - fieldName: eventSourceId + booleanExpressionType: StringBoolExp + - fieldName: eventType + booleanExpressionType: StringBoolExp + - fieldName: fromArtifactId + booleanExpressionType: StringBoolExp + - fieldName: time + booleanExpressionType: DateTimeBoolExp + - fieldName: toArtifactId + booleanExpressionType: StringBoolExp + comparableRelationships: [] + logicalOperators: + enable: true + isNull: + enable: true + graphql: + typeName: Oso_TimeseriesEventsByArtifactV0BoolExp + +--- +kind: AggregateExpression +version: v1 +definition: + name: TimeseriesEventsByArtifactV0AggExp + operand: + object: + aggregatedType: TimeseriesEventsByArtifactV0 + aggregatableFields: + - fieldName: amount + aggregateExpression: Float32AggExp + - fieldName: eventSource + aggregateExpression: StringAggExp + - fieldName: eventSourceId + aggregateExpression: StringAggExp + - fieldName: eventType + aggregateExpression: StringAggExp + - fieldName: fromArtifactId + aggregateExpression: StringAggExp + - fieldName: time + aggregateExpression: DateTimeAggExp + - fieldName: toArtifactId + aggregateExpression: StringAggExp + count: + enable: true + graphql: + selectTypeName: Oso_TimeseriesEventsByArtifactV0AggExp + diff --git a/apps/hasura3/oso_subgraph/metadata/UsersV1.hml b/apps/hasura3/oso_subgraph/metadata/UsersV1.hml index 7e24ac744..3b616c8ac 100644 --- a/apps/hasura3/oso_subgraph/metadata/UsersV1.hml +++ b/apps/hasura3/oso_subgraph/metadata/UsersV1.hml @@ -74,39 +74,6 @@ definition: - userSource - userSourceId ---- -kind: ObjectBooleanExpressionType -version: v1 -definition: - name: UsersV1BoolExp - objectType: UsersV1 - dataConnectorName: oso_clickhouse - dataConnectorObjectType: users_v1 - comparableFields: - - fieldName: bio - operators: - enableAll: true - - fieldName: displayName - operators: - enableAll: true - - fieldName: profilePictureUrl - operators: - enableAll: true - - fieldName: url - operators: - enableAll: true - - fieldName: userId - operators: - enableAll: true - - fieldName: userSource - operators: - enableAll: true - - fieldName: userSourceId - operators: - enableAll: true - graphql: - typeName: Oso_UsersV1BoolExp - --- kind: Model version: v1 @@ -144,6 +111,10 @@ definition: queryRootField: oso_usersV1 selectUniques: [] orderByExpressionType: Oso_UsersV1OrderBy + filterInputTypeName: Oso_UsersV1FilterInput + aggregate: + queryRootField: oso_usersV1Aggregate + aggregateExpression: UsersV1AggExp --- kind: ModelPermissions @@ -157,3 +128,63 @@ definition: - role: anonymous select: filter: null + +--- +kind: BooleanExpressionType +version: v1 +definition: + name: UsersV1BoolExp + operand: + object: + type: UsersV1 + comparableFields: + - fieldName: bio + booleanExpressionType: StringBoolExp + - fieldName: displayName + booleanExpressionType: StringBoolExp + - fieldName: profilePictureUrl + booleanExpressionType: StringBoolExp + - fieldName: url + booleanExpressionType: StringBoolExp + - fieldName: userId + booleanExpressionType: StringBoolExp + - fieldName: userSource + booleanExpressionType: StringBoolExp + - fieldName: userSourceId + booleanExpressionType: StringBoolExp + comparableRelationships: [] + logicalOperators: + enable: true + isNull: + enable: true + graphql: + typeName: Oso_UsersV1BoolExp + +--- +kind: AggregateExpression +version: v1 +definition: + name: UsersV1AggExp + operand: + object: + aggregatedType: UsersV1 + aggregatableFields: + - fieldName: bio + aggregateExpression: StringAggExp + - fieldName: displayName + aggregateExpression: StringAggExp + - fieldName: profilePictureUrl + aggregateExpression: StringAggExp + - fieldName: url + aggregateExpression: StringAggExp + - fieldName: userId + aggregateExpression: StringAggExp + - fieldName: userSource + aggregateExpression: StringAggExp + - fieldName: userSourceId + aggregateExpression: StringAggExp + count: + enable: true + graphql: + selectTypeName: Oso_UsersV1AggExp + diff --git a/apps/hasura3/oso_subgraph/metadata/oso_clickhouse-types.hml b/apps/hasura3/oso_subgraph/metadata/oso_clickhouse-types.hml index d94895259..6a6a2acec 100644 --- a/apps/hasura3/oso_subgraph/metadata/oso_clickhouse-types.hml +++ b/apps/hasura3/oso_subgraph/metadata/oso_clickhouse-types.hml @@ -97,3 +97,498 @@ definition: representation: Float64 graphql: comparisonExpressionTypeName: Oso_Float64ComparisonExp + +--- +kind: ScalarType +version: v1 +definition: + name: Int8 + graphql: + typeName: Oso_Int8 + +--- +kind: ScalarType +version: v1 +definition: + name: UInt32 + graphql: + typeName: Oso_UInt32 + +--- +kind: DataConnectorScalarRepresentation +version: v1 +definition: + dataConnectorName: oso_clickhouse + dataConnectorScalarType: Int8 + representation: Int8 + graphql: + comparisonExpressionTypeName: Oso_Int8ComparisonExp + +--- +kind: DataConnectorScalarRepresentation +version: v1 +definition: + dataConnectorName: oso_clickhouse + dataConnectorScalarType: UInt32 + representation: UInt32 + graphql: + comparisonExpressionTypeName: Oso_UInt32ComparisonExp + +--- +kind: BooleanExpressionType +version: v1 +definition: + name: StringBoolExp + operand: + scalar: + type: String + comparisonOperators: + - name: _eq + argumentType: String! + - name: _gt + argumentType: String! + - name: _gte + argumentType: String! + - name: _ilike + argumentType: String! + - name: _in + argumentType: String! + - name: _like + argumentType: String! + - name: _lt + argumentType: String! + - name: _lte + argumentType: String! + - name: _match + argumentType: String! + - name: _neq + argumentType: String! + - name: _nilike + argumentType: String! + - name: _nin + argumentType: "[String!]!" + - name: _nlike + argumentType: String! + dataConnectorOperatorMapping: + - dataConnectorName: oso_clickhouse + dataConnectorScalarType: String + operatorMapping: {} + logicalOperators: + enable: true + isNull: + enable: true + graphql: + typeName: Oso_StringBoolExp + +--- +kind: AggregateExpression +version: v1 +definition: + name: StringAggExp + operand: + scalar: + aggregatedType: String + aggregationFunctions: [] + dataConnectorAggregationFunctionMapping: + - dataConnectorName: oso_clickhouse + dataConnectorScalarType: String + functionMapping: {} + count: + enable: true + countDistinct: + enable: true + graphql: + selectTypeName: Oso_StringAggExp + +--- +kind: BooleanExpressionType +version: v1 +definition: + name: Float32BoolExp + operand: + scalar: + type: Float32 + comparisonOperators: + - name: _eq + argumentType: Float32! + - name: _gt + argumentType: Float32! + - name: _gte + argumentType: Float32! + - name: _in + argumentType: Float32! + - name: _lt + argumentType: Float32! + - name: _lte + argumentType: Float32! + - name: _neq + argumentType: Float32! + - name: _nin + argumentType: "[Float32!]!" + dataConnectorOperatorMapping: + - dataConnectorName: oso_clickhouse + dataConnectorScalarType: Float32 + operatorMapping: {} + logicalOperators: + enable: true + isNull: + enable: true + graphql: + typeName: Oso_Float32BoolExp + +--- +kind: BooleanExpressionType +version: v1 +definition: + name: DateTimeBoolExp + operand: + scalar: + type: DateTime + comparisonOperators: + - name: _eq + argumentType: DateTime! + - name: _gt + argumentType: DateTime! + - name: _gte + argumentType: DateTime! + - name: _in + argumentType: DateTime! + - name: _lt + argumentType: DateTime! + - name: _lte + argumentType: DateTime! + - name: _neq + argumentType: DateTime! + - name: _nin + argumentType: "[DateTime!]!" + dataConnectorOperatorMapping: + - dataConnectorName: oso_clickhouse + dataConnectorScalarType: DateTime + operatorMapping: {} + logicalOperators: + enable: true + isNull: + enable: true + graphql: + typeName: Oso_DateTimeBoolExp + +--- +kind: BooleanExpressionType +version: v1 +definition: + name: Float64BoolExp + operand: + scalar: + type: Float64 + comparisonOperators: + - name: _eq + argumentType: Float64! + - name: _gt + argumentType: Float64! + - name: _gte + argumentType: Float64! + - name: _in + argumentType: Float64! + - name: _lt + argumentType: Float64! + - name: _lte + argumentType: Float64! + - name: _neq + argumentType: Float64! + - name: _nin + argumentType: "[Float64!]!" + dataConnectorOperatorMapping: + - dataConnectorName: oso_clickhouse + dataConnectorScalarType: Float64 + operatorMapping: {} + logicalOperators: + enable: true + isNull: + enable: true + graphql: + typeName: Oso_Float64BoolExp + +--- +kind: AggregateExpression +version: v1 +definition: + name: Float32AggExp + operand: + scalar: + aggregatedType: Float32 + aggregationFunctions: + - name: avg + returnType: Float64! + - name: max + returnType: Float64! + - name: min + returnType: Float32! + - name: stddev_pop + returnType: Float32! + - name: stddev_samp + returnType: Float32! + - name: sum + returnType: Float32! + - name: var_pop + returnType: Float32! + - name: var_samp + returnType: Float32! + dataConnectorAggregationFunctionMapping: + - dataConnectorName: oso_clickhouse + dataConnectorScalarType: Float32 + functionMapping: + avg: + name: avg + max: + name: max + min: + name: min + stddev_pop: + name: stddev_pop + stddev_samp: + name: stddev_samp + sum: + name: sum + var_pop: + name: var_pop + var_samp: + name: var_samp + count: + enable: true + countDistinct: + enable: true + graphql: + selectTypeName: Oso_Float32AggExp + +--- +kind: AggregateExpression +version: v1 +definition: + name: DateTimeAggExp + operand: + scalar: + aggregatedType: DateTime + aggregationFunctions: + - name: max + returnType: DateTime! + - name: min + returnType: DateTime! + dataConnectorAggregationFunctionMapping: + - dataConnectorName: oso_clickhouse + dataConnectorScalarType: DateTime + functionMapping: + max: + name: max + min: + name: min + count: + enable: true + countDistinct: + enable: true + graphql: + selectTypeName: Oso_DateTimeAggExp + +--- +kind: BooleanExpressionType +version: v1 +definition: + name: DateBoolExp + operand: + scalar: + type: Date + comparisonOperators: + - name: _eq + argumentType: Date! + - name: _gt + argumentType: Date! + - name: _gte + argumentType: Date! + - name: _in + argumentType: Date! + - name: _lt + argumentType: Date! + - name: _lte + argumentType: Date! + - name: _neq + argumentType: Date! + - name: _nin + argumentType: "[Date!]!" + dataConnectorOperatorMapping: + - dataConnectorName: oso_clickhouse + dataConnectorScalarType: Date + operatorMapping: {} + logicalOperators: + enable: true + isNull: + enable: true + graphql: + typeName: Oso_DateBoolExp + +--- +kind: AggregateExpression +version: v1 +definition: + name: Float64AggExp + operand: + scalar: + aggregatedType: Float64 + aggregationFunctions: + - name: avg + returnType: Float64! + - name: max + returnType: Float64! + - name: min + returnType: Float64! + - name: stddev_pop + returnType: Float64! + - name: stddev_samp + returnType: Float64! + - name: sum + returnType: Float64! + - name: var_pop + returnType: Float64! + - name: var_samp + returnType: Float64! + dataConnectorAggregationFunctionMapping: + - dataConnectorName: oso_clickhouse + dataConnectorScalarType: Float64 + functionMapping: + avg: + name: avg + max: + name: max + min: + name: min + stddev_pop: + name: stddev_pop + stddev_samp: + name: stddev_samp + sum: + name: sum + var_pop: + name: var_pop + var_samp: + name: var_samp + count: + enable: true + countDistinct: + enable: true + graphql: + selectTypeName: Oso_Float64AggExp + +--- +kind: AggregateExpression +version: v1 +definition: + name: DateAggExp + operand: + scalar: + aggregatedType: Date + aggregationFunctions: + - name: max + returnType: Date! + - name: min + returnType: Date! + dataConnectorAggregationFunctionMapping: + - dataConnectorName: oso_clickhouse + dataConnectorScalarType: Date + functionMapping: + max: + name: max + min: + name: min + count: + enable: true + countDistinct: + enable: true + graphql: + selectTypeName: Oso_DateAggExp + +--- +kind: BooleanExpressionType +version: v1 +definition: + name: Int64BoolExp + operand: + scalar: + type: Int64 + comparisonOperators: + - name: _eq + argumentType: Int64! + - name: _gt + argumentType: Int64! + - name: _gte + argumentType: Int64! + - name: _in + argumentType: Int64! + - name: _lt + argumentType: Int64! + - name: _lte + argumentType: Int64! + - name: _neq + argumentType: Int64! + - name: _nin + argumentType: "[Int64!]!" + dataConnectorOperatorMapping: + - dataConnectorName: oso_clickhouse + dataConnectorScalarType: Int64 + operatorMapping: {} + logicalOperators: + enable: true + isNull: + enable: true + graphql: + typeName: Oso_Int64BoolExp + +--- +kind: AggregateExpression +version: v1 +definition: + name: Int64AggExp + operand: + scalar: + aggregatedType: Int64 + aggregationFunctions: + - name: avg + returnType: Float64! + - name: max + returnType: Int64! + - name: min + returnType: Int64! + - name: stddev_pop + returnType: Float64! + - name: stddev_samp + returnType: Float64! + - name: sum + returnType: Int64! + - name: var_pop + returnType: Float64! + - name: var_samp + returnType: Float64! + dataConnectorAggregationFunctionMapping: + - dataConnectorName: oso_clickhouse + dataConnectorScalarType: Int64 + functionMapping: + avg: + name: avg + max: + name: max + min: + name: min + stddev_pop: + name: stddev_pop + stddev_samp: + name: stddev_samp + sum: + name: sum + var_pop: + name: var_pop + var_samp: + name: var_samp + count: + enable: true + countDistinct: + enable: true + graphql: + selectTypeName: Oso_Int64AggExp + diff --git a/apps/hasura3/oso_subgraph/metadata/oso_clickhouse.hml b/apps/hasura3/oso_subgraph/metadata/oso_clickhouse.hml index 641051e26..c58ac306c 100644 --- a/apps/hasura3/oso_subgraph/metadata/oso_clickhouse.hml +++ b/apps/hasura3/oso_subgraph/metadata/oso_clickhouse.hml @@ -1,3 +1,4 @@ +--- kind: DataConnectorLink version: v1 definition: @@ -259,6 +260,79 @@ definition: element_type: type: named name: Float64 + Int8: + representation: + type: int8 + aggregate_functions: + avg: + result_type: + type: named + name: Float64 + max: + result_type: + type: named + name: Int8 + min: + result_type: + type: named + name: Int8 + stddev_pop: + result_type: + type: named + name: Float64 + stddev_samp: + result_type: + type: named + name: Float64 + sum: + result_type: + type: named + name: Int64 + var_pop: + result_type: + type: named + name: Float64 + var_samp: + result_type: + type: named + name: Float64 + comparison_operators: + _eq: + type: equal + _gt: + type: custom + argument_type: + type: named + name: Int8 + _gte: + type: custom + argument_type: + type: named + name: Int8 + _in: + type: in + _lt: + type: custom + argument_type: + type: named + name: Int8 + _lte: + type: custom + argument_type: + type: named + name: Int8 + _neq: + type: custom + argument_type: + type: named + name: Int8 + _nin: + type: custom + argument_type: + type: array + element_type: + type: named + name: Int8 Int64: representation: type: int64 @@ -398,6 +472,79 @@ definition: argument_type: type: named name: String + UInt32: + representation: + type: int64 + aggregate_functions: + avg: + result_type: + type: named + name: Float64 + max: + result_type: + type: named + name: UInt32 + min: + result_type: + type: named + name: UInt32 + stddev_pop: + result_type: + type: named + name: Float64 + stddev_samp: + result_type: + type: named + name: Float64 + sum: + result_type: + type: named + name: UInt64 + var_pop: + result_type: + type: named + name: Float64 + var_samp: + result_type: + type: named + name: Float64 + comparison_operators: + _eq: + type: equal + _gt: + type: custom + argument_type: + type: named + name: UInt32 + _gte: + type: custom + argument_type: + type: named + name: UInt32 + _in: + type: in + _lt: + type: custom + argument_type: + type: named + name: UInt32 + _lte: + type: custom + argument_type: + type: named + name: UInt32 + _neq: + type: custom + argument_type: + type: named + name: UInt32 + _nin: + type: custom + argument_type: + type: array + element_type: + type: named + name: UInt32 object_types: artifacts_by_project_v1: description: "" @@ -715,87 +862,67 @@ definition: type: type: named name: String - metrics__dev_events_daily_to_artifact: + metrics__test_active_addresses_to_artifact_daily: description: "" fields: amount: type: type: named name: Float64 - bucket_day: - type: - type: named - name: Date event_source: type: type: named name: String - event_type: + from_artifact_id: type: type: named name: String - from_artifact_id: + metric: type: type: named name: String + metrics_sample_date: + type: + type: named + name: Date to_artifact_id: type: type: named name: String - metrics__dev_metrics_v0: + metrics__test_active_addresses_to_artifact_monthly: description: "" fields: - aggregation_function: - type: - type: nullable - underlying_type: - type: named - name: String - definition_ref: - type: - type: nullable - underlying_type: - type: named - name: String - description: + amount: type: - type: nullable - underlying_type: - type: named - name: String - display_name: + type: named + name: Float64 + event_source: type: type: named name: String - metric_id: + from_artifact_id: type: type: named name: String - metric_name: + metric: type: type: named name: String - metric_source: + metrics_sample_date: type: type: named - name: String - raw_definition: + name: Date + to_artifact_id: type: - type: nullable - underlying_type: - type: named - name: String - metrics__dev_timeseries_metrics_by_artifact_over_30_days: + type: named + name: String + metrics__test_active_addresses_to_artifact_weekly: description: "" fields: amount: type: type: named name: Float64 - bucket_day: - type: - type: named - name: Date event_source: type: type: named @@ -808,120 +935,102 @@ definition: type: type: named name: String + metrics_sample_date: + type: + type: named + name: Date to_artifact_id: type: type: named name: String - metrics__dev_timeseries_metrics_by_artifact_v0: + metrics__test_active_addresses_to_collection_daily: description: "" fields: amount: type: type: named name: Float64 - artifact_id: + event_source: type: type: named name: String - metric_id: + from_artifact_id: type: type: named name: String - sample_date: + metric: + type: + type: named + name: String + metrics_sample_date: type: type: named name: Date - unit: + to_collection_id: type: - type: nullable - underlying_type: - type: named - name: String - metrics_events_daily_to_artifact: + type: named + name: String + metrics__test_active_addresses_to_collection_monthly: description: "" fields: amount: type: type: named name: Float64 - bucket_day: - type: - type: named - name: Date event_source: type: type: named name: String - event_type: + from_artifact_id: type: type: named name: String - from_artifact_id: + metric: type: type: named name: String - to_artifact_id: + metrics_sample_date: + type: + type: named + name: Date + to_collection_id: type: type: named name: String - metrics_metrics_v0: + metrics__test_active_addresses_to_collection_weekly: description: "" fields: - aggregation_function: - type: - type: nullable - underlying_type: - type: named - name: String - definition_ref: - type: - type: nullable - underlying_type: - type: named - name: String - description: + amount: type: - type: nullable - underlying_type: - type: named - name: String - display_name: + type: named + name: Float64 + event_source: type: type: named name: String - metric_id: + from_artifact_id: type: type: named name: String - metric_name: + metric: type: type: named name: String - metric_namespace: + metrics_sample_date: type: type: named - name: String - metric_source: + name: Date + to_collection_id: type: type: named name: String - raw_definition: - type: - type: nullable - underlying_type: - type: named - name: String - metrics_timeseries_metrics_by_artifact_over_30_days: + metrics__test_active_addresses_to_project_daily: description: "" fields: amount: type: type: named name: Float64 - bucket_day: - type: - type: named - name: Date event_source: type: type: named @@ -934,1539 +1043,1136 @@ definition: type: type: named name: String - to_artifact_id: + metrics_sample_date: + type: + type: named + name: Date + to_project_id: type: type: named name: String - metrics_timeseries_metrics_by_artifact_v0: + metrics__test_active_addresses_to_project_monthly: description: "" fields: amount: type: type: named name: Float64 - artifact_id: + event_source: type: type: named name: String - metric_id: + from_artifact_id: type: type: named name: String - sample_date: + metric: type: type: named - name: Date - unit: - type: - type: nullable - underlying_type: - type: named - name: String - onchain_metrics_by_project_v1: - description: "" - fields: - active_contract_count_90_days: + name: String + metrics_sample_date: type: type: named - name: Float32 - address_count: + name: Date + to_project_id: type: type: named - name: Float32 - address_count_90_days: + name: String + metrics__test_active_addresses_to_project_weekly: + description: "" + fields: + amount: type: type: named - name: Float32 - days_since_first_transaction: + name: Float64 + event_source: type: type: named - name: Float32 - display_name: + name: String + from_artifact_id: type: type: named name: String - event_source: + metric: type: type: named name: String - gas_fees_sum: + metrics_sample_date: type: type: named - name: Float32 - gas_fees_sum_6_months: + name: Date + to_project_id: type: type: named - name: Float32 - high_activity_address_count_90_days: + name: String + metrics__test_commits_to_artifact_daily: + description: "" + fields: + amount: type: type: named - name: Float32 - low_activity_address_count_90_days: + name: Float64 + event_source: type: type: named - name: Float32 - medium_activity_address_count_90_days: + name: String + from_artifact_id: type: type: named - name: Float32 - multi_project_address_count_90_days: + name: String + metric: type: type: named - name: Float32 - new_address_count_90_days: + name: String + metrics_sample_date: type: type: named - name: Float32 - project_id: + name: Date + to_artifact_id: type: type: named name: String - project_name: + metrics__test_commits_to_artifact_monthly: + description: "" + fields: + amount: type: type: named - name: String - project_namespace: + name: Float64 + event_source: type: type: named name: String - project_source: + from_artifact_id: type: type: named name: String - returning_address_count_90_days: + metric: type: type: named - name: Float32 - transaction_count: + name: String + metrics_sample_date: type: type: named - name: Float32 - transaction_count_6_months: + name: Date + to_artifact_id: type: type: named - name: Float32 - projects_by_collection_v1: + name: String + metrics__test_commits_to_artifact_weekly: description: "" fields: - collection_id: + amount: + type: + type: named + name: Float64 + event_source: type: type: named name: String - collection_name: + from_artifact_id: type: type: named name: String - collection_namespace: + metric: type: type: named name: String - collection_source: + metrics_sample_date: + type: + type: named + name: Date + to_artifact_id: type: type: named name: String - project_id: + metrics__test_commits_to_collection_daily: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: type: type: named name: String - project_name: + from_artifact_id: type: type: named name: String - project_namespace: + metric: type: type: named name: String - project_source: + metrics_sample_date: + type: + type: named + name: Date + to_collection_id: type: type: named name: String - projects_v1: + metrics__test_commits_to_collection_monthly: description: "" fields: - description: + amount: type: type: named - name: String - display_name: + name: Float64 + event_source: type: type: named name: String - project_id: + from_artifact_id: type: type: named name: String - project_name: + metric: type: type: named name: String - project_namespace: + metrics_sample_date: type: type: named - name: String - project_source: + name: Date + to_collection_id: type: type: named name: String - sqlmesh__metrics_metrics__events_daily_to_artifact__753507400: + metrics__test_commits_to_collection_weekly: description: "" fields: amount: type: type: named - name: Int64 - bucket_day: - type: - type: named - name: Date + name: Float64 event_source: type: type: named name: String - event_type: + from_artifact_id: type: type: named name: String - from_artifact_id: + metric: type: type: named name: String - to_artifact_id: + metrics_sample_date: + type: + type: named + name: Date + to_collection_id: type: type: named name: String - sqlmesh__metrics_metrics__events_daily_to_artifact__753507400__temp: + metrics__test_commits_to_project_daily: description: "" fields: amount: type: type: named - name: Int64 - bucket_day: - type: - type: named - name: Date + name: Float64 event_source: type: type: named name: String - event_type: + from_artifact_id: type: type: named name: String - from_artifact_id: + metric: type: type: named name: String - to_artifact_id: + metrics_sample_date: + type: + type: named + name: Date + to_project_id: type: type: named name: String - sqlmesh__metrics_metrics__events_daily_to_artifact__1469322421: + metrics__test_commits_to_project_monthly: description: "" fields: amount: type: type: named name: Float64 - bucket_day: - type: - type: named - name: Date event_source: type: type: named name: String - event_type: + from_artifact_id: type: type: named name: String - from_artifact_id: + metric: type: type: named name: String - to_artifact_id: + metrics_sample_date: + type: + type: named + name: Date + to_project_id: type: type: named name: String - sqlmesh__metrics_metrics__events_daily_to_artifact__1469322421__temp: + metrics__test_commits_to_project_weekly: description: "" fields: amount: type: type: named name: Float64 - bucket_day: - type: - type: named - name: Date event_source: type: type: named name: String - event_type: + from_artifact_id: type: type: named name: String - from_artifact_id: + metric: type: type: named name: String - to_artifact_id: + metrics_sample_date: + type: + type: named + name: Date + to_project_id: type: type: named name: String - sqlmesh__metrics_metrics__metrics_v0__472213919: + metrics__test_contributor_classifications_to_artifact_over_30_day: description: "" fields: - aggregation_function: - type: - type: nullable - underlying_type: - type: named - name: String - definition_ref: - type: - type: nullable - underlying_type: - type: named - name: String - description: + amount: type: - type: nullable - underlying_type: - type: named - name: String - display_name: + type: named + name: Float64 + event_source: type: type: named name: String - metric_id: + from_artifact_id: type: type: named name: String - metric_name: + metric: type: type: named name: String - metric_namespace: + metrics_sample_date: type: type: named - name: String - metric_source: + name: Date + to_artifact_id: type: type: named name: String - raw_definition: - type: - type: nullable - underlying_type: - type: named - name: String - sqlmesh__metrics_metrics__metrics_v0__472213919__temp: + metrics__test_contributor_classifications_to_artifact_over_60_day: description: "" fields: - aggregation_function: - type: - type: nullable - underlying_type: - type: named - name: String - definition_ref: - type: - type: nullable - underlying_type: - type: named - name: String - description: + amount: type: - type: nullable - underlying_type: - type: named - name: String - display_name: + type: named + name: Float64 + event_source: type: type: named name: String - metric_id: + from_artifact_id: type: type: named name: String - metric_name: + metric: type: type: named name: String - metric_namespace: + metrics_sample_date: type: type: named - name: String - metric_source: + name: Date + to_artifact_id: type: type: named name: String - raw_definition: - type: - type: nullable - underlying_type: - type: named - name: String - sqlmesh__metrics_metrics__metrics_v0__698231123: + metrics__test_contributor_classifications_to_artifact_over_90_day: description: "" fields: - aggregation_function: - type: - type: nullable - underlying_type: - type: named - name: String - definition_ref: - type: - type: nullable - underlying_type: - type: named - name: String - description: + amount: type: - type: nullable - underlying_type: - type: named - name: String - display_name: + type: named + name: Float64 + event_source: type: type: named name: String - metric_id: + from_artifact_id: type: type: named name: String - metric_name: + metric: type: type: named name: String - metric_source: + metrics_sample_date: type: type: named - name: String - raw_definition: + name: Date + to_artifact_id: type: - type: nullable - underlying_type: - type: named - name: String - sqlmesh__metrics_metrics__metrics_v0__698231123__temp: + type: named + name: String + metrics__test_contributor_classifications_to_collection_over_30_day: description: "" fields: - aggregation_function: - type: - type: nullable - underlying_type: - type: named - name: String - definition_ref: - type: - type: nullable - underlying_type: - type: named - name: String - description: + amount: type: - type: nullable - underlying_type: - type: named - name: String - display_name: + type: named + name: Float64 + event_source: type: type: named name: String - metric_id: + from_artifact_id: type: type: named name: String - metric_name: + metric: type: type: named name: String - metric_source: + metrics_sample_date: type: type: named - name: String - raw_definition: + name: Date + to_collection_id: type: - type: nullable - underlying_type: - type: named - name: String - sqlmesh__metrics_metrics__metrics_v0__741092249: + type: named + name: String + metrics__test_contributor_classifications_to_collection_over_60_day: description: "" fields: - aggregation_function: - type: - type: nullable - underlying_type: - type: named - name: String - definition_ref: - type: - type: nullable - underlying_type: - type: named - name: String - description: + amount: type: - type: nullable - underlying_type: - type: named - name: String - display_name: + type: named + name: Float64 + event_source: type: type: named name: String - metric_id: + from_artifact_id: type: type: named name: String - metric_name: + metric: type: type: named name: String - metric_source: + metrics_sample_date: type: type: named - name: String - raw_definition: + name: Date + to_collection_id: type: - type: nullable - underlying_type: - type: named - name: String - sqlmesh__metrics_metrics__metrics_v0__741092249__temp: + type: named + name: String + metrics__test_contributor_classifications_to_collection_over_90_day: description: "" fields: - aggregation_function: - type: - type: nullable - underlying_type: - type: named - name: String - definition_ref: - type: - type: nullable - underlying_type: - type: named - name: String - description: + amount: type: - type: nullable - underlying_type: - type: named - name: String - display_name: + type: named + name: Float64 + event_source: type: type: named name: String - metric_id: + from_artifact_id: type: type: named name: String - metric_name: + metric: type: type: named name: String - metric_source: + metrics_sample_date: type: type: named - name: String - raw_definition: + name: Date + to_collection_id: type: - type: nullable - underlying_type: - type: named - name: String - sqlmesh__metrics_metrics__metrics_v0__885103174: + type: named + name: String + metrics__test_contributor_classifications_to_project_over_30_day: description: "" fields: - aggregation_function: + amount: type: type: named - name: String - definition_ref: + name: Float64 + event_source: type: type: named name: String - description: + from_artifact_id: type: type: named name: String - display_name: + metric: type: type: named name: String - metric_id: + metrics_sample_date: + type: + type: named + name: Date + to_project_id: type: type: named name: String - metric_name: + metrics__test_contributor_classifications_to_project_over_60_day: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: type: type: named name: String - metric_namespace: + from_artifact_id: type: type: named name: String - metric_source: + metric: type: type: named name: String - raw_definition: + metrics_sample_date: type: - type: nullable - underlying_type: - type: named - name: String - sqlmesh__metrics_metrics__metrics_v0__885103174__temp: + type: named + name: Date + to_project_id: + type: + type: named + name: String + metrics__test_contributor_classifications_to_project_over_90_day: description: "" fields: - aggregation_function: + amount: type: type: named - name: String - definition_ref: + name: Float64 + event_source: type: type: named name: String - description: + from_artifact_id: type: type: named name: String - display_name: + metric: type: type: named name: String - metric_id: + metrics_sample_date: + type: + type: named + name: Date + to_project_id: type: type: named name: String - metric_name: + metrics__test_developer_active_days_to_artifact_over_30_day: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: type: type: named name: String - metric_namespace: + from_artifact_id: type: type: named name: String - metric_source: + metric: type: type: named name: String - raw_definition: + metrics_sample_date: type: - type: nullable - underlying_type: - type: named - name: String - sqlmesh__metrics_metrics__metrics_v0__1027447929: + type: named + name: Date + to_artifact_id: + type: + type: named + name: String + metrics__test_developer_active_days_to_artifact_over_60_day: description: "" fields: - aggregation_function: - type: - type: nullable - underlying_type: - type: named - name: String - definition_ref: - type: - type: nullable - underlying_type: - type: named - name: String - description: + amount: type: - type: nullable - underlying_type: - type: named - name: String - display_name: + type: named + name: Float64 + event_source: type: type: named name: String - metric_id: + from_artifact_id: type: type: named name: String - metric_name: + metric: type: type: named name: String - metric_namespace: + metrics_sample_date: type: type: named - name: String - metric_source: + name: Date + to_artifact_id: type: type: named name: String - raw_definition: - type: - type: nullable - underlying_type: - type: named - name: String - sqlmesh__metrics_metrics__metrics_v0__1027447929__temp: + metrics__test_developer_active_days_to_artifact_over_90_day: description: "" fields: - aggregation_function: - type: - type: nullable - underlying_type: - type: named - name: String - definition_ref: - type: - type: nullable - underlying_type: - type: named - name: String - description: + amount: type: - type: nullable - underlying_type: - type: named - name: String - display_name: + type: named + name: Float64 + event_source: type: type: named name: String - metric_id: + from_artifact_id: type: type: named name: String - metric_name: + metric: type: type: named name: String - metric_namespace: + metrics_sample_date: type: type: named - name: String - metric_source: + name: Date + to_artifact_id: type: type: named name: String - raw_definition: - type: - type: nullable - underlying_type: - type: named - name: String - sqlmesh__metrics_metrics__metrics_v0__1122994148: + metrics__test_developer_active_days_to_collection_over_30_day: description: "" fields: - aggregation_function: - type: - type: nullable - underlying_type: - type: named - name: String - definition_ref: - type: - type: nullable - underlying_type: - type: named - name: String - description: + amount: type: - type: nullable - underlying_type: - type: named - name: String - display_name: + type: named + name: Float64 + event_source: type: type: named name: String - metric_id: + from_artifact_id: type: type: named name: String - metric_name: + metric: type: type: named name: String - metric_source: + metrics_sample_date: type: type: named - name: String - raw_definition: + name: Date + to_collection_id: type: - type: nullable - underlying_type: - type: named - name: String - sqlmesh__metrics_metrics__metrics_v0__1122994148__temp: + type: named + name: String + metrics__test_developer_active_days_to_collection_over_60_day: description: "" fields: - aggregation_function: - type: - type: nullable - underlying_type: - type: named - name: String - definition_ref: - type: - type: nullable - underlying_type: - type: named - name: String - description: + amount: type: - type: nullable - underlying_type: - type: named - name: String - display_name: + type: named + name: Float64 + event_source: type: type: named name: String - metric_id: + from_artifact_id: type: type: named name: String - metric_name: + metric: type: type: named name: String - metric_source: + metrics_sample_date: type: type: named - name: String - raw_definition: + name: Date + to_collection_id: type: - type: nullable - underlying_type: - type: named - name: String - sqlmesh__metrics_metrics__metrics_v0__1931009280: + type: named + name: String + metrics__test_developer_active_days_to_collection_over_90_day: description: "" fields: - aggregation_function: - type: - type: nullable - underlying_type: - type: named - name: String - definition_ref: - type: - type: nullable - underlying_type: - type: named - name: String - description: + amount: type: - type: nullable - underlying_type: - type: named - name: String - display_name: + type: named + name: Float64 + event_source: type: type: named name: String - metric_id: + from_artifact_id: type: type: named name: String - metric_name: + metric: type: type: named name: String - metric_namespace: + metrics_sample_date: type: type: named - name: String - metric_source: + name: Date + to_collection_id: type: type: named name: String - raw_definition: - type: - type: nullable - underlying_type: - type: named - name: String - sqlmesh__metrics_metrics__metrics_v0__1931009280__temp: + metrics__test_developer_active_days_to_project_over_30_day: description: "" fields: - aggregation_function: - type: - type: nullable - underlying_type: - type: named - name: String - definition_ref: - type: - type: nullable - underlying_type: - type: named - name: String - description: + amount: type: - type: nullable - underlying_type: - type: named - name: String - display_name: + type: named + name: Float64 + event_source: type: type: named name: String - metric_id: + from_artifact_id: type: type: named name: String - metric_name: + metric: type: type: named name: String - metric_namespace: + metrics_sample_date: type: type: named - name: String - metric_source: + name: Date + to_project_id: type: type: named name: String - raw_definition: - type: - type: nullable - underlying_type: - type: named - name: String - sqlmesh__metrics_metrics__metrics_v0__1972836302: + metrics__test_developer_active_days_to_project_over_60_day: description: "" fields: - aggregation_function: - type: - type: nullable - underlying_type: - type: named - name: String - definition_ref: - type: - type: nullable - underlying_type: - type: named - name: String - description: + amount: type: - type: nullable - underlying_type: - type: named - name: String - display_name: + type: named + name: Float64 + event_source: type: type: named name: String - metric_id: + from_artifact_id: type: type: named name: String - metric_name: + metric: type: type: named name: String - metric_namespace: + metrics_sample_date: type: type: named - name: String - metric_source: + name: Date + to_project_id: type: type: named name: String - raw_definition: - type: - type: nullable - underlying_type: - type: named - name: String - sqlmesh__metrics_metrics__metrics_v0__1972836302__temp: + metrics__test_developer_active_days_to_project_over_90_day: description: "" fields: - aggregation_function: - type: - type: nullable - underlying_type: - type: named - name: String - definition_ref: - type: - type: nullable - underlying_type: - type: named - name: String - description: + amount: type: - type: nullable - underlying_type: - type: named - name: String - display_name: + type: named + name: Float64 + event_source: type: type: named name: String - metric_id: + from_artifact_id: type: type: named name: String - metric_name: + metric: type: type: named name: String - metric_namespace: + metrics_sample_date: type: type: named - name: String - metric_source: + name: Date + to_project_id: type: type: named name: String - raw_definition: - type: - type: nullable - underlying_type: - type: named - name: String - sqlmesh__metrics_metrics__metrics_v0__1989478904: + metrics__test_developer_classifications_to_artifact_over_30_day: description: "" fields: - aggregation_function: - type: - type: nullable - underlying_type: - type: named - name: String - definition_ref: - type: - type: nullable - underlying_type: - type: named - name: String - description: + amount: type: - type: nullable - underlying_type: - type: named - name: String - display_name: + type: named + name: Float64 + event_source: type: type: named name: String - metric_id: + from_artifact_id: type: type: named name: String - metric_name: + metric: type: type: named name: String - metric_source: + metrics_sample_date: type: type: named - name: String - raw_definition: + name: Date + to_artifact_id: type: - type: nullable - underlying_type: - type: named - name: String - sqlmesh__metrics_metrics__metrics_v0__1989478904__temp: + type: named + name: String + metrics__test_developer_classifications_to_artifact_over_60_day: description: "" fields: - aggregation_function: - type: - type: nullable - underlying_type: - type: named - name: String - definition_ref: - type: - type: nullable - underlying_type: - type: named - name: String - description: + amount: type: - type: nullable - underlying_type: - type: named - name: String - display_name: + type: named + name: Float64 + event_source: type: type: named name: String - metric_id: + from_artifact_id: type: type: named name: String - metric_name: + metric: type: type: named name: String - metric_source: + metrics_sample_date: type: type: named - name: String - raw_definition: + name: Date + to_artifact_id: type: - type: nullable - underlying_type: - type: named - name: String - sqlmesh__metrics_metrics__metrics_v0__2384275897: + type: named + name: String + metrics__test_developer_classifications_to_artifact_over_90_day: description: "" fields: - aggregation_function: - type: - type: nullable - underlying_type: - type: named - name: String - definition_ref: - type: - type: nullable - underlying_type: - type: named - name: String - description: + amount: type: - type: nullable - underlying_type: - type: named - name: String - display_name: + type: named + name: Float64 + event_source: type: type: named name: String - metric_id: + from_artifact_id: type: type: named name: String - metric_name: + metric: type: type: named name: String - metric_namespace: + metrics_sample_date: type: type: named - name: String - metric_source: + name: Date + to_artifact_id: type: type: named name: String - raw_definition: - type: - type: nullable - underlying_type: - type: named - name: String - sqlmesh__metrics_metrics__metrics_v0__2384275897__temp: + metrics__test_developer_classifications_to_collection_over_30_day: description: "" fields: - aggregation_function: - type: - type: nullable - underlying_type: - type: named - name: String - definition_ref: - type: - type: nullable - underlying_type: - type: named - name: String - description: + amount: type: - type: nullable - underlying_type: - type: named - name: String - display_name: + type: named + name: Float64 + event_source: type: type: named name: String - metric_id: + from_artifact_id: type: type: named name: String - metric_name: + metric: type: type: named name: String - metric_namespace: + metrics_sample_date: type: type: named - name: String - metric_source: + name: Date + to_collection_id: type: type: named name: String - raw_definition: - type: - type: nullable - underlying_type: - type: named - name: String - sqlmesh__metrics_metrics__metrics_v0__3641251458: + metrics__test_developer_classifications_to_collection_over_60_day: description: "" fields: - aggregation_function: - type: - type: nullable - underlying_type: - type: named - name: String - definition_ref: - type: - type: nullable - underlying_type: - type: named - name: String - description: + amount: type: - type: nullable - underlying_type: - type: named - name: String - display_name: + type: named + name: Float64 + event_source: type: type: named name: String - metric_id: + from_artifact_id: type: type: named name: String - metric_name: + metric: type: type: named name: String - metric_source: + metrics_sample_date: type: type: named - name: String - raw_definition: + name: Date + to_collection_id: type: - type: nullable - underlying_type: - type: named - name: String - sqlmesh__metrics_metrics__metrics_v0__3641251458__temp: + type: named + name: String + metrics__test_developer_classifications_to_collection_over_90_day: description: "" fields: - aggregation_function: - type: - type: nullable - underlying_type: - type: named - name: String - definition_ref: - type: - type: nullable - underlying_type: - type: named - name: String - description: + amount: type: - type: nullable - underlying_type: - type: named - name: String - display_name: + type: named + name: Float64 + event_source: type: type: named name: String - metric_id: + from_artifact_id: type: type: named name: String - metric_name: + metric: type: type: named name: String - metric_source: + metrics_sample_date: type: type: named - name: String - raw_definition: + name: Date + to_collection_id: type: - type: nullable - underlying_type: - type: named - name: String - sqlmesh__metrics_metrics__metrics_v0__3889562040: + type: named + name: String + metrics__test_developer_classifications_to_project_over_30_day: description: "" fields: - aggregation_function: - type: - type: nullable - underlying_type: - type: named - name: String - definition_ref: - type: - type: nullable - underlying_type: - type: named - name: String - description: + amount: type: - type: nullable - underlying_type: - type: named - name: String - display_name: + type: named + name: Float64 + event_source: type: type: named name: String - metric_id: + from_artifact_id: type: type: named name: String - metric_name: + metric: type: type: named name: String - metric_namespace: + metrics_sample_date: type: type: named - name: String - metric_source: + name: Date + to_project_id: type: type: named name: String - raw_definition: - type: - type: nullable - underlying_type: - type: named - name: String - sqlmesh__metrics_metrics__metrics_v0__3889562040__temp: + metrics__test_developer_classifications_to_project_over_60_day: description: "" fields: - aggregation_function: - type: - type: nullable - underlying_type: - type: named - name: String - definition_ref: - type: - type: nullable - underlying_type: - type: named - name: String - description: + amount: type: - type: nullable - underlying_type: - type: named - name: String - display_name: + type: named + name: Float64 + event_source: type: type: named name: String - metric_id: + from_artifact_id: type: type: named name: String - metric_name: + metric: type: type: named name: String - metric_namespace: + metrics_sample_date: type: type: named - name: String - metric_source: + name: Date + to_project_id: type: type: named name: String - raw_definition: - type: - type: nullable - underlying_type: - type: named - name: String - sqlmesh__metrics_metrics__metrics_v0__4156811425: + metrics__test_developer_classifications_to_project_over_90_day: description: "" fields: - aggregation_function: - type: - type: nullable - underlying_type: - type: named - name: String - definition_ref: - type: - type: nullable - underlying_type: - type: named - name: String - description: + amount: type: - type: nullable - underlying_type: - type: named - name: String - display_name: + type: named + name: Float64 + event_source: type: type: named name: String - metric_id: + from_artifact_id: type: type: named name: String - metric_name: + metric: type: type: named name: String - metric_source: + metrics_sample_date: type: type: named - name: String - raw_definition: + name: Date + to_project_id: type: - type: nullable - underlying_type: - type: named - name: String - sqlmesh__metrics_metrics__metrics_v0__4156811425__temp: + type: named + name: String + metrics__test_events_daily_to_artifact: description: "" fields: - aggregation_function: + _sign: type: - type: nullable - underlying_type: - type: named - name: String - definition_ref: + type: named + name: Int8 + _version: type: - type: nullable - underlying_type: - type: named - name: String - description: + type: named + name: UInt32 + amount: type: - type: nullable - underlying_type: - type: named - name: String - display_name: + type: named + name: Float64 + bucket_day: type: type: named - name: String - metric_id: + name: Date + event_source: type: type: named name: String - metric_name: + event_type: type: type: named name: String - metric_source: + from_artifact_id: type: type: named name: String - raw_definition: + to_artifact_id: type: - type: nullable - underlying_type: - type: named - name: String - sqlmesh__metrics_metrics__timeseries_code_metrics_by_artifact_over_30_days__7598012: + type: named + name: String + metrics__test_forks_to_artifact_daily: description: "" fields: amount: type: - type: nullable - underlying_type: - type: named - name: Int64 - bucket_day: - type: - type: nullable - underlying_type: - type: named - name: Date + type: named + name: Float64 event_source: type: - type: nullable - underlying_type: - type: named - name: String + type: named + name: String from_artifact_id: type: - type: nullable - underlying_type: - type: named - name: String + type: named + name: String metric: type: - type: nullable - underlying_type: - type: named - name: String + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date to_artifact_id: type: - type: nullable - underlying_type: - type: named - name: String - sqlmesh__metrics_metrics__timeseries_code_metrics_by_artifact_over_30_days__7598012__temp: + type: named + name: String + metrics__test_forks_to_artifact_monthly: description: "" fields: amount: type: - type: nullable - underlying_type: - type: named - name: Int64 - bucket_day: - type: - type: nullable - underlying_type: - type: named - name: Date + type: named + name: Float64 event_source: type: - type: nullable - underlying_type: - type: named - name: String + type: named + name: String from_artifact_id: type: - type: nullable - underlying_type: - type: named - name: String + type: named + name: String metric: type: - type: nullable - underlying_type: - type: named - name: String + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date to_artifact_id: type: - type: nullable - underlying_type: - type: named - name: String - sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_over_30_days__411625291: + type: named + name: String + metrics__test_forks_to_artifact_weekly: description: "" fields: amount: type: type: named name: Float64 - bucket_day: - type: - type: named - name: Date event_source: type: type: named @@ -2479,21 +2185,21 @@ definition: type: type: named name: String + metrics_sample_date: + type: + type: named + name: Date to_artifact_id: type: type: named name: String - sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_over_30_days__411625291__temp: + metrics__test_forks_to_collection_daily: description: "" fields: amount: type: type: named name: Float64 - bucket_day: - type: - type: named - name: Date event_source: type: type: named @@ -2506,21 +2212,21 @@ definition: type: type: named name: String - to_artifact_id: + metrics_sample_date: + type: + type: named + name: Date + to_collection_id: type: type: named name: String - sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_over_30_days__1052226158: + metrics__test_forks_to_collection_monthly: description: "" fields: amount: type: type: named name: Float64 - bucket_day: - type: - type: named - name: Date event_source: type: type: named @@ -2533,21 +2239,21 @@ definition: type: type: named name: String - to_artifact_id: + metrics_sample_date: + type: + type: named + name: Date + to_collection_id: type: type: named name: String - sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_over_30_days__1052226158__temp: + metrics__test_forks_to_collection_weekly: description: "" fields: amount: type: type: named name: Float64 - bucket_day: - type: - type: named - name: Date event_source: type: type: named @@ -2560,21 +2266,21 @@ definition: type: type: named name: String - to_artifact_id: + metrics_sample_date: + type: + type: named + name: Date + to_collection_id: type: type: named name: String - sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_over_30_days__1641497371: + metrics__test_forks_to_project_daily: description: "" fields: amount: type: type: named name: Float64 - bucket_day: - type: - type: named - name: Date event_source: type: type: named @@ -2587,21 +2293,21 @@ definition: type: type: named name: String - to_artifact_id: + metrics_sample_date: + type: + type: named + name: Date + to_project_id: type: type: named name: String - sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_over_30_days__1641497371__temp: + metrics__test_forks_to_project_monthly: description: "" fields: amount: type: type: named name: Float64 - bucket_day: - type: - type: named - name: Date event_source: type: type: named @@ -2614,21 +2320,21 @@ definition: type: type: named name: String - to_artifact_id: + metrics_sample_date: + type: + type: named + name: Date + to_project_id: type: type: named name: String - sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_over_30_days__2141203280: + metrics__test_forks_to_project_weekly: description: "" fields: amount: type: type: named name: Float64 - bucket_day: - type: - type: named - name: Date event_source: type: type: named @@ -2641,21 +2347,21 @@ definition: type: type: named name: String - to_artifact_id: + metrics_sample_date: + type: + type: named + name: Date + to_project_id: type: type: named name: String - sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_over_30_days__2141203280__temp: + metrics__test_gas_fees_to_artifact_daily: description: "" fields: amount: type: type: named name: Float64 - bucket_day: - type: - type: named - name: Date event_source: type: type: named @@ -2668,21 +2374,21 @@ definition: type: type: named name: String + metrics_sample_date: + type: + type: named + name: Date to_artifact_id: type: type: named name: String - sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_over_30_days__2202426059: + metrics__test_gas_fees_to_artifact_monthly: description: "" fields: amount: type: type: named name: Float64 - bucket_day: - type: - type: named - name: Date event_source: type: type: named @@ -2695,21 +2401,21 @@ definition: type: type: named name: String + metrics_sample_date: + type: + type: named + name: Date to_artifact_id: type: type: named name: String - sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_over_30_days__2202426059__temp: + metrics__test_gas_fees_to_artifact_weekly: description: "" fields: amount: type: type: named name: Float64 - bucket_day: - type: - type: named - name: Date event_source: type: type: named @@ -2722,21 +2428,21 @@ definition: type: type: named name: String + metrics_sample_date: + type: + type: named + name: Date to_artifact_id: type: type: named name: String - sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_over_30_days__2705758559: + metrics__test_gas_fees_to_collection_daily: description: "" fields: amount: type: type: named name: Float64 - bucket_day: - type: - type: named - name: Date event_source: type: type: named @@ -2749,21 +2455,21 @@ definition: type: type: named name: String - to_artifact_id: + metrics_sample_date: + type: + type: named + name: Date + to_collection_id: type: type: named name: String - sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_over_30_days__2705758559__temp: + metrics__test_gas_fees_to_collection_monthly: description: "" fields: amount: type: type: named name: Float64 - bucket_day: - type: - type: named - name: Date event_source: type: type: named @@ -2776,21 +2482,21 @@ definition: type: type: named name: String - to_artifact_id: + metrics_sample_date: + type: + type: named + name: Date + to_collection_id: type: type: named name: String - sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_over_30_days__3060931431: + metrics__test_gas_fees_to_collection_weekly: description: "" fields: amount: type: type: named name: Float64 - bucket_day: - type: - type: named - name: Date event_source: type: type: named @@ -2803,21 +2509,21 @@ definition: type: type: named name: String - to_artifact_id: + metrics_sample_date: + type: + type: named + name: Date + to_collection_id: type: type: named name: String - sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_over_30_days__3060931431__temp: + metrics__test_gas_fees_to_project_daily: description: "" fields: amount: type: type: named name: Float64 - bucket_day: - type: - type: named - name: Date event_source: type: type: named @@ -2830,21 +2536,21 @@ definition: type: type: named name: String - to_artifact_id: + metrics_sample_date: + type: + type: named + name: Date + to_project_id: type: type: named name: String - sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_over_30_days__3629470274: + metrics__test_gas_fees_to_project_monthly: description: "" fields: amount: type: type: named name: Float64 - bucket_day: - type: - type: named - name: Date event_source: type: type: named @@ -2857,21 +2563,21 @@ definition: type: type: named name: String - to_artifact_id: + metrics_sample_date: + type: + type: named + name: Date + to_project_id: type: type: named name: String - sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_over_30_days__3629470274__temp: + metrics__test_gas_fees_to_project_weekly: description: "" fields: amount: type: type: named name: Float64 - bucket_day: - type: - type: named - name: Date event_source: type: type: named @@ -2884,48 +2590,68 @@ definition: type: type: named name: String - to_artifact_id: + metrics_sample_date: + type: + type: named + name: Date + to_project_id: type: type: named name: String - sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_over_30_days__3716588191: + metrics__test_metrics_v0: description: "" fields: - amount: + aggregation_function: type: - type: named - name: Float64 - bucket_day: + type: nullable + underlying_type: + type: named + name: String + definition_ref: + type: + type: nullable + underlying_type: + type: named + name: String + description: + type: + type: nullable + underlying_type: + type: named + name: String + display_name: type: type: named - name: Date - event_source: + name: String + metric_id: type: type: named name: String - from_artifact_id: + metric_name: type: type: named name: String - metric: + metric_namespace: type: type: named name: String - to_artifact_id: + metric_source: type: type: named name: String - sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_over_30_days__3716588191__temp: + raw_definition: + type: + type: nullable + underlying_type: + type: named + name: String + metrics__test_stars_to_artifact_daily: description: "" fields: amount: type: type: named name: Float64 - bucket_day: - type: - type: named - name: Date event_source: type: type: named @@ -2938,21 +2664,21 @@ definition: type: type: named name: String + metrics_sample_date: + type: + type: named + name: Date to_artifact_id: type: type: named name: String - sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_over_30_days__3782520343: + metrics__test_stars_to_artifact_monthly: description: "" fields: amount: type: type: named name: Float64 - bucket_day: - type: - type: named - name: Date event_source: type: type: named @@ -2965,21 +2691,21 @@ definition: type: type: named name: String + metrics_sample_date: + type: + type: named + name: Date to_artifact_id: type: type: named name: String - sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_over_30_days__3782520343__temp: + metrics__test_stars_to_artifact_weekly: description: "" fields: amount: type: type: named name: Float64 - bucket_day: - type: - type: named - name: Date event_source: type: type: named @@ -2992,21 +2718,21 @@ definition: type: type: named name: String + metrics_sample_date: + type: + type: named + name: Date to_artifact_id: type: type: named name: String - sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_over_30_days__4007628622: + metrics__test_stars_to_collection_daily: description: "" fields: amount: type: type: named name: Float64 - bucket_day: - type: - type: named - name: Date event_source: type: type: named @@ -3019,21 +2745,21 @@ definition: type: type: named name: String - to_artifact_id: + metrics_sample_date: + type: + type: named + name: Date + to_collection_id: type: type: named name: String - sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_over_30_days__4007628622__temp: + metrics__test_stars_to_collection_monthly: description: "" fields: amount: type: type: named name: Float64 - bucket_day: - type: - type: named - name: Date event_source: type: type: named @@ -3046,21 +2772,21 @@ definition: type: type: named name: String - to_artifact_id: + metrics_sample_date: + type: + type: named + name: Date + to_collection_id: type: type: named name: String - sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_over_30_days__4285487256: + metrics__test_stars_to_collection_weekly: description: "" fields: amount: type: type: named name: Float64 - bucket_day: - type: - type: named - name: Date event_source: type: type: named @@ -3073,21 +2799,21 @@ definition: type: type: named name: String - to_artifact_id: + metrics_sample_date: + type: + type: named + name: Date + to_collection_id: type: type: named name: String - sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_over_30_days__4285487256__temp: + metrics__test_stars_to_project_daily: description: "" fields: amount: type: type: named name: Float64 - bucket_day: - type: - type: named - name: Date event_source: type: type: named @@ -3100,61 +2826,69 @@ definition: type: type: named name: String - to_artifact_id: + metrics_sample_date: + type: + type: named + name: Date + to_project_id: type: type: named name: String - sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_v0__274191541: + metrics__test_stars_to_project_monthly: description: "" fields: amount: type: type: named name: Float64 - artifact_id: + event_source: type: type: named name: String - metric_id: + from_artifact_id: type: type: named name: String - sample_date: + metric: + type: + type: named + name: String + metrics_sample_date: type: type: named name: Date - unit: + to_project_id: type: - type: nullable - underlying_type: - type: named - name: String - sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_v0__274191541__temp: + type: named + name: String + metrics__test_stars_to_project_weekly: description: "" fields: amount: type: type: named name: Float64 - artifact_id: + event_source: type: type: named name: String - metric_id: + from_artifact_id: type: type: named name: String - sample_date: + metric: + type: + type: named + name: String + metrics_sample_date: type: type: named name: Date - unit: + to_project_id: type: - type: nullable - underlying_type: - type: named - name: String - sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_v0__594520992: + type: named + name: String + metrics__test_timeseries_metrics_by_artifact_v0: description: "" fields: amount: @@ -3179,14 +2913,14 @@ definition: underlying_type: type: named name: String - sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_v0__594520992__temp: + metrics__test_timeseries_metrics_by_collection_v0: description: "" fields: amount: type: type: named name: Float64 - artifact_id: + collection_id: type: type: named name: String @@ -3204,18 +2938,18 @@ definition: underlying_type: type: named name: String - sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_v0__635461998: + metrics__test_timeseries_metrics_by_project_v0: description: "" fields: amount: type: type: named name: Float64 - artifact_id: + metric_id: type: type: named name: String - metric_id: + project_id: type: type: named name: String @@ -3229,1136 +2963,14761 @@ definition: underlying_type: type: named name: String - sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_v0__635461998__temp: + metrics__test_timeseries_metrics_to_artifact: description: "" fields: amount: type: type: named name: Float64 - artifact_id: + event_source: type: type: named name: String - metric_id: + from_artifact_id: type: type: named name: String - sample_date: + metric: + type: + type: named + name: String + metrics_sample_date: type: type: named name: Date - unit: + to_artifact_id: type: - type: nullable - underlying_type: - type: named - name: String - sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_v0__661819154: + type: named + name: String + metrics__test_timeseries_metrics_to_collection: description: "" fields: amount: type: type: named name: Float64 - artifact_id: + event_source: type: type: named name: String - metric_id: + from_artifact_id: type: type: named name: String - sample_date: + metric: + type: + type: named + name: String + metrics_sample_date: type: type: named name: Date - unit: + to_collection_id: type: - type: nullable - underlying_type: - type: named - name: String - sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_v0__661819154__temp: + type: named + name: String + metrics__test_timeseries_metrics_to_project: description: "" fields: amount: type: type: named name: Float64 - artifact_id: + event_source: type: type: named name: String - metric_id: + from_artifact_id: type: type: named name: String - sample_date: + metric: + type: + type: named + name: String + metrics_sample_date: type: type: named name: Date - unit: + to_project_id: type: - type: nullable - underlying_type: - type: named - name: String - sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_v0__1280450367: + type: named + name: String + metrics_active_addresses_to_artifact_daily: description: "" fields: amount: type: type: named name: Float64 - artifact_id: + event_source: type: type: named name: String - metric_id: + from_artifact_id: type: type: named name: String - sample_date: + metric: + type: + type: named + name: String + metrics_sample_date: type: type: named name: Date - unit: + to_artifact_id: type: - type: nullable - underlying_type: - type: named - name: String - sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_v0__1280450367__temp: + type: named + name: String + metrics_active_addresses_to_artifact_monthly: description: "" fields: amount: type: type: named name: Float64 - artifact_id: + event_source: type: type: named name: String - metric_id: + from_artifact_id: type: type: named name: String - sample_date: + metric: + type: + type: named + name: String + metrics_sample_date: type: type: named name: Date - unit: + to_artifact_id: type: - type: nullable - underlying_type: - type: named - name: String - sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_v0__1833626329: + type: named + name: String + metrics_active_addresses_to_artifact_weekly: description: "" fields: amount: type: type: named name: Float64 - artifact_id: + event_source: type: type: named name: String - metric_id: + from_artifact_id: type: type: named name: String - sample_date: + metric: + type: + type: named + name: String + metrics_sample_date: type: type: named name: Date - unit: + to_artifact_id: type: - type: nullable - underlying_type: - type: named - name: String - sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_v0__1833626329__temp: + type: named + name: String + metrics_active_addresses_to_collection_daily: description: "" fields: amount: type: type: named name: Float64 - artifact_id: + event_source: type: type: named name: String - metric_id: + from_artifact_id: type: type: named name: String - sample_date: + metric: + type: + type: named + name: String + metrics_sample_date: type: type: named name: Date - unit: + to_collection_id: type: - type: nullable - underlying_type: - type: named - name: String - sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_v0__2123659464: + type: named + name: String + metrics_active_addresses_to_collection_monthly: description: "" fields: amount: type: type: named name: Float64 - artifact_id: + event_source: type: type: named name: String - metric_id: + from_artifact_id: type: type: named name: String - sample_date: + metric: + type: + type: named + name: String + metrics_sample_date: type: type: named name: Date - unit: + to_collection_id: type: - type: nullable - underlying_type: - type: named - name: String - sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_v0__2123659464__temp: + type: named + name: String + metrics_active_addresses_to_collection_weekly: description: "" fields: amount: type: type: named name: Float64 - artifact_id: + event_source: type: type: named name: String - metric_id: + from_artifact_id: type: type: named name: String - sample_date: + metric: + type: + type: named + name: String + metrics_sample_date: type: type: named name: Date - unit: + to_collection_id: type: - type: nullable - underlying_type: - type: named - name: String - sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_v0__2343650771: + type: named + name: String + metrics_active_addresses_to_project_daily: description: "" fields: amount: type: type: named name: Float64 - artifact_id: + event_source: type: type: named name: String - metric_id: + from_artifact_id: type: type: named name: String - sample_date: + metric: + type: + type: named + name: String + metrics_sample_date: type: type: named name: Date - unit: + to_project_id: type: - type: nullable - underlying_type: - type: named - name: String - sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_v0__2343650771__temp: + type: named + name: String + metrics_active_addresses_to_project_monthly: description: "" fields: amount: type: type: named name: Float64 - artifact_id: + event_source: type: type: named name: String - metric_id: + from_artifact_id: type: type: named name: String - sample_date: + metric: + type: + type: named + name: String + metrics_sample_date: type: type: named name: Date - unit: + to_project_id: type: - type: nullable - underlying_type: - type: named - name: String - sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_v0__2513542600: + type: named + name: String + metrics_active_addresses_to_project_weekly: description: "" fields: amount: type: type: named name: Float64 - artifact_id: + event_source: type: type: named name: String - metric_id: + from_artifact_id: type: type: named name: String - sample_date: + metric: + type: + type: named + name: String + metrics_sample_date: type: type: named name: Date - unit: + to_project_id: type: - type: nullable - underlying_type: - type: named - name: String - sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_v0__2513542600__temp: + type: named + name: String + metrics_commits_to_artifact_daily: description: "" fields: amount: type: type: named name: Float64 - artifact_id: + event_source: type: type: named name: String - metric_id: + from_artifact_id: type: type: named name: String - sample_date: + metric: + type: + type: named + name: String + metrics_sample_date: type: type: named name: Date - unit: + to_artifact_id: type: - type: nullable - underlying_type: - type: named - name: String - sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_v0__2787405387: + type: named + name: String + metrics_commits_to_artifact_monthly: description: "" fields: amount: type: type: named name: Float64 - artifact_id: + event_source: type: type: named name: String - metric_id: + from_artifact_id: type: type: named name: String - sample_date: + metric: + type: + type: named + name: String + metrics_sample_date: type: type: named name: Date - unit: + to_artifact_id: type: - type: nullable - underlying_type: - type: named - name: String - sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_v0__2787405387__temp: + type: named + name: String + metrics_commits_to_artifact_weekly: description: "" fields: amount: type: type: named name: Float64 - artifact_id: + event_source: type: type: named name: String - metric_id: + from_artifact_id: type: type: named name: String - sample_date: + metric: + type: + type: named + name: String + metrics_sample_date: type: type: named name: Date - unit: + to_artifact_id: type: - type: nullable - underlying_type: - type: named - name: String - sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_v0__4180627168: + type: named + name: String + metrics_commits_to_collection_daily: description: "" fields: amount: type: type: named name: Float64 - artifact_id: + event_source: type: type: named name: String - metric_id: + from_artifact_id: type: type: named name: String - sample_date: + metric: + type: + type: named + name: String + metrics_sample_date: type: type: named name: Date - unit: + to_collection_id: type: - type: nullable - underlying_type: - type: named - name: String - sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_v0__4180627168__temp: + type: named + name: String + metrics_commits_to_collection_monthly: description: "" fields: amount: type: type: named name: Float64 - artifact_id: + event_source: type: type: named name: String - metric_id: + from_artifact_id: type: type: named name: String - sample_date: + metric: + type: + type: named + name: String + metrics_sample_date: type: type: named name: Date - unit: + to_collection_id: type: - type: nullable - underlying_type: - type: named - name: String - sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_v0__4229608905: + type: named + name: String + metrics_commits_to_collection_weekly: description: "" fields: amount: type: type: named name: Float64 - artifact_id: + event_source: type: type: named name: String - metric_id: + from_artifact_id: type: type: named name: String - sample_date: + metric: + type: + type: named + name: String + metrics_sample_date: type: type: named name: Date - unit: + to_collection_id: type: - type: nullable - underlying_type: - type: named - name: String - sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_v0__4229608905__temp: + type: named + name: String + metrics_commits_to_project_daily: description: "" fields: amount: type: type: named name: Float64 - artifact_id: + event_source: type: type: named name: String - metric_id: + from_artifact_id: type: type: named name: String - sample_date: + metric: + type: + type: named + name: String + metrics_sample_date: type: type: named name: Date - unit: + to_project_id: type: - type: nullable - underlying_type: - type: named - name: String - timeseries_events_by_artifact_v0: + type: named + name: String + metrics_commits_to_project_monthly: description: "" fields: amount: type: type: named - name: Float32 + name: Float64 event_source: type: type: named name: String - event_source_id: - type: - type: named - name: String - event_type: + from_artifact_id: type: type: named name: String - from_artifact_id: + metric: type: type: named name: String - time: + metrics_sample_date: type: type: named - name: DateTime - to_artifact_id: + name: Date + to_project_id: type: type: named name: String - users_v1: + metrics_commits_to_project_weekly: description: "" fields: - bio: + amount: + type: + type: named + name: Float64 + event_source: type: type: named name: String - display_name: + from_artifact_id: type: type: named name: String - profile_picture_url: + metric: type: type: named name: String - url: + metrics_sample_date: + type: + type: named + name: Date + to_project_id: type: type: named name: String - user_id: + metrics_contributor_classifications_to_artifact_over_30_day: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: type: type: named name: String - user_source: + from_artifact_id: type: type: named name: String - user_source_id: + metric: type: type: named name: String - collections: - - name: artifacts_by_project_v1 + metrics_sample_date: + type: + type: named + name: Date + to_artifact_id: + type: + type: named + name: String + metrics_contributor_classifications_to_artifact_over_60_day: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_artifact_id: + type: + type: named + name: String + metrics_contributor_classifications_to_artifact_over_90_day: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_artifact_id: + type: + type: named + name: String + metrics_contributor_classifications_to_collection_over_30_day: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_collection_id: + type: + type: named + name: String + metrics_contributor_classifications_to_collection_over_60_day: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_collection_id: + type: + type: named + name: String + metrics_contributor_classifications_to_collection_over_90_day: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_collection_id: + type: + type: named + name: String + metrics_contributor_classifications_to_project_over_30_day: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_project_id: + type: + type: named + name: String + metrics_contributor_classifications_to_project_over_60_day: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_project_id: + type: + type: named + name: String + metrics_contributor_classifications_to_project_over_90_day: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_project_id: + type: + type: named + name: String + metrics_developer_active_days_to_artifact_over_30_day: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_artifact_id: + type: + type: named + name: String + metrics_developer_active_days_to_artifact_over_60_day: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_artifact_id: + type: + type: named + name: String + metrics_developer_active_days_to_artifact_over_90_day: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_artifact_id: + type: + type: named + name: String + metrics_developer_active_days_to_collection_over_30_day: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_collection_id: + type: + type: named + name: String + metrics_developer_active_days_to_collection_over_60_day: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_collection_id: + type: + type: named + name: String + metrics_developer_active_days_to_collection_over_90_day: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_collection_id: + type: + type: named + name: String + metrics_developer_active_days_to_project_over_30_day: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_project_id: + type: + type: named + name: String + metrics_developer_active_days_to_project_over_60_day: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_project_id: + type: + type: named + name: String + metrics_developer_active_days_to_project_over_90_day: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_project_id: + type: + type: named + name: String + metrics_developer_classifications_to_artifact_over_30_day: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_artifact_id: + type: + type: named + name: String + metrics_developer_classifications_to_artifact_over_60_day: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_artifact_id: + type: + type: named + name: String + metrics_developer_classifications_to_artifact_over_90_day: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_artifact_id: + type: + type: named + name: String + metrics_developer_classifications_to_collection_over_30_day: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_collection_id: + type: + type: named + name: String + metrics_developer_classifications_to_collection_over_60_day: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_collection_id: + type: + type: named + name: String + metrics_developer_classifications_to_collection_over_90_day: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_collection_id: + type: + type: named + name: String + metrics_developer_classifications_to_project_over_30_day: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_project_id: + type: + type: named + name: String + metrics_developer_classifications_to_project_over_60_day: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_project_id: + type: + type: named + name: String + metrics_developer_classifications_to_project_over_90_day: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_project_id: + type: + type: named + name: String + metrics_events_daily_to_artifact: + description: "" + fields: + _sign: + type: + type: named + name: Int8 + _version: + type: + type: named + name: UInt32 + amount: + type: + type: named + name: Float64 + bucket_day: + type: + type: named + name: Date + event_source: + type: + type: named + name: String + event_type: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + to_artifact_id: + type: + type: named + name: String + metrics_forks_to_artifact_daily: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_artifact_id: + type: + type: named + name: String + metrics_forks_to_artifact_monthly: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_artifact_id: + type: + type: named + name: String + metrics_forks_to_artifact_weekly: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_artifact_id: + type: + type: named + name: String + metrics_forks_to_collection_daily: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_collection_id: + type: + type: named + name: String + metrics_forks_to_collection_monthly: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_collection_id: + type: + type: named + name: String + metrics_forks_to_collection_weekly: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_collection_id: + type: + type: named + name: String + metrics_forks_to_project_daily: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_project_id: + type: + type: named + name: String + metrics_forks_to_project_monthly: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_project_id: + type: + type: named + name: String + metrics_forks_to_project_weekly: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_project_id: + type: + type: named + name: String + metrics_gas_fees_to_artifact_daily: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_artifact_id: + type: + type: named + name: String + metrics_gas_fees_to_artifact_monthly: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_artifact_id: + type: + type: named + name: String + metrics_gas_fees_to_artifact_weekly: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_artifact_id: + type: + type: named + name: String + metrics_gas_fees_to_collection_daily: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_collection_id: + type: + type: named + name: String + metrics_gas_fees_to_collection_monthly: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_collection_id: + type: + type: named + name: String + metrics_gas_fees_to_collection_weekly: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_collection_id: + type: + type: named + name: String + metrics_gas_fees_to_project_daily: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_project_id: + type: + type: named + name: String + metrics_gas_fees_to_project_monthly: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_project_id: + type: + type: named + name: String + metrics_gas_fees_to_project_weekly: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_project_id: + type: + type: named + name: String + metrics_metrics_v0: + description: "" + fields: + aggregation_function: + type: + type: nullable + underlying_type: + type: named + name: String + definition_ref: + type: + type: nullable + underlying_type: + type: named + name: String + description: + type: + type: nullable + underlying_type: + type: named + name: String + display_name: + type: + type: named + name: String + metric_id: + type: + type: named + name: String + metric_name: + type: + type: named + name: String + metric_namespace: + type: + type: named + name: String + metric_source: + type: + type: named + name: String + raw_definition: + type: + type: nullable + underlying_type: + type: named + name: String + metrics_stars_to_artifact_daily: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_artifact_id: + type: + type: named + name: String + metrics_stars_to_artifact_monthly: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_artifact_id: + type: + type: named + name: String + metrics_stars_to_artifact_weekly: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_artifact_id: + type: + type: named + name: String + metrics_stars_to_collection_daily: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_collection_id: + type: + type: named + name: String + metrics_stars_to_collection_monthly: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_collection_id: + type: + type: named + name: String + metrics_stars_to_collection_weekly: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_collection_id: + type: + type: named + name: String + metrics_stars_to_project_daily: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_project_id: + type: + type: named + name: String + metrics_stars_to_project_monthly: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_project_id: + type: + type: named + name: String + metrics_stars_to_project_weekly: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_project_id: + type: + type: named + name: String + metrics_timeseries_metrics_by_artifact_v0: + description: "" + fields: + amount: + type: + type: named + name: Float64 + artifact_id: + type: + type: named + name: String + metric_id: + type: + type: named + name: String + sample_date: + type: + type: named + name: Date + unit: + type: + type: nullable + underlying_type: + type: named + name: String + metrics_timeseries_metrics_by_collection_v0: + description: "" + fields: + amount: + type: + type: named + name: Float64 + collection_id: + type: + type: named + name: String + metric_id: + type: + type: named + name: String + sample_date: + type: + type: named + name: Date + unit: + type: + type: nullable + underlying_type: + type: named + name: String + metrics_timeseries_metrics_by_project_v0: + description: "" + fields: + amount: + type: + type: named + name: Float64 + metric_id: + type: + type: named + name: String + project_id: + type: + type: named + name: String + sample_date: + type: + type: named + name: Date + unit: + type: + type: nullable + underlying_type: + type: named + name: String + metrics_timeseries_metrics_to_artifact: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_artifact_id: + type: + type: named + name: String + metrics_timeseries_metrics_to_collection: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_collection_id: + type: + type: named + name: String + metrics_timeseries_metrics_to_project: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_project_id: + type: + type: named + name: String + onchain_metrics_by_project_v1: + description: "" + fields: + active_contract_count_90_days: + type: + type: named + name: Float32 + address_count: + type: + type: named + name: Float32 + address_count_90_days: + type: + type: named + name: Float32 + days_since_first_transaction: + type: + type: named + name: Float32 + display_name: + type: + type: named + name: String + event_source: + type: + type: named + name: String + gas_fees_sum: + type: + type: named + name: Float32 + gas_fees_sum_6_months: + type: + type: named + name: Float32 + high_activity_address_count_90_days: + type: + type: named + name: Float32 + low_activity_address_count_90_days: + type: + type: named + name: Float32 + medium_activity_address_count_90_days: + type: + type: named + name: Float32 + multi_project_address_count_90_days: + type: + type: named + name: Float32 + new_address_count_90_days: + type: + type: named + name: Float32 + project_id: + type: + type: named + name: String + project_name: + type: + type: named + name: String + project_namespace: + type: + type: named + name: String + project_source: + type: + type: named + name: String + returning_address_count_90_days: + type: + type: named + name: Float32 + transaction_count: + type: + type: named + name: Float32 + transaction_count_6_months: + type: + type: named + name: Float32 + projects_by_collection_v1: + description: "" + fields: + collection_id: + type: + type: named + name: String + collection_name: + type: + type: named + name: String + collection_namespace: + type: + type: named + name: String + collection_source: + type: + type: named + name: String + project_id: + type: + type: named + name: String + project_name: + type: + type: named + name: String + project_namespace: + type: + type: named + name: String + project_source: + type: + type: named + name: String + projects_v1: + description: "" + fields: + description: + type: + type: named + name: String + display_name: + type: + type: named + name: String + project_id: + type: + type: named + name: String + project_name: + type: + type: named + name: String + project_namespace: + type: + type: named + name: String + project_source: + type: + type: named + name: String + reuventest_events_daily_to_artifact: + description: "" + fields: + amount: + type: + type: named + name: Float64 + bucket_day: + type: + type: named + name: Date + event_source: + type: + type: named + name: String + event_type: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + to_artifact_id: + type: + type: named + name: String + reuventest_events_daily_to_artifact_mv: + description: "" + fields: + amount: + type: + type: named + name: Float64 + bucket_day: + type: + type: named + name: DateTime + event_source: + type: + type: named + name: String + event_type: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + to_artifact_id: + type: + type: named + name: String + reuventest_events_null: + description: "" + fields: + amount: + type: + type: named + name: Float32 + event_source: + type: + type: named + name: String + event_source_id: + type: + type: named + name: String + event_type: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + time: + type: + type: named + name: DateTime + to_artifact_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__active_addresses_to_artifact_daily__1451097649: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_artifact_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__active_addresses_to_artifact_daily__1451097649__temp: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_artifact_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__active_addresses_to_artifact_daily__4067249413: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_artifact_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__active_addresses_to_artifact_daily__4067249413__temp: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_artifact_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__active_addresses_to_artifact_monthly__2869240330: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_artifact_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__active_addresses_to_artifact_monthly__2869240330__temp: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_artifact_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__active_addresses_to_artifact_monthly__3897035807: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_artifact_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__active_addresses_to_artifact_monthly__3897035807__temp: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_artifact_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__active_addresses_to_artifact_weekly__585528268: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_artifact_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__active_addresses_to_artifact_weekly__585528268__temp: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_artifact_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__active_addresses_to_artifact_weekly__3021279003: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_artifact_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__active_addresses_to_artifact_weekly__3021279003__temp: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_artifact_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__active_addresses_to_collection_daily__48316747: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_collection_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__active_addresses_to_collection_daily__48316747__temp: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_collection_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__active_addresses_to_collection_daily__2961514227: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_collection_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__active_addresses_to_collection_daily__2961514227__temp: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_collection_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__active_addresses_to_collection_monthly__383354905: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_collection_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__active_addresses_to_collection_monthly__383354905__temp: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_collection_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__active_addresses_to_collection_monthly__2299528175: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_collection_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__active_addresses_to_collection_monthly__2299528175__temp: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_collection_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__active_addresses_to_collection_weekly__84759969: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_collection_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__active_addresses_to_collection_weekly__84759969__temp: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_collection_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__active_addresses_to_collection_weekly__827715063: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_collection_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__active_addresses_to_collection_weekly__827715063__temp: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_collection_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__active_addresses_to_project_daily__445087334: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_project_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__active_addresses_to_project_daily__445087334__temp: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_project_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__active_addresses_to_project_daily__2184062176: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_project_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__active_addresses_to_project_daily__2184062176__temp: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_project_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__active_addresses_to_project_monthly__1155158455: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_project_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__active_addresses_to_project_monthly__1155158455__temp: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_project_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__active_addresses_to_project_monthly__1940167565: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_project_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__active_addresses_to_project_monthly__1940167565__temp: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_project_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__active_addresses_to_project_weekly__2067969286: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_project_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__active_addresses_to_project_weekly__2067969286__temp: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_project_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__active_addresses_to_project_weekly__3486119930: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_project_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__active_addresses_to_project_weekly__3486119930__temp: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_project_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__commits_to_artifact_daily__384003590: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_artifact_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__commits_to_artifact_daily__384003590__temp: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_artifact_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__commits_to_artifact_daily__3019250927: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_artifact_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__commits_to_artifact_daily__3019250927__temp: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_artifact_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__commits_to_artifact_monthly__627485741: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_artifact_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__commits_to_artifact_monthly__627485741__temp: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_artifact_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__commits_to_artifact_monthly__891933314: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_artifact_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__commits_to_artifact_monthly__891933314__temp: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_artifact_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__commits_to_artifact_weekly__3680977809: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_artifact_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__commits_to_artifact_weekly__3680977809__temp: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_artifact_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__commits_to_artifact_weekly__3772586010: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_artifact_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__commits_to_artifact_weekly__3772586010__temp: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_artifact_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__commits_to_collection_daily__1391967423: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_collection_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__commits_to_collection_daily__1391967423__temp: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_collection_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__commits_to_collection_daily__2104049234: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_collection_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__commits_to_collection_daily__2104049234__temp: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_collection_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__commits_to_collection_monthly__2146928748: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_collection_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__commits_to_collection_monthly__2146928748__temp: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_collection_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__commits_to_collection_monthly__2714929276: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_collection_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__commits_to_collection_monthly__2714929276__temp: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_collection_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__commits_to_collection_weekly__2525167268: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_collection_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__commits_to_collection_weekly__2525167268__temp: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_collection_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__commits_to_collection_weekly__3070326138: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_collection_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__commits_to_collection_weekly__3070326138__temp: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_collection_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__commits_to_project_daily__2991942092: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_project_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__commits_to_project_daily__2991942092__temp: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_project_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__commits_to_project_daily__3560291209: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_project_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__commits_to_project_daily__3560291209__temp: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_project_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__commits_to_project_monthly__165981058: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_project_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__commits_to_project_monthly__165981058__temp: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_project_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__commits_to_project_monthly__626680148: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_project_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__commits_to_project_monthly__626680148__temp: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_project_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__commits_to_project_weekly__1130064547: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_project_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__commits_to_project_weekly__1130064547__temp: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_project_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__commits_to_project_weekly__1769590475: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_project_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__commits_to_project_weekly__1769590475__temp: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_project_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__contributor_classifications_to_artifact_over_30_day__700718732: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_artifact_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__contributor_classifications_to_artifact_over_30_day__700718732__temp: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_artifact_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__contributor_classifications_to_artifact_over_30_day__1293957495: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_artifact_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__contributor_classifications_to_artifact_over_30_day__1293957495__temp: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_artifact_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__contributor_classifications_to_artifact_over_60_day__513193079: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_artifact_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__contributor_classifications_to_artifact_over_60_day__513193079__temp: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_artifact_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__contributor_classifications_to_artifact_over_60_day__4174814200: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_artifact_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__contributor_classifications_to_artifact_over_60_day__4174814200__temp: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_artifact_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__contributor_classifications_to_artifact_over_90_day__648386949: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_artifact_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__contributor_classifications_to_artifact_over_90_day__648386949__temp: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_artifact_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__contributor_classifications_to_artifact_over_90_day__1883848372: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_artifact_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__contributor_classifications_to_artifact_over_90_day__1883848372__temp: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_artifact_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__contributor_classifications_to_collection_over_30_day__1375928387: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_collection_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__contributor_classifications_to_collection_over_30_day__1375928387__temp: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_collection_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__contributor_classifications_to_collection_over_30_day__3775457162: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_collection_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__contributor_classifications_to_collection_over_30_day__3775457162__temp: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_collection_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__contributor_classifications_to_collection_over_60_day__793383406: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_collection_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__contributor_classifications_to_collection_over_60_day__793383406__temp: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_collection_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__contributor_classifications_to_collection_over_60_day__2167309429: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_collection_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__contributor_classifications_to_collection_over_60_day__2167309429__temp: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_collection_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__contributor_classifications_to_collection_over_90_day__1776377347: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_collection_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__contributor_classifications_to_collection_over_90_day__1776377347__temp: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_collection_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__contributor_classifications_to_collection_over_90_day__2342269647: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_collection_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__contributor_classifications_to_collection_over_90_day__2342269647__temp: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_collection_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__contributor_classifications_to_project_over_30_day__3386019216: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_project_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__contributor_classifications_to_project_over_30_day__3386019216__temp: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_project_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__contributor_classifications_to_project_over_30_day__3621045737: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_project_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__contributor_classifications_to_project_over_30_day__3621045737__temp: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_project_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__contributor_classifications_to_project_over_60_day__1363814395: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_project_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__contributor_classifications_to_project_over_60_day__1363814395__temp: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_project_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__contributor_classifications_to_project_over_60_day__1364596116: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_project_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__contributor_classifications_to_project_over_60_day__1364596116__temp: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_project_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__contributor_classifications_to_project_over_90_day__3482993181: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_project_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__contributor_classifications_to_project_over_90_day__3482993181__temp: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_project_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__contributor_classifications_to_project_over_90_day__3658098767: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_project_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__contributor_classifications_to_project_over_90_day__3658098767__temp: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_project_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__developer_active_days_to_artifact_over_30_day__2147579824: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_artifact_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__developer_active_days_to_artifact_over_30_day__2147579824__temp: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_artifact_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__developer_active_days_to_artifact_over_30_day__3976516872: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_artifact_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__developer_active_days_to_artifact_over_30_day__3976516872__temp: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_artifact_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__developer_active_days_to_artifact_over_60_day__2285488471: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_artifact_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__developer_active_days_to_artifact_over_60_day__2285488471__temp: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_artifact_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__developer_active_days_to_artifact_over_60_day__3546454637: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_artifact_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__developer_active_days_to_artifact_over_60_day__3546454637__temp: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_artifact_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__developer_active_days_to_artifact_over_90_day__1696840528: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_artifact_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__developer_active_days_to_artifact_over_90_day__1696840528__temp: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_artifact_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__developer_active_days_to_artifact_over_90_day__2939537768: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_artifact_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__developer_active_days_to_artifact_over_90_day__2939537768__temp: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_artifact_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__developer_active_days_to_collection_over_30_day__820316417: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_collection_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__developer_active_days_to_collection_over_30_day__820316417__temp: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_collection_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__developer_active_days_to_collection_over_30_day__1822537695: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_collection_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__developer_active_days_to_collection_over_30_day__1822537695__temp: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_collection_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__developer_active_days_to_collection_over_60_day__3163575043: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_collection_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__developer_active_days_to_collection_over_60_day__3163575043__temp: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_collection_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__developer_active_days_to_collection_over_60_day__3397863041: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_collection_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__developer_active_days_to_collection_over_60_day__3397863041__temp: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_collection_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__developer_active_days_to_collection_over_90_day__911125358: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_collection_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__developer_active_days_to_collection_over_90_day__911125358__temp: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_collection_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__developer_active_days_to_collection_over_90_day__1907804058: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_collection_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__developer_active_days_to_collection_over_90_day__1907804058__temp: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_collection_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__developer_active_days_to_project_over_30_day__1776115062: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_project_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__developer_active_days_to_project_over_30_day__1776115062__temp: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_project_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__developer_active_days_to_project_over_30_day__2682941095: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_project_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__developer_active_days_to_project_over_30_day__2682941095__temp: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_project_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__developer_active_days_to_project_over_60_day__831546181: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_project_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__developer_active_days_to_project_over_60_day__831546181__temp: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_project_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__developer_active_days_to_project_over_60_day__3267032478: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_project_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__developer_active_days_to_project_over_60_day__3267032478__temp: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_project_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__developer_active_days_to_project_over_90_day__929128788: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_project_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__developer_active_days_to_project_over_90_day__929128788__temp: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_project_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__developer_active_days_to_project_over_90_day__2232286171: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_project_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__developer_active_days_to_project_over_90_day__2232286171__temp: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_project_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__developer_classifications_to_artifact_over_30_day__2657100041: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_artifact_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__developer_classifications_to_artifact_over_30_day__2657100041__temp: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_artifact_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__developer_classifications_to_artifact_over_30_day__4202956530: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_artifact_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__developer_classifications_to_artifact_over_30_day__4202956530__temp: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_artifact_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__developer_classifications_to_artifact_over_60_day__890887252: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_artifact_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__developer_classifications_to_artifact_over_60_day__890887252__temp: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_artifact_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__developer_classifications_to_artifact_over_60_day__3286510146: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_artifact_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__developer_classifications_to_artifact_over_60_day__3286510146__temp: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_artifact_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__developer_classifications_to_artifact_over_90_day__544076118: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_artifact_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__developer_classifications_to_artifact_over_90_day__544076118__temp: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_artifact_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__developer_classifications_to_artifact_over_90_day__1988187751: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_artifact_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__developer_classifications_to_artifact_over_90_day__1988187751__temp: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_artifact_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__developer_classifications_to_collection_over_30_day__742065590: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_collection_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__developer_classifications_to_collection_over_30_day__742065590__temp: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_collection_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__developer_classifications_to_collection_over_30_day__2670781055: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_collection_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__developer_classifications_to_collection_over_30_day__2670781055__temp: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_collection_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__developer_classifications_to_collection_over_60_day__779000134: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_collection_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__developer_classifications_to_collection_over_60_day__779000134__temp: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_collection_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__developer_classifications_to_collection_over_60_day__1495436071: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_collection_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__developer_classifications_to_collection_over_60_day__1495436071__temp: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_collection_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__developer_classifications_to_collection_over_90_day__228961017: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_collection_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__developer_classifications_to_collection_over_90_day__228961017__temp: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_collection_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__developer_classifications_to_collection_over_90_day__4023961141: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_collection_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__developer_classifications_to_collection_over_90_day__4023961141__temp: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_collection_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__developer_classifications_to_project_over_30_day__2268986554: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_project_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__developer_classifications_to_project_over_30_day__2268986554__temp: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_project_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__developer_classifications_to_project_over_30_day__2570826947: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_project_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__developer_classifications_to_project_over_30_day__2570826947__temp: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_project_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__developer_classifications_to_project_over_60_day__1484843749: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_project_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__developer_classifications_to_project_over_60_day__1484843749__temp: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_project_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__developer_classifications_to_project_over_60_day__1486674058: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_project_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__developer_classifications_to_project_over_60_day__1486674058__temp: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_project_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__developer_classifications_to_project_over_90_day__92766605: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_project_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__developer_classifications_to_project_over_90_day__92766605__temp: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_project_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__developer_classifications_to_project_over_90_day__270003167: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_project_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__developer_classifications_to_project_over_90_day__270003167__temp: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_project_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__events_daily_to_artifact__256496682: + description: "" + fields: + amount: + type: + type: named + name: Float64 + bucket_day: + type: + type: named + name: Date + event_source: + type: + type: named + name: String + event_type: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + to_artifact_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__events_daily_to_artifact__256496682__temp: + description: "" + fields: + amount: + type: + type: named + name: Float64 + bucket_day: + type: + type: named + name: Date + event_source: + type: + type: named + name: String + event_type: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + to_artifact_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__events_daily_to_artifact__787267005: + description: "" + fields: + _sign: + type: + type: named + name: Int8 + _version: + type: + type: named + name: UInt32 + amount: + type: + type: named + name: Float64 + bucket_day: + type: + type: named + name: Date + event_source: + type: + type: named + name: String + event_type: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + to_artifact_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__events_daily_to_artifact__787267005__temp: + description: "" + fields: + _sign: + type: + type: named + name: Int8 + _version: + type: + type: named + name: UInt32 + amount: + type: + type: named + name: Float64 + bucket_day: + type: + type: named + name: Date + event_source: + type: + type: named + name: String + event_type: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + to_artifact_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__forks_to_artifact_daily__1195578825: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_artifact_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__forks_to_artifact_daily__1195578825__temp: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_artifact_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__forks_to_artifact_daily__3290062578: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_artifact_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__forks_to_artifact_daily__3290062578__temp: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_artifact_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__forks_to_artifact_monthly__1415490740: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_artifact_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__forks_to_artifact_monthly__1415490740__temp: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_artifact_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__forks_to_artifact_monthly__3938275018: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_artifact_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__forks_to_artifact_monthly__3938275018__temp: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_artifact_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__forks_to_artifact_weekly__634319038: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_artifact_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__forks_to_artifact_weekly__634319038__temp: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_artifact_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__forks_to_artifact_weekly__2641707394: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_artifact_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__forks_to_artifact_weekly__2641707394__temp: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_artifact_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__forks_to_collection_daily__2600488515: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_collection_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__forks_to_collection_daily__2600488515__temp: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_collection_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__forks_to_collection_daily__3383457687: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_collection_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__forks_to_collection_daily__3383457687__temp: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_collection_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__forks_to_collection_monthly__642068908: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_collection_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__forks_to_collection_monthly__642068908__temp: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_collection_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__forks_to_collection_monthly__2690014976: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_collection_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__forks_to_collection_monthly__2690014976__temp: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_collection_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__forks_to_collection_weekly__2254060970: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_collection_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__forks_to_collection_weekly__2254060970__temp: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_collection_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__forks_to_collection_weekly__3048743392: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_collection_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__forks_to_collection_weekly__3048743392__temp: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_collection_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__forks_to_project_daily__539182721: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_project_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__forks_to_project_daily__539182721__temp: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_project_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__forks_to_project_daily__3162175235: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_project_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__forks_to_project_daily__3162175235__temp: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_project_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__forks_to_project_monthly__1390457095: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_project_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__forks_to_project_monthly__1390457095__temp: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_project_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__forks_to_project_monthly__3020189315: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_project_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__forks_to_project_monthly__3020189315__temp: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_project_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__forks_to_project_weekly__1848268533: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_project_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__forks_to_project_weekly__1848268533__temp: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_project_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__forks_to_project_weekly__2097630631: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_project_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__forks_to_project_weekly__2097630631__temp: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_project_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__gas_fees_to_artifact_daily__2207311257: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_artifact_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__gas_fees_to_artifact_daily__2207311257__temp: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_artifact_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__gas_fees_to_artifact_daily__2947931382: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_artifact_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__gas_fees_to_artifact_daily__2947931382__temp: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_artifact_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__gas_fees_to_artifact_monthly__3205598518: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_artifact_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__gas_fees_to_artifact_monthly__3205598518__temp: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_artifact_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__gas_fees_to_artifact_monthly__4256923395: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_artifact_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__gas_fees_to_artifact_monthly__4256923395__temp: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_artifact_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__gas_fees_to_artifact_weekly__298236217: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_artifact_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__gas_fees_to_artifact_weekly__298236217__temp: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_artifact_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__gas_fees_to_artifact_weekly__2045847874: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_artifact_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__gas_fees_to_artifact_weekly__2045847874__temp: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_artifact_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__gas_fees_to_collection_daily__2865969994: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_collection_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__gas_fees_to_collection_daily__2865969994__temp: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_collection_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__gas_fees_to_collection_daily__2957384774: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_collection_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__gas_fees_to_collection_daily__2957384774__temp: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_collection_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__gas_fees_to_collection_monthly__825442882: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_collection_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__gas_fees_to_collection_monthly__825442882__temp: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_collection_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__gas_fees_to_collection_monthly__3188093965: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_collection_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__gas_fees_to_collection_monthly__3188093965__temp: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_collection_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__gas_fees_to_collection_weekly__718832396: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_collection_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__gas_fees_to_collection_weekly__718832396__temp: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_collection_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__gas_fees_to_collection_weekly__796521307: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_collection_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__gas_fees_to_collection_weekly__796521307__temp: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_collection_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__gas_fees_to_project_daily__520704149: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_project_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__gas_fees_to_project_daily__520704149__temp: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_project_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__gas_fees_to_project_daily__4018447587: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_project_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__gas_fees_to_project_daily__4018447587__temp: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_project_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__gas_fees_to_project_monthly__2728156525: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_project_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__gas_fees_to_project_monthly__2728156525__temp: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_project_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__gas_fees_to_project_monthly__3346743315: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_project_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__gas_fees_to_project_monthly__3346743315__temp: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_project_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__gas_fees_to_project_weekly__1947565140: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_project_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__gas_fees_to_project_weekly__1947565140__temp: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_project_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__gas_fees_to_project_weekly__2566492595: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_project_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__gas_fees_to_project_weekly__2566492595__temp: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_project_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__metrics_v0__55568561: + description: "" + fields: + aggregation_function: + type: + type: nullable + underlying_type: + type: named + name: String + definition_ref: + type: + type: nullable + underlying_type: + type: named + name: String + description: + type: + type: nullable + underlying_type: + type: named + name: String + display_name: + type: + type: named + name: String + metric_id: + type: + type: named + name: String + metric_name: + type: + type: named + name: String + metric_namespace: + type: + type: named + name: String + metric_source: + type: + type: named + name: String + raw_definition: + type: + type: nullable + underlying_type: + type: named + name: String + sqlmesh__metrics_metrics__metrics_v0__55568561__temp: + description: "" + fields: + aggregation_function: + type: + type: nullable + underlying_type: + type: named + name: String + definition_ref: + type: + type: nullable + underlying_type: + type: named + name: String + description: + type: + type: nullable + underlying_type: + type: named + name: String + display_name: + type: + type: named + name: String + metric_id: + type: + type: named + name: String + metric_name: + type: + type: named + name: String + metric_namespace: + type: + type: named + name: String + metric_source: + type: + type: named + name: String + raw_definition: + type: + type: nullable + underlying_type: + type: named + name: String + sqlmesh__metrics_metrics__metrics_v0__88067858: + description: "" + fields: + aggregation_function: + type: + type: nullable + underlying_type: + type: named + name: String + definition_ref: + type: + type: nullable + underlying_type: + type: named + name: String + description: + type: + type: nullable + underlying_type: + type: named + name: String + display_name: + type: + type: named + name: String + metric_id: + type: + type: named + name: String + metric_name: + type: + type: named + name: String + metric_namespace: + type: + type: named + name: String + metric_source: + type: + type: named + name: String + raw_definition: + type: + type: nullable + underlying_type: + type: named + name: String + sqlmesh__metrics_metrics__metrics_v0__88067858__temp: + description: "" + fields: + aggregation_function: + type: + type: nullable + underlying_type: + type: named + name: String + definition_ref: + type: + type: nullable + underlying_type: + type: named + name: String + description: + type: + type: nullable + underlying_type: + type: named + name: String + display_name: + type: + type: named + name: String + metric_id: + type: + type: named + name: String + metric_name: + type: + type: named + name: String + metric_namespace: + type: + type: named + name: String + metric_source: + type: + type: named + name: String + raw_definition: + type: + type: nullable + underlying_type: + type: named + name: String + sqlmesh__metrics_metrics__metrics_v0__2208086179: + description: "" + fields: + aggregation_function: + type: + type: nullable + underlying_type: + type: named + name: String + definition_ref: + type: + type: nullable + underlying_type: + type: named + name: String + description: + type: + type: nullable + underlying_type: + type: named + name: String + display_name: + type: + type: named + name: String + metric_id: + type: + type: named + name: String + metric_name: + type: + type: named + name: String + metric_namespace: + type: + type: named + name: String + metric_source: + type: + type: named + name: String + raw_definition: + type: + type: nullable + underlying_type: + type: named + name: String + sqlmesh__metrics_metrics__metrics_v0__2208086179__temp: + description: "" + fields: + aggregation_function: + type: + type: nullable + underlying_type: + type: named + name: String + definition_ref: + type: + type: nullable + underlying_type: + type: named + name: String + description: + type: + type: nullable + underlying_type: + type: named + name: String + display_name: + type: + type: named + name: String + metric_id: + type: + type: named + name: String + metric_name: + type: + type: named + name: String + metric_namespace: + type: + type: named + name: String + metric_source: + type: + type: named + name: String + raw_definition: + type: + type: nullable + underlying_type: + type: named + name: String + sqlmesh__metrics_metrics__stars_to_artifact_daily__3943953320: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_artifact_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__stars_to_artifact_daily__3943953320__temp: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_artifact_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__stars_to_artifact_daily__4261634010: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_artifact_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__stars_to_artifact_daily__4261634010__temp: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_artifact_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__stars_to_artifact_monthly__2168815381: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_artifact_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__stars_to_artifact_monthly__2168815381__temp: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_artifact_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__stars_to_artifact_monthly__3342764004: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_artifact_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__stars_to_artifact_monthly__3342764004__temp: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_artifact_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__stars_to_artifact_weekly__1743497213: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_artifact_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__stars_to_artifact_weekly__1743497213__temp: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_artifact_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__stars_to_artifact_weekly__3851289333: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_artifact_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__stars_to_artifact_weekly__3851289333__temp: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_artifact_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__stars_to_collection_daily__516027240: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_collection_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__stars_to_collection_daily__516027240__temp: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_collection_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__stars_to_collection_daily__1704087402: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_collection_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__stars_to_collection_daily__1704087402__temp: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_collection_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__stars_to_collection_monthly__1295871846: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_collection_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__stars_to_collection_monthly__1295871846__temp: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_collection_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__stars_to_collection_monthly__3008979280: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_collection_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__stars_to_collection_monthly__3008979280__temp: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_collection_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__stars_to_collection_weekly__1485544187: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_collection_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__stars_to_collection_weekly__1485544187__temp: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_collection_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__stars_to_collection_weekly__3749819661: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_collection_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__stars_to_collection_weekly__3749819661__temp: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_collection_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__stars_to_project_daily__629299181: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_project_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__stars_to_project_daily__629299181__temp: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_project_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__stars_to_project_daily__3520205442: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_project_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__stars_to_project_daily__3520205442__temp: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_project_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__stars_to_project_monthly__1354212363: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_project_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__stars_to_project_monthly__1354212363__temp: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_project_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__stars_to_project_monthly__2390911040: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_project_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__stars_to_project_monthly__2390911040__temp: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_project_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__stars_to_project_weekly__2108842660: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_project_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__stars_to_project_weekly__2108842660__temp: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_project_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__stars_to_project_weekly__4146311776: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_project_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__stars_to_project_weekly__4146311776__temp: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_project_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_v0__1270130250: + description: "" + fields: + amount: + type: + type: named + name: Float64 + artifact_id: + type: + type: named + name: String + metric_id: + type: + type: named + name: String + sample_date: + type: + type: named + name: Date + unit: + type: + type: nullable + underlying_type: + type: named + name: String + sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_v0__1270130250__temp: + description: "" + fields: + amount: + type: + type: named + name: Float64 + artifact_id: + type: + type: named + name: String + metric_id: + type: + type: named + name: String + sample_date: + type: + type: named + name: Date + unit: + type: + type: nullable + underlying_type: + type: named + name: String + sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_v0__1727810142: + description: "" + fields: + amount: + type: + type: named + name: Float64 + artifact_id: + type: + type: named + name: String + metric_id: + type: + type: named + name: String + sample_date: + type: + type: named + name: Date + unit: + type: + type: nullable + underlying_type: + type: named + name: String + sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_v0__1727810142__temp: + description: "" + fields: + amount: + type: + type: named + name: Float64 + artifact_id: + type: + type: named + name: String + metric_id: + type: + type: named + name: String + sample_date: + type: + type: named + name: Date + unit: + type: + type: nullable + underlying_type: + type: named + name: String + sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_v0__1996731649: + description: "" + fields: + amount: + type: + type: named + name: Float64 + artifact_id: + type: + type: named + name: String + metric_id: + type: + type: named + name: String + sample_date: + type: + type: named + name: Date + unit: + type: + type: nullable + underlying_type: + type: named + name: String + sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_v0__1996731649__temp: + description: "" + fields: + amount: + type: + type: named + name: Float64 + artifact_id: + type: + type: named + name: String + metric_id: + type: + type: named + name: String + sample_date: + type: + type: named + name: Date + unit: + type: + type: nullable + underlying_type: + type: named + name: String + sqlmesh__metrics_metrics__timeseries_metrics_by_collection_v0__2468299318: + description: "" + fields: + amount: + type: + type: named + name: Float64 + collection_id: + type: + type: named + name: String + metric_id: + type: + type: named + name: String + sample_date: + type: + type: named + name: Date + unit: + type: + type: nullable + underlying_type: + type: named + name: String + sqlmesh__metrics_metrics__timeseries_metrics_by_collection_v0__2468299318__temp: + description: "" + fields: + amount: + type: + type: named + name: Float64 + collection_id: + type: + type: named + name: String + metric_id: + type: + type: named + name: String + sample_date: + type: + type: named + name: Date + unit: + type: + type: nullable + underlying_type: + type: named + name: String + sqlmesh__metrics_metrics__timeseries_metrics_by_collection_v0__2496789213: + description: "" + fields: + amount: + type: + type: named + name: Float64 + collection_id: + type: + type: named + name: String + metric_id: + type: + type: named + name: String + sample_date: + type: + type: named + name: Date + unit: + type: + type: nullable + underlying_type: + type: named + name: String + sqlmesh__metrics_metrics__timeseries_metrics_by_collection_v0__2496789213__temp: + description: "" + fields: + amount: + type: + type: named + name: Float64 + collection_id: + type: + type: named + name: String + metric_id: + type: + type: named + name: String + sample_date: + type: + type: named + name: Date + unit: + type: + type: nullable + underlying_type: + type: named + name: String + sqlmesh__metrics_metrics__timeseries_metrics_by_collection_v0__3525966047: + description: "" + fields: + amount: + type: + type: named + name: Float64 + collection_id: + type: + type: named + name: String + metric_id: + type: + type: named + name: String + sample_date: + type: + type: named + name: Date + unit: + type: + type: nullable + underlying_type: + type: named + name: String + sqlmesh__metrics_metrics__timeseries_metrics_by_collection_v0__3525966047__temp: + description: "" + fields: + amount: + type: + type: named + name: Float64 + collection_id: + type: + type: named + name: String + metric_id: + type: + type: named + name: String + sample_date: + type: + type: named + name: Date + unit: + type: + type: nullable + underlying_type: + type: named + name: String + sqlmesh__metrics_metrics__timeseries_metrics_by_project_v0__1782460057: + description: "" + fields: + amount: + type: + type: named + name: Float64 + metric_id: + type: + type: named + name: String + project_id: + type: + type: named + name: String + sample_date: + type: + type: named + name: Date + unit: + type: + type: nullable + underlying_type: + type: named + name: String + sqlmesh__metrics_metrics__timeseries_metrics_by_project_v0__1782460057__temp: + description: "" + fields: + amount: + type: + type: named + name: Float64 + metric_id: + type: + type: named + name: String + project_id: + type: + type: named + name: String + sample_date: + type: + type: named + name: Date + unit: + type: + type: nullable + underlying_type: + type: named + name: String + sqlmesh__metrics_metrics__timeseries_metrics_by_project_v0__1912179822: + description: "" + fields: + amount: + type: + type: named + name: Float64 + metric_id: + type: + type: named + name: String + project_id: + type: + type: named + name: String + sample_date: + type: + type: named + name: Date + unit: + type: + type: nullable + underlying_type: + type: named + name: String + sqlmesh__metrics_metrics__timeseries_metrics_by_project_v0__1912179822__temp: + description: "" + fields: + amount: + type: + type: named + name: Float64 + metric_id: + type: + type: named + name: String + project_id: + type: + type: named + name: String + sample_date: + type: + type: named + name: Date + unit: + type: + type: nullable + underlying_type: + type: named + name: String + sqlmesh__metrics_metrics__timeseries_metrics_by_project_v0__3979194729: + description: "" + fields: + amount: + type: + type: named + name: Float64 + metric_id: + type: + type: named + name: String + project_id: + type: + type: named + name: String + sample_date: + type: + type: named + name: Date + unit: + type: + type: nullable + underlying_type: + type: named + name: String + sqlmesh__metrics_metrics__timeseries_metrics_by_project_v0__3979194729__temp: + description: "" + fields: + amount: + type: + type: named + name: Float64 + metric_id: + type: + type: named + name: String + project_id: + type: + type: named + name: String + sample_date: + type: + type: named + name: Date + unit: + type: + type: nullable + underlying_type: + type: named + name: String + sqlmesh__metrics_metrics__timeseries_metrics_to_artifact__2351048721: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_artifact_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__timeseries_metrics_to_artifact__2351048721__temp: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_artifact_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__timeseries_metrics_to_artifact__3322379927: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_artifact_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__timeseries_metrics_to_artifact__3322379927__temp: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_artifact_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__timeseries_metrics_to_artifact__4207207325: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_artifact_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__timeseries_metrics_to_artifact__4207207325__temp: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_artifact_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__timeseries_metrics_to_collection__2679590610: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_collection_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__timeseries_metrics_to_collection__2679590610__temp: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_collection_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__timeseries_metrics_to_collection__3172946056: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_collection_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__timeseries_metrics_to_collection__3172946056__temp: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_collection_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__timeseries_metrics_to_collection__3648127228: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_collection_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__timeseries_metrics_to_collection__3648127228__temp: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_collection_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__timeseries_metrics_to_project__693599064: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_project_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__timeseries_metrics_to_project__693599064__temp: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_project_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__timeseries_metrics_to_project__2069061168: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_project_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__timeseries_metrics_to_project__2069061168__temp: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_project_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__timeseries_metrics_to_project__3295140178: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_project_id: + type: + type: named + name: String + sqlmesh__metrics_metrics__timeseries_metrics_to_project__3295140178__temp: + description: "" + fields: + amount: + type: + type: named + name: Float64 + event_source: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + metric: + type: + type: named + name: String + metrics_sample_date: + type: + type: named + name: Date + to_project_id: + type: + type: named + name: String + timeseries_events_by_artifact_v0: + description: "" + fields: + amount: + type: + type: named + name: Float32 + event_source: + type: + type: named + name: String + event_source_id: + type: + type: named + name: String + event_type: + type: + type: named + name: String + from_artifact_id: + type: + type: named + name: String + time: + type: + type: named + name: DateTime + to_artifact_id: + type: + type: named + name: String + users_v1: + description: "" + fields: + bio: + type: + type: named + name: String + display_name: + type: + type: named + name: String + profile_picture_url: + type: + type: named + name: String + url: + type: + type: named + name: String + user_id: + type: + type: named + name: String + user_source: + type: + type: named + name: String + user_source_id: + type: + type: named + name: String + collections: + - name: artifacts_by_project_v1 + description: "" + arguments: {} + type: artifacts_by_project_v1 + uniqueness_constraints: {} + foreign_keys: {} + - name: artifacts_v1 + description: "" + arguments: {} + type: artifacts_v1 + uniqueness_constraints: {} + foreign_keys: {} + - name: code_metrics_by_artifact_v0 + description: "" + arguments: {} + type: code_metrics_by_artifact_v0 + uniqueness_constraints: {} + foreign_keys: {} + - name: code_metrics_by_project_v1 + description: "" + arguments: {} + type: code_metrics_by_project_v1 + uniqueness_constraints: {} + foreign_keys: {} + - name: collections_v1 + description: "" + arguments: {} + type: collections_v1 + uniqueness_constraints: {} + foreign_keys: {} + - name: contracts_v0 + description: "" + arguments: {} + type: contracts_v0 + uniqueness_constraints: {} + foreign_keys: {} + - name: event_indexing_status_by_project_v1 + description: "" + arguments: {} + type: event_indexing_status_by_project_v1 + uniqueness_constraints: {} + foreign_keys: {} + - name: event_types_v1 + description: "" + arguments: {} + type: event_types_v1 + uniqueness_constraints: {} + foreign_keys: {} + - name: metrics__test_active_addresses_to_artifact_daily + description: "" + arguments: {} + type: metrics__test_active_addresses_to_artifact_daily + uniqueness_constraints: {} + foreign_keys: {} + - name: metrics__test_active_addresses_to_artifact_monthly + description: "" + arguments: {} + type: metrics__test_active_addresses_to_artifact_monthly + uniqueness_constraints: {} + foreign_keys: {} + - name: metrics__test_active_addresses_to_artifact_weekly + description: "" + arguments: {} + type: metrics__test_active_addresses_to_artifact_weekly + uniqueness_constraints: {} + foreign_keys: {} + - name: metrics__test_active_addresses_to_collection_daily + description: "" + arguments: {} + type: metrics__test_active_addresses_to_collection_daily + uniqueness_constraints: {} + foreign_keys: {} + - name: metrics__test_active_addresses_to_collection_monthly + description: "" + arguments: {} + type: metrics__test_active_addresses_to_collection_monthly + uniqueness_constraints: {} + foreign_keys: {} + - name: metrics__test_active_addresses_to_collection_weekly + description: "" + arguments: {} + type: metrics__test_active_addresses_to_collection_weekly + uniqueness_constraints: {} + foreign_keys: {} + - name: metrics__test_active_addresses_to_project_daily + description: "" + arguments: {} + type: metrics__test_active_addresses_to_project_daily + uniqueness_constraints: {} + foreign_keys: {} + - name: metrics__test_active_addresses_to_project_monthly + description: "" + arguments: {} + type: metrics__test_active_addresses_to_project_monthly + uniqueness_constraints: {} + foreign_keys: {} + - name: metrics__test_active_addresses_to_project_weekly + description: "" + arguments: {} + type: metrics__test_active_addresses_to_project_weekly + uniqueness_constraints: {} + foreign_keys: {} + - name: metrics__test_commits_to_artifact_daily + description: "" + arguments: {} + type: metrics__test_commits_to_artifact_daily + uniqueness_constraints: {} + foreign_keys: {} + - name: metrics__test_commits_to_artifact_monthly + description: "" + arguments: {} + type: metrics__test_commits_to_artifact_monthly + uniqueness_constraints: {} + foreign_keys: {} + - name: metrics__test_commits_to_artifact_weekly + description: "" + arguments: {} + type: metrics__test_commits_to_artifact_weekly + uniqueness_constraints: {} + foreign_keys: {} + - name: metrics__test_commits_to_collection_daily + description: "" + arguments: {} + type: metrics__test_commits_to_collection_daily + uniqueness_constraints: {} + foreign_keys: {} + - name: metrics__test_commits_to_collection_monthly + description: "" + arguments: {} + type: metrics__test_commits_to_collection_monthly + uniqueness_constraints: {} + foreign_keys: {} + - name: metrics__test_commits_to_collection_weekly + description: "" + arguments: {} + type: metrics__test_commits_to_collection_weekly + uniqueness_constraints: {} + foreign_keys: {} + - name: metrics__test_commits_to_project_daily + description: "" + arguments: {} + type: metrics__test_commits_to_project_daily + uniqueness_constraints: {} + foreign_keys: {} + - name: metrics__test_commits_to_project_monthly + description: "" + arguments: {} + type: metrics__test_commits_to_project_monthly + uniqueness_constraints: {} + foreign_keys: {} + - name: metrics__test_commits_to_project_weekly + description: "" + arguments: {} + type: metrics__test_commits_to_project_weekly + uniqueness_constraints: {} + foreign_keys: {} + - name: metrics__test_contributor_classifications_to_artifact_over_30_day + description: "" + arguments: {} + type: metrics__test_contributor_classifications_to_artifact_over_30_day + uniqueness_constraints: {} + foreign_keys: {} + - name: metrics__test_contributor_classifications_to_artifact_over_60_day + description: "" + arguments: {} + type: metrics__test_contributor_classifications_to_artifact_over_60_day + uniqueness_constraints: {} + foreign_keys: {} + - name: metrics__test_contributor_classifications_to_artifact_over_90_day + description: "" + arguments: {} + type: metrics__test_contributor_classifications_to_artifact_over_90_day + uniqueness_constraints: {} + foreign_keys: {} + - name: metrics__test_contributor_classifications_to_collection_over_30_day + description: "" + arguments: {} + type: metrics__test_contributor_classifications_to_collection_over_30_day + uniqueness_constraints: {} + foreign_keys: {} + - name: metrics__test_contributor_classifications_to_collection_over_60_day + description: "" + arguments: {} + type: metrics__test_contributor_classifications_to_collection_over_60_day + uniqueness_constraints: {} + foreign_keys: {} + - name: metrics__test_contributor_classifications_to_collection_over_90_day + description: "" + arguments: {} + type: metrics__test_contributor_classifications_to_collection_over_90_day + uniqueness_constraints: {} + foreign_keys: {} + - name: metrics__test_contributor_classifications_to_project_over_30_day + description: "" + arguments: {} + type: metrics__test_contributor_classifications_to_project_over_30_day + uniqueness_constraints: {} + foreign_keys: {} + - name: metrics__test_contributor_classifications_to_project_over_60_day + description: "" + arguments: {} + type: metrics__test_contributor_classifications_to_project_over_60_day + uniqueness_constraints: {} + foreign_keys: {} + - name: metrics__test_contributor_classifications_to_project_over_90_day + description: "" + arguments: {} + type: metrics__test_contributor_classifications_to_project_over_90_day + uniqueness_constraints: {} + foreign_keys: {} + - name: metrics__test_developer_active_days_to_artifact_over_30_day + description: "" + arguments: {} + type: metrics__test_developer_active_days_to_artifact_over_30_day + uniqueness_constraints: {} + foreign_keys: {} + - name: metrics__test_developer_active_days_to_artifact_over_60_day + description: "" + arguments: {} + type: metrics__test_developer_active_days_to_artifact_over_60_day + uniqueness_constraints: {} + foreign_keys: {} + - name: metrics__test_developer_active_days_to_artifact_over_90_day + description: "" + arguments: {} + type: metrics__test_developer_active_days_to_artifact_over_90_day + uniqueness_constraints: {} + foreign_keys: {} + - name: metrics__test_developer_active_days_to_collection_over_30_day + description: "" + arguments: {} + type: metrics__test_developer_active_days_to_collection_over_30_day + uniqueness_constraints: {} + foreign_keys: {} + - name: metrics__test_developer_active_days_to_collection_over_60_day + description: "" + arguments: {} + type: metrics__test_developer_active_days_to_collection_over_60_day + uniqueness_constraints: {} + foreign_keys: {} + - name: metrics__test_developer_active_days_to_collection_over_90_day + description: "" + arguments: {} + type: metrics__test_developer_active_days_to_collection_over_90_day + uniqueness_constraints: {} + foreign_keys: {} + - name: metrics__test_developer_active_days_to_project_over_30_day + description: "" + arguments: {} + type: metrics__test_developer_active_days_to_project_over_30_day + uniqueness_constraints: {} + foreign_keys: {} + - name: metrics__test_developer_active_days_to_project_over_60_day + description: "" + arguments: {} + type: metrics__test_developer_active_days_to_project_over_60_day + uniqueness_constraints: {} + foreign_keys: {} + - name: metrics__test_developer_active_days_to_project_over_90_day + description: "" + arguments: {} + type: metrics__test_developer_active_days_to_project_over_90_day + uniqueness_constraints: {} + foreign_keys: {} + - name: metrics__test_developer_classifications_to_artifact_over_30_day + description: "" + arguments: {} + type: metrics__test_developer_classifications_to_artifact_over_30_day + uniqueness_constraints: {} + foreign_keys: {} + - name: metrics__test_developer_classifications_to_artifact_over_60_day + description: "" + arguments: {} + type: metrics__test_developer_classifications_to_artifact_over_60_day + uniqueness_constraints: {} + foreign_keys: {} + - name: metrics__test_developer_classifications_to_artifact_over_90_day + description: "" + arguments: {} + type: metrics__test_developer_classifications_to_artifact_over_90_day + uniqueness_constraints: {} + foreign_keys: {} + - name: metrics__test_developer_classifications_to_collection_over_30_day + description: "" + arguments: {} + type: metrics__test_developer_classifications_to_collection_over_30_day + uniqueness_constraints: {} + foreign_keys: {} + - name: metrics__test_developer_classifications_to_collection_over_60_day + description: "" + arguments: {} + type: metrics__test_developer_classifications_to_collection_over_60_day + uniqueness_constraints: {} + foreign_keys: {} + - name: metrics__test_developer_classifications_to_collection_over_90_day + description: "" + arguments: {} + type: metrics__test_developer_classifications_to_collection_over_90_day + uniqueness_constraints: {} + foreign_keys: {} + - name: metrics__test_developer_classifications_to_project_over_30_day + description: "" + arguments: {} + type: metrics__test_developer_classifications_to_project_over_30_day + uniqueness_constraints: {} + foreign_keys: {} + - name: metrics__test_developer_classifications_to_project_over_60_day + description: "" + arguments: {} + type: metrics__test_developer_classifications_to_project_over_60_day + uniqueness_constraints: {} + foreign_keys: {} + - name: metrics__test_developer_classifications_to_project_over_90_day + description: "" + arguments: {} + type: metrics__test_developer_classifications_to_project_over_90_day + uniqueness_constraints: {} + foreign_keys: {} + - name: metrics__test_events_daily_to_artifact + description: "" + arguments: {} + type: metrics__test_events_daily_to_artifact + uniqueness_constraints: {} + foreign_keys: {} + - name: metrics__test_forks_to_artifact_daily + description: "" + arguments: {} + type: metrics__test_forks_to_artifact_daily + uniqueness_constraints: {} + foreign_keys: {} + - name: metrics__test_forks_to_artifact_monthly + description: "" + arguments: {} + type: metrics__test_forks_to_artifact_monthly + uniqueness_constraints: {} + foreign_keys: {} + - name: metrics__test_forks_to_artifact_weekly + description: "" + arguments: {} + type: metrics__test_forks_to_artifact_weekly + uniqueness_constraints: {} + foreign_keys: {} + - name: metrics__test_forks_to_collection_daily + description: "" + arguments: {} + type: metrics__test_forks_to_collection_daily + uniqueness_constraints: {} + foreign_keys: {} + - name: metrics__test_forks_to_collection_monthly + description: "" + arguments: {} + type: metrics__test_forks_to_collection_monthly + uniqueness_constraints: {} + foreign_keys: {} + - name: metrics__test_forks_to_collection_weekly + description: "" + arguments: {} + type: metrics__test_forks_to_collection_weekly + uniqueness_constraints: {} + foreign_keys: {} + - name: metrics__test_forks_to_project_daily + description: "" + arguments: {} + type: metrics__test_forks_to_project_daily + uniqueness_constraints: {} + foreign_keys: {} + - name: metrics__test_forks_to_project_monthly + description: "" + arguments: {} + type: metrics__test_forks_to_project_monthly + uniqueness_constraints: {} + foreign_keys: {} + - name: metrics__test_forks_to_project_weekly + description: "" + arguments: {} + type: metrics__test_forks_to_project_weekly + uniqueness_constraints: {} + foreign_keys: {} + - name: metrics__test_gas_fees_to_artifact_daily + description: "" + arguments: {} + type: metrics__test_gas_fees_to_artifact_daily + uniqueness_constraints: {} + foreign_keys: {} + - name: metrics__test_gas_fees_to_artifact_monthly + description: "" + arguments: {} + type: metrics__test_gas_fees_to_artifact_monthly + uniqueness_constraints: {} + foreign_keys: {} + - name: metrics__test_gas_fees_to_artifact_weekly + description: "" + arguments: {} + type: metrics__test_gas_fees_to_artifact_weekly + uniqueness_constraints: {} + foreign_keys: {} + - name: metrics__test_gas_fees_to_collection_daily + description: "" + arguments: {} + type: metrics__test_gas_fees_to_collection_daily + uniqueness_constraints: {} + foreign_keys: {} + - name: metrics__test_gas_fees_to_collection_monthly + description: "" + arguments: {} + type: metrics__test_gas_fees_to_collection_monthly + uniqueness_constraints: {} + foreign_keys: {} + - name: metrics__test_gas_fees_to_collection_weekly + description: "" + arguments: {} + type: metrics__test_gas_fees_to_collection_weekly + uniqueness_constraints: {} + foreign_keys: {} + - name: metrics__test_gas_fees_to_project_daily + description: "" + arguments: {} + type: metrics__test_gas_fees_to_project_daily + uniqueness_constraints: {} + foreign_keys: {} + - name: metrics__test_gas_fees_to_project_monthly + description: "" + arguments: {} + type: metrics__test_gas_fees_to_project_monthly + uniqueness_constraints: {} + foreign_keys: {} + - name: metrics__test_gas_fees_to_project_weekly + description: "" + arguments: {} + type: metrics__test_gas_fees_to_project_weekly + uniqueness_constraints: {} + foreign_keys: {} + - name: metrics__test_metrics_v0 + description: "" + arguments: {} + type: metrics__test_metrics_v0 + uniqueness_constraints: {} + foreign_keys: {} + - name: metrics__test_stars_to_artifact_daily + description: "" + arguments: {} + type: metrics__test_stars_to_artifact_daily + uniqueness_constraints: {} + foreign_keys: {} + - name: metrics__test_stars_to_artifact_monthly + description: "" + arguments: {} + type: metrics__test_stars_to_artifact_monthly + uniqueness_constraints: {} + foreign_keys: {} + - name: metrics__test_stars_to_artifact_weekly + description: "" + arguments: {} + type: metrics__test_stars_to_artifact_weekly + uniqueness_constraints: {} + foreign_keys: {} + - name: metrics__test_stars_to_collection_daily + description: "" + arguments: {} + type: metrics__test_stars_to_collection_daily + uniqueness_constraints: {} + foreign_keys: {} + - name: metrics__test_stars_to_collection_monthly + description: "" + arguments: {} + type: metrics__test_stars_to_collection_monthly + uniqueness_constraints: {} + foreign_keys: {} + - name: metrics__test_stars_to_collection_weekly + description: "" + arguments: {} + type: metrics__test_stars_to_collection_weekly + uniqueness_constraints: {} + foreign_keys: {} + - name: metrics__test_stars_to_project_daily + description: "" + arguments: {} + type: metrics__test_stars_to_project_daily + uniqueness_constraints: {} + foreign_keys: {} + - name: metrics__test_stars_to_project_monthly + description: "" + arguments: {} + type: metrics__test_stars_to_project_monthly + uniqueness_constraints: {} + foreign_keys: {} + - name: metrics__test_stars_to_project_weekly + description: "" + arguments: {} + type: metrics__test_stars_to_project_weekly + uniqueness_constraints: {} + foreign_keys: {} + - name: metrics__test_timeseries_metrics_by_artifact_v0 + description: "" + arguments: {} + type: metrics__test_timeseries_metrics_by_artifact_v0 + uniqueness_constraints: {} + foreign_keys: {} + - name: metrics__test_timeseries_metrics_by_collection_v0 + description: "" + arguments: {} + type: metrics__test_timeseries_metrics_by_collection_v0 + uniqueness_constraints: {} + foreign_keys: {} + - name: metrics__test_timeseries_metrics_by_project_v0 + description: "" + arguments: {} + type: metrics__test_timeseries_metrics_by_project_v0 + uniqueness_constraints: {} + foreign_keys: {} + - name: metrics__test_timeseries_metrics_to_artifact + description: "" + arguments: {} + type: metrics__test_timeseries_metrics_to_artifact + uniqueness_constraints: {} + foreign_keys: {} + - name: metrics__test_timeseries_metrics_to_collection + description: "" + arguments: {} + type: metrics__test_timeseries_metrics_to_collection + uniqueness_constraints: {} + foreign_keys: {} + - name: metrics__test_timeseries_metrics_to_project + description: "" + arguments: {} + type: metrics__test_timeseries_metrics_to_project + uniqueness_constraints: {} + foreign_keys: {} + - name: metrics_active_addresses_to_artifact_daily + description: "" + arguments: {} + type: metrics_active_addresses_to_artifact_daily + uniqueness_constraints: {} + foreign_keys: {} + - name: metrics_active_addresses_to_artifact_monthly + description: "" + arguments: {} + type: metrics_active_addresses_to_artifact_monthly + uniqueness_constraints: {} + foreign_keys: {} + - name: metrics_active_addresses_to_artifact_weekly + description: "" + arguments: {} + type: metrics_active_addresses_to_artifact_weekly + uniqueness_constraints: {} + foreign_keys: {} + - name: metrics_active_addresses_to_collection_daily + description: "" + arguments: {} + type: metrics_active_addresses_to_collection_daily + uniqueness_constraints: {} + foreign_keys: {} + - name: metrics_active_addresses_to_collection_monthly + description: "" + arguments: {} + type: metrics_active_addresses_to_collection_monthly + uniqueness_constraints: {} + foreign_keys: {} + - name: metrics_active_addresses_to_collection_weekly + description: "" + arguments: {} + type: metrics_active_addresses_to_collection_weekly + uniqueness_constraints: {} + foreign_keys: {} + - name: metrics_active_addresses_to_project_daily + description: "" + arguments: {} + type: metrics_active_addresses_to_project_daily + uniqueness_constraints: {} + foreign_keys: {} + - name: metrics_active_addresses_to_project_monthly + description: "" + arguments: {} + type: metrics_active_addresses_to_project_monthly + uniqueness_constraints: {} + foreign_keys: {} + - name: metrics_active_addresses_to_project_weekly + description: "" + arguments: {} + type: metrics_active_addresses_to_project_weekly + uniqueness_constraints: {} + foreign_keys: {} + - name: metrics_commits_to_artifact_daily + description: "" + arguments: {} + type: metrics_commits_to_artifact_daily + uniqueness_constraints: {} + foreign_keys: {} + - name: metrics_commits_to_artifact_monthly + description: "" + arguments: {} + type: metrics_commits_to_artifact_monthly + uniqueness_constraints: {} + foreign_keys: {} + - name: metrics_commits_to_artifact_weekly + description: "" + arguments: {} + type: metrics_commits_to_artifact_weekly + uniqueness_constraints: {} + foreign_keys: {} + - name: metrics_commits_to_collection_daily + description: "" + arguments: {} + type: metrics_commits_to_collection_daily + uniqueness_constraints: {} + foreign_keys: {} + - name: metrics_commits_to_collection_monthly + description: "" + arguments: {} + type: metrics_commits_to_collection_monthly + uniqueness_constraints: {} + foreign_keys: {} + - name: metrics_commits_to_collection_weekly + description: "" + arguments: {} + type: metrics_commits_to_collection_weekly + uniqueness_constraints: {} + foreign_keys: {} + - name: metrics_commits_to_project_daily + description: "" + arguments: {} + type: metrics_commits_to_project_daily + uniqueness_constraints: {} + foreign_keys: {} + - name: metrics_commits_to_project_monthly + description: "" + arguments: {} + type: metrics_commits_to_project_monthly + uniqueness_constraints: {} + foreign_keys: {} + - name: metrics_commits_to_project_weekly + description: "" + arguments: {} + type: metrics_commits_to_project_weekly + uniqueness_constraints: {} + foreign_keys: {} + - name: metrics_contributor_classifications_to_artifact_over_30_day + description: "" + arguments: {} + type: metrics_contributor_classifications_to_artifact_over_30_day + uniqueness_constraints: {} + foreign_keys: {} + - name: metrics_contributor_classifications_to_artifact_over_60_day + description: "" + arguments: {} + type: metrics_contributor_classifications_to_artifact_over_60_day + uniqueness_constraints: {} + foreign_keys: {} + - name: metrics_contributor_classifications_to_artifact_over_90_day + description: "" + arguments: {} + type: metrics_contributor_classifications_to_artifact_over_90_day + uniqueness_constraints: {} + foreign_keys: {} + - name: metrics_contributor_classifications_to_collection_over_30_day + description: "" + arguments: {} + type: metrics_contributor_classifications_to_collection_over_30_day + uniqueness_constraints: {} + foreign_keys: {} + - name: metrics_contributor_classifications_to_collection_over_60_day + description: "" + arguments: {} + type: metrics_contributor_classifications_to_collection_over_60_day + uniqueness_constraints: {} + foreign_keys: {} + - name: metrics_contributor_classifications_to_collection_over_90_day + description: "" + arguments: {} + type: metrics_contributor_classifications_to_collection_over_90_day + uniqueness_constraints: {} + foreign_keys: {} + - name: metrics_contributor_classifications_to_project_over_30_day + description: "" + arguments: {} + type: metrics_contributor_classifications_to_project_over_30_day + uniqueness_constraints: {} + foreign_keys: {} + - name: metrics_contributor_classifications_to_project_over_60_day + description: "" + arguments: {} + type: metrics_contributor_classifications_to_project_over_60_day + uniqueness_constraints: {} + foreign_keys: {} + - name: metrics_contributor_classifications_to_project_over_90_day + description: "" + arguments: {} + type: metrics_contributor_classifications_to_project_over_90_day + uniqueness_constraints: {} + foreign_keys: {} + - name: metrics_developer_active_days_to_artifact_over_30_day + description: "" + arguments: {} + type: metrics_developer_active_days_to_artifact_over_30_day + uniqueness_constraints: {} + foreign_keys: {} + - name: metrics_developer_active_days_to_artifact_over_60_day + description: "" + arguments: {} + type: metrics_developer_active_days_to_artifact_over_60_day + uniqueness_constraints: {} + foreign_keys: {} + - name: metrics_developer_active_days_to_artifact_over_90_day + description: "" + arguments: {} + type: metrics_developer_active_days_to_artifact_over_90_day + uniqueness_constraints: {} + foreign_keys: {} + - name: metrics_developer_active_days_to_collection_over_30_day + description: "" + arguments: {} + type: metrics_developer_active_days_to_collection_over_30_day + uniqueness_constraints: {} + foreign_keys: {} + - name: metrics_developer_active_days_to_collection_over_60_day + description: "" + arguments: {} + type: metrics_developer_active_days_to_collection_over_60_day + uniqueness_constraints: {} + foreign_keys: {} + - name: metrics_developer_active_days_to_collection_over_90_day + description: "" + arguments: {} + type: metrics_developer_active_days_to_collection_over_90_day + uniqueness_constraints: {} + foreign_keys: {} + - name: metrics_developer_active_days_to_project_over_30_day + description: "" + arguments: {} + type: metrics_developer_active_days_to_project_over_30_day + uniqueness_constraints: {} + foreign_keys: {} + - name: metrics_developer_active_days_to_project_over_60_day + description: "" + arguments: {} + type: metrics_developer_active_days_to_project_over_60_day + uniqueness_constraints: {} + foreign_keys: {} + - name: metrics_developer_active_days_to_project_over_90_day + description: "" + arguments: {} + type: metrics_developer_active_days_to_project_over_90_day + uniqueness_constraints: {} + foreign_keys: {} + - name: metrics_developer_classifications_to_artifact_over_30_day + description: "" + arguments: {} + type: metrics_developer_classifications_to_artifact_over_30_day + uniqueness_constraints: {} + foreign_keys: {} + - name: metrics_developer_classifications_to_artifact_over_60_day + description: "" + arguments: {} + type: metrics_developer_classifications_to_artifact_over_60_day + uniqueness_constraints: {} + foreign_keys: {} + - name: metrics_developer_classifications_to_artifact_over_90_day + description: "" + arguments: {} + type: metrics_developer_classifications_to_artifact_over_90_day + uniqueness_constraints: {} + foreign_keys: {} + - name: metrics_developer_classifications_to_collection_over_30_day + description: "" + arguments: {} + type: metrics_developer_classifications_to_collection_over_30_day + uniqueness_constraints: {} + foreign_keys: {} + - name: metrics_developer_classifications_to_collection_over_60_day + description: "" + arguments: {} + type: metrics_developer_classifications_to_collection_over_60_day + uniqueness_constraints: {} + foreign_keys: {} + - name: metrics_developer_classifications_to_collection_over_90_day + description: "" + arguments: {} + type: metrics_developer_classifications_to_collection_over_90_day + uniqueness_constraints: {} + foreign_keys: {} + - name: metrics_developer_classifications_to_project_over_30_day + description: "" + arguments: {} + type: metrics_developer_classifications_to_project_over_30_day + uniqueness_constraints: {} + foreign_keys: {} + - name: metrics_developer_classifications_to_project_over_60_day + description: "" + arguments: {} + type: metrics_developer_classifications_to_project_over_60_day + uniqueness_constraints: {} + foreign_keys: {} + - name: metrics_developer_classifications_to_project_over_90_day + description: "" + arguments: {} + type: metrics_developer_classifications_to_project_over_90_day + uniqueness_constraints: {} + foreign_keys: {} + - name: metrics_events_daily_to_artifact + description: "" + arguments: {} + type: metrics_events_daily_to_artifact + uniqueness_constraints: {} + foreign_keys: {} + - name: metrics_forks_to_artifact_daily + description: "" + arguments: {} + type: metrics_forks_to_artifact_daily + uniqueness_constraints: {} + foreign_keys: {} + - name: metrics_forks_to_artifact_monthly + description: "" + arguments: {} + type: metrics_forks_to_artifact_monthly + uniqueness_constraints: {} + foreign_keys: {} + - name: metrics_forks_to_artifact_weekly + description: "" + arguments: {} + type: metrics_forks_to_artifact_weekly + uniqueness_constraints: {} + foreign_keys: {} + - name: metrics_forks_to_collection_daily + description: "" + arguments: {} + type: metrics_forks_to_collection_daily + uniqueness_constraints: {} + foreign_keys: {} + - name: metrics_forks_to_collection_monthly + description: "" + arguments: {} + type: metrics_forks_to_collection_monthly + uniqueness_constraints: {} + foreign_keys: {} + - name: metrics_forks_to_collection_weekly + description: "" + arguments: {} + type: metrics_forks_to_collection_weekly + uniqueness_constraints: {} + foreign_keys: {} + - name: metrics_forks_to_project_daily + description: "" + arguments: {} + type: metrics_forks_to_project_daily + uniqueness_constraints: {} + foreign_keys: {} + - name: metrics_forks_to_project_monthly + description: "" + arguments: {} + type: metrics_forks_to_project_monthly + uniqueness_constraints: {} + foreign_keys: {} + - name: metrics_forks_to_project_weekly + description: "" + arguments: {} + type: metrics_forks_to_project_weekly + uniqueness_constraints: {} + foreign_keys: {} + - name: metrics_gas_fees_to_artifact_daily + description: "" + arguments: {} + type: metrics_gas_fees_to_artifact_daily + uniqueness_constraints: {} + foreign_keys: {} + - name: metrics_gas_fees_to_artifact_monthly + description: "" + arguments: {} + type: metrics_gas_fees_to_artifact_monthly + uniqueness_constraints: {} + foreign_keys: {} + - name: metrics_gas_fees_to_artifact_weekly + description: "" + arguments: {} + type: metrics_gas_fees_to_artifact_weekly + uniqueness_constraints: {} + foreign_keys: {} + - name: metrics_gas_fees_to_collection_daily + description: "" + arguments: {} + type: metrics_gas_fees_to_collection_daily + uniqueness_constraints: {} + foreign_keys: {} + - name: metrics_gas_fees_to_collection_monthly + description: "" + arguments: {} + type: metrics_gas_fees_to_collection_monthly + uniqueness_constraints: {} + foreign_keys: {} + - name: metrics_gas_fees_to_collection_weekly + description: "" + arguments: {} + type: metrics_gas_fees_to_collection_weekly + uniqueness_constraints: {} + foreign_keys: {} + - name: metrics_gas_fees_to_project_daily + description: "" + arguments: {} + type: metrics_gas_fees_to_project_daily + uniqueness_constraints: {} + foreign_keys: {} + - name: metrics_gas_fees_to_project_monthly + description: "" + arguments: {} + type: metrics_gas_fees_to_project_monthly + uniqueness_constraints: {} + foreign_keys: {} + - name: metrics_gas_fees_to_project_weekly + description: "" + arguments: {} + type: metrics_gas_fees_to_project_weekly + uniqueness_constraints: {} + foreign_keys: {} + - name: metrics_metrics_v0 + description: "" + arguments: {} + type: metrics_metrics_v0 + uniqueness_constraints: {} + foreign_keys: {} + - name: metrics_stars_to_artifact_daily + description: "" + arguments: {} + type: metrics_stars_to_artifact_daily + uniqueness_constraints: {} + foreign_keys: {} + - name: metrics_stars_to_artifact_monthly + description: "" + arguments: {} + type: metrics_stars_to_artifact_monthly + uniqueness_constraints: {} + foreign_keys: {} + - name: metrics_stars_to_artifact_weekly + description: "" + arguments: {} + type: metrics_stars_to_artifact_weekly + uniqueness_constraints: {} + foreign_keys: {} + - name: metrics_stars_to_collection_daily + description: "" + arguments: {} + type: metrics_stars_to_collection_daily + uniqueness_constraints: {} + foreign_keys: {} + - name: metrics_stars_to_collection_monthly + description: "" + arguments: {} + type: metrics_stars_to_collection_monthly + uniqueness_constraints: {} + foreign_keys: {} + - name: metrics_stars_to_collection_weekly + description: "" + arguments: {} + type: metrics_stars_to_collection_weekly + uniqueness_constraints: {} + foreign_keys: {} + - name: metrics_stars_to_project_daily + description: "" + arguments: {} + type: metrics_stars_to_project_daily + uniqueness_constraints: {} + foreign_keys: {} + - name: metrics_stars_to_project_monthly + description: "" + arguments: {} + type: metrics_stars_to_project_monthly + uniqueness_constraints: {} + foreign_keys: {} + - name: metrics_stars_to_project_weekly + description: "" + arguments: {} + type: metrics_stars_to_project_weekly + uniqueness_constraints: {} + foreign_keys: {} + - name: metrics_timeseries_metrics_by_artifact_v0 + description: "" + arguments: {} + type: metrics_timeseries_metrics_by_artifact_v0 + uniqueness_constraints: {} + foreign_keys: {} + - name: metrics_timeseries_metrics_by_collection_v0 + description: "" + arguments: {} + type: metrics_timeseries_metrics_by_collection_v0 + uniqueness_constraints: {} + foreign_keys: {} + - name: metrics_timeseries_metrics_by_project_v0 + description: "" + arguments: {} + type: metrics_timeseries_metrics_by_project_v0 + uniqueness_constraints: {} + foreign_keys: {} + - name: metrics_timeseries_metrics_to_artifact + description: "" + arguments: {} + type: metrics_timeseries_metrics_to_artifact + uniqueness_constraints: {} + foreign_keys: {} + - name: metrics_timeseries_metrics_to_collection + description: "" + arguments: {} + type: metrics_timeseries_metrics_to_collection + uniqueness_constraints: {} + foreign_keys: {} + - name: metrics_timeseries_metrics_to_project + description: "" + arguments: {} + type: metrics_timeseries_metrics_to_project + uniqueness_constraints: {} + foreign_keys: {} + - name: onchain_metrics_by_project_v1 + description: "" + arguments: {} + type: onchain_metrics_by_project_v1 + uniqueness_constraints: {} + foreign_keys: {} + - name: projects_by_collection_v1 + description: "" + arguments: {} + type: projects_by_collection_v1 + uniqueness_constraints: {} + foreign_keys: {} + - name: projects_v1 + description: "" + arguments: {} + type: projects_v1 + uniqueness_constraints: {} + foreign_keys: {} + - name: reuventest_events_daily_to_artifact + description: "" + arguments: {} + type: reuventest_events_daily_to_artifact + uniqueness_constraints: + event_type, event_source, from_artifact_id, to_artifact_id, bucket_day: + unique_columns: + - bucket_day + - event_source + - event_type + - from_artifact_id + - to_artifact_id + foreign_keys: {} + - name: reuventest_events_daily_to_artifact_mv + description: "" + arguments: {} + type: reuventest_events_daily_to_artifact_mv + uniqueness_constraints: {} + foreign_keys: {} + - name: reuventest_events_null + description: "" + arguments: {} + type: reuventest_events_null + uniqueness_constraints: {} + foreign_keys: {} + - name: sqlmesh__metrics_metrics__active_addresses_to_artifact_daily__1451097649 + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__active_addresses_to_artifact_daily__1451097649 + uniqueness_constraints: {} + foreign_keys: {} + - name: sqlmesh__metrics_metrics__active_addresses_to_artifact_daily__1451097649__temp + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__active_addresses_to_artifact_daily__1451097649__temp + uniqueness_constraints: {} + foreign_keys: {} + - name: sqlmesh__metrics_metrics__active_addresses_to_artifact_daily__4067249413 + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__active_addresses_to_artifact_daily__4067249413 + uniqueness_constraints: {} + foreign_keys: {} + - name: sqlmesh__metrics_metrics__active_addresses_to_artifact_daily__4067249413__temp + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__active_addresses_to_artifact_daily__4067249413__temp + uniqueness_constraints: {} + foreign_keys: {} + - name: sqlmesh__metrics_metrics__active_addresses_to_artifact_monthly__2869240330 + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__active_addresses_to_artifact_monthly__2869240330 + uniqueness_constraints: {} + foreign_keys: {} + - name: sqlmesh__metrics_metrics__active_addresses_to_artifact_monthly__2869240330__temp + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__active_addresses_to_artifact_monthly__2869240330__temp + uniqueness_constraints: {} + foreign_keys: {} + - name: sqlmesh__metrics_metrics__active_addresses_to_artifact_monthly__3897035807 + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__active_addresses_to_artifact_monthly__3897035807 + uniqueness_constraints: {} + foreign_keys: {} + - name: sqlmesh__metrics_metrics__active_addresses_to_artifact_monthly__3897035807__temp + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__active_addresses_to_artifact_monthly__3897035807__temp + uniqueness_constraints: {} + foreign_keys: {} + - name: sqlmesh__metrics_metrics__active_addresses_to_artifact_weekly__3021279003 + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__active_addresses_to_artifact_weekly__3021279003 + uniqueness_constraints: {} + foreign_keys: {} + - name: sqlmesh__metrics_metrics__active_addresses_to_artifact_weekly__3021279003__temp + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__active_addresses_to_artifact_weekly__3021279003__temp + uniqueness_constraints: {} + foreign_keys: {} + - name: sqlmesh__metrics_metrics__active_addresses_to_artifact_weekly__585528268 + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__active_addresses_to_artifact_weekly__585528268 + uniqueness_constraints: {} + foreign_keys: {} + - name: sqlmesh__metrics_metrics__active_addresses_to_artifact_weekly__585528268__temp + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__active_addresses_to_artifact_weekly__585528268__temp + uniqueness_constraints: {} + foreign_keys: {} + - name: sqlmesh__metrics_metrics__active_addresses_to_collection_daily__2961514227 + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__active_addresses_to_collection_daily__2961514227 + uniqueness_constraints: {} + foreign_keys: {} + - name: sqlmesh__metrics_metrics__active_addresses_to_collection_daily__2961514227__temp + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__active_addresses_to_collection_daily__2961514227__temp + uniqueness_constraints: {} + foreign_keys: {} + - name: sqlmesh__metrics_metrics__active_addresses_to_collection_daily__48316747 + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__active_addresses_to_collection_daily__48316747 + uniqueness_constraints: {} + foreign_keys: {} + - name: sqlmesh__metrics_metrics__active_addresses_to_collection_daily__48316747__temp + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__active_addresses_to_collection_daily__48316747__temp + uniqueness_constraints: {} + foreign_keys: {} + - name: sqlmesh__metrics_metrics__active_addresses_to_collection_monthly__2299528175 + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__active_addresses_to_collection_monthly__2299528175 + uniqueness_constraints: {} + foreign_keys: {} + - name: sqlmesh__metrics_metrics__active_addresses_to_collection_monthly__2299528175__temp + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__active_addresses_to_collection_monthly__2299528175__temp + uniqueness_constraints: {} + foreign_keys: {} + - name: sqlmesh__metrics_metrics__active_addresses_to_collection_monthly__383354905 + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__active_addresses_to_collection_monthly__383354905 + uniqueness_constraints: {} + foreign_keys: {} + - name: sqlmesh__metrics_metrics__active_addresses_to_collection_monthly__383354905__temp + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__active_addresses_to_collection_monthly__383354905__temp + uniqueness_constraints: {} + foreign_keys: {} + - name: sqlmesh__metrics_metrics__active_addresses_to_collection_weekly__827715063 + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__active_addresses_to_collection_weekly__827715063 + uniqueness_constraints: {} + foreign_keys: {} + - name: sqlmesh__metrics_metrics__active_addresses_to_collection_weekly__827715063__temp + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__active_addresses_to_collection_weekly__827715063__temp + uniqueness_constraints: {} + foreign_keys: {} + - name: sqlmesh__metrics_metrics__active_addresses_to_collection_weekly__84759969 + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__active_addresses_to_collection_weekly__84759969 + uniqueness_constraints: {} + foreign_keys: {} + - name: sqlmesh__metrics_metrics__active_addresses_to_collection_weekly__84759969__temp + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__active_addresses_to_collection_weekly__84759969__temp + uniqueness_constraints: {} + foreign_keys: {} + - name: sqlmesh__metrics_metrics__active_addresses_to_project_daily__2184062176 + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__active_addresses_to_project_daily__2184062176 + uniqueness_constraints: {} + foreign_keys: {} + - name: sqlmesh__metrics_metrics__active_addresses_to_project_daily__2184062176__temp + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__active_addresses_to_project_daily__2184062176__temp + uniqueness_constraints: {} + foreign_keys: {} + - name: sqlmesh__metrics_metrics__active_addresses_to_project_daily__445087334 + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__active_addresses_to_project_daily__445087334 + uniqueness_constraints: {} + foreign_keys: {} + - name: sqlmesh__metrics_metrics__active_addresses_to_project_daily__445087334__temp + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__active_addresses_to_project_daily__445087334__temp + uniqueness_constraints: {} + foreign_keys: {} + - name: sqlmesh__metrics_metrics__active_addresses_to_project_monthly__1155158455 + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__active_addresses_to_project_monthly__1155158455 + uniqueness_constraints: {} + foreign_keys: {} + - name: sqlmesh__metrics_metrics__active_addresses_to_project_monthly__1155158455__temp + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__active_addresses_to_project_monthly__1155158455__temp + uniqueness_constraints: {} + foreign_keys: {} + - name: sqlmesh__metrics_metrics__active_addresses_to_project_monthly__1940167565 + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__active_addresses_to_project_monthly__1940167565 + uniqueness_constraints: {} + foreign_keys: {} + - name: sqlmesh__metrics_metrics__active_addresses_to_project_monthly__1940167565__temp + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__active_addresses_to_project_monthly__1940167565__temp + uniqueness_constraints: {} + foreign_keys: {} + - name: sqlmesh__metrics_metrics__active_addresses_to_project_weekly__2067969286 + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__active_addresses_to_project_weekly__2067969286 + uniqueness_constraints: {} + foreign_keys: {} + - name: sqlmesh__metrics_metrics__active_addresses_to_project_weekly__2067969286__temp + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__active_addresses_to_project_weekly__2067969286__temp + uniqueness_constraints: {} + foreign_keys: {} + - name: sqlmesh__metrics_metrics__active_addresses_to_project_weekly__3486119930 + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__active_addresses_to_project_weekly__3486119930 + uniqueness_constraints: {} + foreign_keys: {} + - name: sqlmesh__metrics_metrics__active_addresses_to_project_weekly__3486119930__temp + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__active_addresses_to_project_weekly__3486119930__temp + uniqueness_constraints: {} + foreign_keys: {} + - name: sqlmesh__metrics_metrics__commits_to_artifact_daily__3019250927 + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__commits_to_artifact_daily__3019250927 + uniqueness_constraints: {} + foreign_keys: {} + - name: sqlmesh__metrics_metrics__commits_to_artifact_daily__3019250927__temp + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__commits_to_artifact_daily__3019250927__temp + uniqueness_constraints: {} + foreign_keys: {} + - name: sqlmesh__metrics_metrics__commits_to_artifact_daily__384003590 + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__commits_to_artifact_daily__384003590 + uniqueness_constraints: {} + foreign_keys: {} + - name: sqlmesh__metrics_metrics__commits_to_artifact_daily__384003590__temp + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__commits_to_artifact_daily__384003590__temp + uniqueness_constraints: {} + foreign_keys: {} + - name: sqlmesh__metrics_metrics__commits_to_artifact_monthly__627485741 + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__commits_to_artifact_monthly__627485741 + uniqueness_constraints: {} + foreign_keys: {} + - name: sqlmesh__metrics_metrics__commits_to_artifact_monthly__627485741__temp + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__commits_to_artifact_monthly__627485741__temp + uniqueness_constraints: {} + foreign_keys: {} + - name: sqlmesh__metrics_metrics__commits_to_artifact_monthly__891933314 + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__commits_to_artifact_monthly__891933314 + uniqueness_constraints: {} + foreign_keys: {} + - name: sqlmesh__metrics_metrics__commits_to_artifact_monthly__891933314__temp + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__commits_to_artifact_monthly__891933314__temp + uniqueness_constraints: {} + foreign_keys: {} + - name: sqlmesh__metrics_metrics__commits_to_artifact_weekly__3680977809 + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__commits_to_artifact_weekly__3680977809 + uniqueness_constraints: {} + foreign_keys: {} + - name: sqlmesh__metrics_metrics__commits_to_artifact_weekly__3680977809__temp + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__commits_to_artifact_weekly__3680977809__temp + uniqueness_constraints: {} + foreign_keys: {} + - name: sqlmesh__metrics_metrics__commits_to_artifact_weekly__3772586010 + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__commits_to_artifact_weekly__3772586010 + uniqueness_constraints: {} + foreign_keys: {} + - name: sqlmesh__metrics_metrics__commits_to_artifact_weekly__3772586010__temp + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__commits_to_artifact_weekly__3772586010__temp + uniqueness_constraints: {} + foreign_keys: {} + - name: sqlmesh__metrics_metrics__commits_to_collection_daily__1391967423 + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__commits_to_collection_daily__1391967423 + uniqueness_constraints: {} + foreign_keys: {} + - name: sqlmesh__metrics_metrics__commits_to_collection_daily__1391967423__temp + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__commits_to_collection_daily__1391967423__temp + uniqueness_constraints: {} + foreign_keys: {} + - name: sqlmesh__metrics_metrics__commits_to_collection_daily__2104049234 + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__commits_to_collection_daily__2104049234 + uniqueness_constraints: {} + foreign_keys: {} + - name: sqlmesh__metrics_metrics__commits_to_collection_daily__2104049234__temp + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__commits_to_collection_daily__2104049234__temp + uniqueness_constraints: {} + foreign_keys: {} + - name: sqlmesh__metrics_metrics__commits_to_collection_monthly__2146928748 + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__commits_to_collection_monthly__2146928748 + uniqueness_constraints: {} + foreign_keys: {} + - name: sqlmesh__metrics_metrics__commits_to_collection_monthly__2146928748__temp + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__commits_to_collection_monthly__2146928748__temp + uniqueness_constraints: {} + foreign_keys: {} + - name: sqlmesh__metrics_metrics__commits_to_collection_monthly__2714929276 + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__commits_to_collection_monthly__2714929276 + uniqueness_constraints: {} + foreign_keys: {} + - name: sqlmesh__metrics_metrics__commits_to_collection_monthly__2714929276__temp + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__commits_to_collection_monthly__2714929276__temp + uniqueness_constraints: {} + foreign_keys: {} + - name: sqlmesh__metrics_metrics__commits_to_collection_weekly__2525167268 + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__commits_to_collection_weekly__2525167268 + uniqueness_constraints: {} + foreign_keys: {} + - name: sqlmesh__metrics_metrics__commits_to_collection_weekly__2525167268__temp + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__commits_to_collection_weekly__2525167268__temp + uniqueness_constraints: {} + foreign_keys: {} + - name: sqlmesh__metrics_metrics__commits_to_collection_weekly__3070326138 + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__commits_to_collection_weekly__3070326138 + uniqueness_constraints: {} + foreign_keys: {} + - name: sqlmesh__metrics_metrics__commits_to_collection_weekly__3070326138__temp + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__commits_to_collection_weekly__3070326138__temp + uniqueness_constraints: {} + foreign_keys: {} + - name: sqlmesh__metrics_metrics__commits_to_project_daily__2991942092 + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__commits_to_project_daily__2991942092 + uniqueness_constraints: {} + foreign_keys: {} + - name: sqlmesh__metrics_metrics__commits_to_project_daily__2991942092__temp + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__commits_to_project_daily__2991942092__temp + uniqueness_constraints: {} + foreign_keys: {} + - name: sqlmesh__metrics_metrics__commits_to_project_daily__3560291209 + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__commits_to_project_daily__3560291209 + uniqueness_constraints: {} + foreign_keys: {} + - name: sqlmesh__metrics_metrics__commits_to_project_daily__3560291209__temp + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__commits_to_project_daily__3560291209__temp + uniqueness_constraints: {} + foreign_keys: {} + - name: sqlmesh__metrics_metrics__commits_to_project_monthly__165981058 + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__commits_to_project_monthly__165981058 + uniqueness_constraints: {} + foreign_keys: {} + - name: sqlmesh__metrics_metrics__commits_to_project_monthly__165981058__temp + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__commits_to_project_monthly__165981058__temp + uniqueness_constraints: {} + foreign_keys: {} + - name: sqlmesh__metrics_metrics__commits_to_project_monthly__626680148 + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__commits_to_project_monthly__626680148 + uniqueness_constraints: {} + foreign_keys: {} + - name: sqlmesh__metrics_metrics__commits_to_project_monthly__626680148__temp + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__commits_to_project_monthly__626680148__temp + uniqueness_constraints: {} + foreign_keys: {} + - name: sqlmesh__metrics_metrics__commits_to_project_weekly__1130064547 + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__commits_to_project_weekly__1130064547 + uniqueness_constraints: {} + foreign_keys: {} + - name: sqlmesh__metrics_metrics__commits_to_project_weekly__1130064547__temp + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__commits_to_project_weekly__1130064547__temp + uniqueness_constraints: {} + foreign_keys: {} + - name: sqlmesh__metrics_metrics__commits_to_project_weekly__1769590475 + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__commits_to_project_weekly__1769590475 + uniqueness_constraints: {} + foreign_keys: {} + - name: sqlmesh__metrics_metrics__commits_to_project_weekly__1769590475__temp + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__commits_to_project_weekly__1769590475__temp + uniqueness_constraints: {} + foreign_keys: {} + - name: sqlmesh__metrics_metrics__contributor_classifications_to_artifact_over_30_day__1293957495 + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__contributor_classifications_to_artifact_over_30_day__1293957495 + uniqueness_constraints: {} + foreign_keys: {} + - name: sqlmesh__metrics_metrics__contributor_classifications_to_artifact_over_30_day__1293957495__temp + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__contributor_classifications_to_artifact_over_30_day__1293957495__temp + uniqueness_constraints: {} + foreign_keys: {} + - name: sqlmesh__metrics_metrics__contributor_classifications_to_artifact_over_30_day__700718732 + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__contributor_classifications_to_artifact_over_30_day__700718732 + uniqueness_constraints: {} + foreign_keys: {} + - name: sqlmesh__metrics_metrics__contributor_classifications_to_artifact_over_30_day__700718732__temp + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__contributor_classifications_to_artifact_over_30_day__700718732__temp + uniqueness_constraints: {} + foreign_keys: {} + - name: sqlmesh__metrics_metrics__contributor_classifications_to_artifact_over_60_day__4174814200 + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__contributor_classifications_to_artifact_over_60_day__4174814200 + uniqueness_constraints: {} + foreign_keys: {} + - name: sqlmesh__metrics_metrics__contributor_classifications_to_artifact_over_60_day__4174814200__temp + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__contributor_classifications_to_artifact_over_60_day__4174814200__temp + uniqueness_constraints: {} + foreign_keys: {} + - name: sqlmesh__metrics_metrics__contributor_classifications_to_artifact_over_60_day__513193079 + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__contributor_classifications_to_artifact_over_60_day__513193079 + uniqueness_constraints: {} + foreign_keys: {} + - name: sqlmesh__metrics_metrics__contributor_classifications_to_artifact_over_60_day__513193079__temp + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__contributor_classifications_to_artifact_over_60_day__513193079__temp + uniqueness_constraints: {} + foreign_keys: {} + - name: sqlmesh__metrics_metrics__contributor_classifications_to_artifact_over_90_day__1883848372 + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__contributor_classifications_to_artifact_over_90_day__1883848372 + uniqueness_constraints: {} + foreign_keys: {} + - name: sqlmesh__metrics_metrics__contributor_classifications_to_artifact_over_90_day__1883848372__temp + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__contributor_classifications_to_artifact_over_90_day__1883848372__temp + uniqueness_constraints: {} + foreign_keys: {} + - name: sqlmesh__metrics_metrics__contributor_classifications_to_artifact_over_90_day__648386949 + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__contributor_classifications_to_artifact_over_90_day__648386949 + uniqueness_constraints: {} + foreign_keys: {} + - name: sqlmesh__metrics_metrics__contributor_classifications_to_artifact_over_90_day__648386949__temp + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__contributor_classifications_to_artifact_over_90_day__648386949__temp + uniqueness_constraints: {} + foreign_keys: {} + - name: sqlmesh__metrics_metrics__contributor_classifications_to_collection_over_30_day__1375928387 + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__contributor_classifications_to_collection_over_30_day__1375928387 + uniqueness_constraints: {} + foreign_keys: {} + - name: sqlmesh__metrics_metrics__contributor_classifications_to_collection_over_30_day__1375928387__temp + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__contributor_classifications_to_collection_over_30_day__1375928387__temp + uniqueness_constraints: {} + foreign_keys: {} + - name: sqlmesh__metrics_metrics__contributor_classifications_to_collection_over_30_day__3775457162 + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__contributor_classifications_to_collection_over_30_day__3775457162 + uniqueness_constraints: {} + foreign_keys: {} + - name: sqlmesh__metrics_metrics__contributor_classifications_to_collection_over_30_day__3775457162__temp + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__contributor_classifications_to_collection_over_30_day__3775457162__temp + uniqueness_constraints: {} + foreign_keys: {} + - name: sqlmesh__metrics_metrics__contributor_classifications_to_collection_over_60_day__2167309429 + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__contributor_classifications_to_collection_over_60_day__2167309429 + uniqueness_constraints: {} + foreign_keys: {} + - name: sqlmesh__metrics_metrics__contributor_classifications_to_collection_over_60_day__2167309429__temp + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__contributor_classifications_to_collection_over_60_day__2167309429__temp + uniqueness_constraints: {} + foreign_keys: {} + - name: sqlmesh__metrics_metrics__contributor_classifications_to_collection_over_60_day__793383406 + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__contributor_classifications_to_collection_over_60_day__793383406 + uniqueness_constraints: {} + foreign_keys: {} + - name: sqlmesh__metrics_metrics__contributor_classifications_to_collection_over_60_day__793383406__temp + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__contributor_classifications_to_collection_over_60_day__793383406__temp + uniqueness_constraints: {} + foreign_keys: {} + - name: sqlmesh__metrics_metrics__contributor_classifications_to_collection_over_90_day__1776377347 + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__contributor_classifications_to_collection_over_90_day__1776377347 + uniqueness_constraints: {} + foreign_keys: {} + - name: sqlmesh__metrics_metrics__contributor_classifications_to_collection_over_90_day__1776377347__temp + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__contributor_classifications_to_collection_over_90_day__1776377347__temp + uniqueness_constraints: {} + foreign_keys: {} + - name: sqlmesh__metrics_metrics__contributor_classifications_to_collection_over_90_day__2342269647 + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__contributor_classifications_to_collection_over_90_day__2342269647 + uniqueness_constraints: {} + foreign_keys: {} + - name: sqlmesh__metrics_metrics__contributor_classifications_to_collection_over_90_day__2342269647__temp + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__contributor_classifications_to_collection_over_90_day__2342269647__temp + uniqueness_constraints: {} + foreign_keys: {} + - name: sqlmesh__metrics_metrics__contributor_classifications_to_project_over_30_day__3386019216 + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__contributor_classifications_to_project_over_30_day__3386019216 + uniqueness_constraints: {} + foreign_keys: {} + - name: sqlmesh__metrics_metrics__contributor_classifications_to_project_over_30_day__3386019216__temp + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__contributor_classifications_to_project_over_30_day__3386019216__temp + uniqueness_constraints: {} + foreign_keys: {} + - name: sqlmesh__metrics_metrics__contributor_classifications_to_project_over_30_day__3621045737 + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__contributor_classifications_to_project_over_30_day__3621045737 + uniqueness_constraints: {} + foreign_keys: {} + - name: sqlmesh__metrics_metrics__contributor_classifications_to_project_over_30_day__3621045737__temp + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__contributor_classifications_to_project_over_30_day__3621045737__temp + uniqueness_constraints: {} + foreign_keys: {} + - name: sqlmesh__metrics_metrics__contributor_classifications_to_project_over_60_day__1363814395 + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__contributor_classifications_to_project_over_60_day__1363814395 + uniqueness_constraints: {} + foreign_keys: {} + - name: sqlmesh__metrics_metrics__contributor_classifications_to_project_over_60_day__1363814395__temp + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__contributor_classifications_to_project_over_60_day__1363814395__temp + uniqueness_constraints: {} + foreign_keys: {} + - name: sqlmesh__metrics_metrics__contributor_classifications_to_project_over_60_day__1364596116 + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__contributor_classifications_to_project_over_60_day__1364596116 + uniqueness_constraints: {} + foreign_keys: {} + - name: sqlmesh__metrics_metrics__contributor_classifications_to_project_over_60_day__1364596116__temp + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__contributor_classifications_to_project_over_60_day__1364596116__temp + uniqueness_constraints: {} + foreign_keys: {} + - name: sqlmesh__metrics_metrics__contributor_classifications_to_project_over_90_day__3482993181 + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__contributor_classifications_to_project_over_90_day__3482993181 + uniqueness_constraints: {} + foreign_keys: {} + - name: sqlmesh__metrics_metrics__contributor_classifications_to_project_over_90_day__3482993181__temp + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__contributor_classifications_to_project_over_90_day__3482993181__temp + uniqueness_constraints: {} + foreign_keys: {} + - name: sqlmesh__metrics_metrics__contributor_classifications_to_project_over_90_day__3658098767 + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__contributor_classifications_to_project_over_90_day__3658098767 + uniqueness_constraints: {} + foreign_keys: {} + - name: sqlmesh__metrics_metrics__contributor_classifications_to_project_over_90_day__3658098767__temp + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__contributor_classifications_to_project_over_90_day__3658098767__temp + uniqueness_constraints: {} + foreign_keys: {} + - name: sqlmesh__metrics_metrics__developer_active_days_to_artifact_over_30_day__2147579824 + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__developer_active_days_to_artifact_over_30_day__2147579824 + uniqueness_constraints: {} + foreign_keys: {} + - name: sqlmesh__metrics_metrics__developer_active_days_to_artifact_over_30_day__2147579824__temp + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__developer_active_days_to_artifact_over_30_day__2147579824__temp + uniqueness_constraints: {} + foreign_keys: {} + - name: sqlmesh__metrics_metrics__developer_active_days_to_artifact_over_30_day__3976516872 + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__developer_active_days_to_artifact_over_30_day__3976516872 + uniqueness_constraints: {} + foreign_keys: {} + - name: sqlmesh__metrics_metrics__developer_active_days_to_artifact_over_30_day__3976516872__temp + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__developer_active_days_to_artifact_over_30_day__3976516872__temp + uniqueness_constraints: {} + foreign_keys: {} + - name: sqlmesh__metrics_metrics__developer_active_days_to_artifact_over_60_day__2285488471 + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__developer_active_days_to_artifact_over_60_day__2285488471 + uniqueness_constraints: {} + foreign_keys: {} + - name: sqlmesh__metrics_metrics__developer_active_days_to_artifact_over_60_day__2285488471__temp + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__developer_active_days_to_artifact_over_60_day__2285488471__temp + uniqueness_constraints: {} + foreign_keys: {} + - name: sqlmesh__metrics_metrics__developer_active_days_to_artifact_over_60_day__3546454637 + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__developer_active_days_to_artifact_over_60_day__3546454637 + uniqueness_constraints: {} + foreign_keys: {} + - name: sqlmesh__metrics_metrics__developer_active_days_to_artifact_over_60_day__3546454637__temp + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__developer_active_days_to_artifact_over_60_day__3546454637__temp + uniqueness_constraints: {} + foreign_keys: {} + - name: sqlmesh__metrics_metrics__developer_active_days_to_artifact_over_90_day__1696840528 + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__developer_active_days_to_artifact_over_90_day__1696840528 + uniqueness_constraints: {} + foreign_keys: {} + - name: sqlmesh__metrics_metrics__developer_active_days_to_artifact_over_90_day__1696840528__temp + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__developer_active_days_to_artifact_over_90_day__1696840528__temp + uniqueness_constraints: {} + foreign_keys: {} + - name: sqlmesh__metrics_metrics__developer_active_days_to_artifact_over_90_day__2939537768 + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__developer_active_days_to_artifact_over_90_day__2939537768 + uniqueness_constraints: {} + foreign_keys: {} + - name: sqlmesh__metrics_metrics__developer_active_days_to_artifact_over_90_day__2939537768__temp + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__developer_active_days_to_artifact_over_90_day__2939537768__temp + uniqueness_constraints: {} + foreign_keys: {} + - name: sqlmesh__metrics_metrics__developer_active_days_to_collection_over_30_day__1822537695 + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__developer_active_days_to_collection_over_30_day__1822537695 + uniqueness_constraints: {} + foreign_keys: {} + - name: sqlmesh__metrics_metrics__developer_active_days_to_collection_over_30_day__1822537695__temp + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__developer_active_days_to_collection_over_30_day__1822537695__temp + uniqueness_constraints: {} + foreign_keys: {} + - name: sqlmesh__metrics_metrics__developer_active_days_to_collection_over_30_day__820316417 + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__developer_active_days_to_collection_over_30_day__820316417 + uniqueness_constraints: {} + foreign_keys: {} + - name: sqlmesh__metrics_metrics__developer_active_days_to_collection_over_30_day__820316417__temp + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__developer_active_days_to_collection_over_30_day__820316417__temp + uniqueness_constraints: {} + foreign_keys: {} + - name: sqlmesh__metrics_metrics__developer_active_days_to_collection_over_60_day__3163575043 + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__developer_active_days_to_collection_over_60_day__3163575043 + uniqueness_constraints: {} + foreign_keys: {} + - name: sqlmesh__metrics_metrics__developer_active_days_to_collection_over_60_day__3163575043__temp + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__developer_active_days_to_collection_over_60_day__3163575043__temp + uniqueness_constraints: {} + foreign_keys: {} + - name: sqlmesh__metrics_metrics__developer_active_days_to_collection_over_60_day__3397863041 + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__developer_active_days_to_collection_over_60_day__3397863041 + uniqueness_constraints: {} + foreign_keys: {} + - name: sqlmesh__metrics_metrics__developer_active_days_to_collection_over_60_day__3397863041__temp + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__developer_active_days_to_collection_over_60_day__3397863041__temp + uniqueness_constraints: {} + foreign_keys: {} + - name: sqlmesh__metrics_metrics__developer_active_days_to_collection_over_90_day__1907804058 + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__developer_active_days_to_collection_over_90_day__1907804058 + uniqueness_constraints: {} + foreign_keys: {} + - name: sqlmesh__metrics_metrics__developer_active_days_to_collection_over_90_day__1907804058__temp + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__developer_active_days_to_collection_over_90_day__1907804058__temp + uniqueness_constraints: {} + foreign_keys: {} + - name: sqlmesh__metrics_metrics__developer_active_days_to_collection_over_90_day__911125358 + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__developer_active_days_to_collection_over_90_day__911125358 + uniqueness_constraints: {} + foreign_keys: {} + - name: sqlmesh__metrics_metrics__developer_active_days_to_collection_over_90_day__911125358__temp + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__developer_active_days_to_collection_over_90_day__911125358__temp + uniqueness_constraints: {} + foreign_keys: {} + - name: sqlmesh__metrics_metrics__developer_active_days_to_project_over_30_day__1776115062 + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__developer_active_days_to_project_over_30_day__1776115062 + uniqueness_constraints: {} + foreign_keys: {} + - name: sqlmesh__metrics_metrics__developer_active_days_to_project_over_30_day__1776115062__temp + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__developer_active_days_to_project_over_30_day__1776115062__temp + uniqueness_constraints: {} + foreign_keys: {} + - name: sqlmesh__metrics_metrics__developer_active_days_to_project_over_30_day__2682941095 + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__developer_active_days_to_project_over_30_day__2682941095 + uniqueness_constraints: {} + foreign_keys: {} + - name: sqlmesh__metrics_metrics__developer_active_days_to_project_over_30_day__2682941095__temp + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__developer_active_days_to_project_over_30_day__2682941095__temp + uniqueness_constraints: {} + foreign_keys: {} + - name: sqlmesh__metrics_metrics__developer_active_days_to_project_over_60_day__3267032478 + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__developer_active_days_to_project_over_60_day__3267032478 + uniqueness_constraints: {} + foreign_keys: {} + - name: sqlmesh__metrics_metrics__developer_active_days_to_project_over_60_day__3267032478__temp + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__developer_active_days_to_project_over_60_day__3267032478__temp + uniqueness_constraints: {} + foreign_keys: {} + - name: sqlmesh__metrics_metrics__developer_active_days_to_project_over_60_day__831546181 + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__developer_active_days_to_project_over_60_day__831546181 + uniqueness_constraints: {} + foreign_keys: {} + - name: sqlmesh__metrics_metrics__developer_active_days_to_project_over_60_day__831546181__temp + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__developer_active_days_to_project_over_60_day__831546181__temp + uniqueness_constraints: {} + foreign_keys: {} + - name: sqlmesh__metrics_metrics__developer_active_days_to_project_over_90_day__2232286171 + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__developer_active_days_to_project_over_90_day__2232286171 + uniqueness_constraints: {} + foreign_keys: {} + - name: sqlmesh__metrics_metrics__developer_active_days_to_project_over_90_day__2232286171__temp + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__developer_active_days_to_project_over_90_day__2232286171__temp + uniqueness_constraints: {} + foreign_keys: {} + - name: sqlmesh__metrics_metrics__developer_active_days_to_project_over_90_day__929128788 + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__developer_active_days_to_project_over_90_day__929128788 + uniqueness_constraints: {} + foreign_keys: {} + - name: sqlmesh__metrics_metrics__developer_active_days_to_project_over_90_day__929128788__temp + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__developer_active_days_to_project_over_90_day__929128788__temp + uniqueness_constraints: {} + foreign_keys: {} + - name: sqlmesh__metrics_metrics__developer_classifications_to_artifact_over_30_day__2657100041 + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__developer_classifications_to_artifact_over_30_day__2657100041 + uniqueness_constraints: {} + foreign_keys: {} + - name: sqlmesh__metrics_metrics__developer_classifications_to_artifact_over_30_day__2657100041__temp + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__developer_classifications_to_artifact_over_30_day__2657100041__temp + uniqueness_constraints: {} + foreign_keys: {} + - name: sqlmesh__metrics_metrics__developer_classifications_to_artifact_over_30_day__4202956530 + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__developer_classifications_to_artifact_over_30_day__4202956530 + uniqueness_constraints: {} + foreign_keys: {} + - name: sqlmesh__metrics_metrics__developer_classifications_to_artifact_over_30_day__4202956530__temp + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__developer_classifications_to_artifact_over_30_day__4202956530__temp + uniqueness_constraints: {} + foreign_keys: {} + - name: sqlmesh__metrics_metrics__developer_classifications_to_artifact_over_60_day__3286510146 + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__developer_classifications_to_artifact_over_60_day__3286510146 + uniqueness_constraints: {} + foreign_keys: {} + - name: sqlmesh__metrics_metrics__developer_classifications_to_artifact_over_60_day__3286510146__temp + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__developer_classifications_to_artifact_over_60_day__3286510146__temp + uniqueness_constraints: {} + foreign_keys: {} + - name: sqlmesh__metrics_metrics__developer_classifications_to_artifact_over_60_day__890887252 + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__developer_classifications_to_artifact_over_60_day__890887252 + uniqueness_constraints: {} + foreign_keys: {} + - name: sqlmesh__metrics_metrics__developer_classifications_to_artifact_over_60_day__890887252__temp + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__developer_classifications_to_artifact_over_60_day__890887252__temp + uniqueness_constraints: {} + foreign_keys: {} + - name: sqlmesh__metrics_metrics__developer_classifications_to_artifact_over_90_day__1988187751 + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__developer_classifications_to_artifact_over_90_day__1988187751 + uniqueness_constraints: {} + foreign_keys: {} + - name: sqlmesh__metrics_metrics__developer_classifications_to_artifact_over_90_day__1988187751__temp + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__developer_classifications_to_artifact_over_90_day__1988187751__temp + uniqueness_constraints: {} + foreign_keys: {} + - name: sqlmesh__metrics_metrics__developer_classifications_to_artifact_over_90_day__544076118 + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__developer_classifications_to_artifact_over_90_day__544076118 + uniqueness_constraints: {} + foreign_keys: {} + - name: sqlmesh__metrics_metrics__developer_classifications_to_artifact_over_90_day__544076118__temp + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__developer_classifications_to_artifact_over_90_day__544076118__temp + uniqueness_constraints: {} + foreign_keys: {} + - name: sqlmesh__metrics_metrics__developer_classifications_to_collection_over_30_day__2670781055 + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__developer_classifications_to_collection_over_30_day__2670781055 + uniqueness_constraints: {} + foreign_keys: {} + - name: sqlmesh__metrics_metrics__developer_classifications_to_collection_over_30_day__2670781055__temp + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__developer_classifications_to_collection_over_30_day__2670781055__temp + uniqueness_constraints: {} + foreign_keys: {} + - name: sqlmesh__metrics_metrics__developer_classifications_to_collection_over_30_day__742065590 + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__developer_classifications_to_collection_over_30_day__742065590 + uniqueness_constraints: {} + foreign_keys: {} + - name: sqlmesh__metrics_metrics__developer_classifications_to_collection_over_30_day__742065590__temp + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__developer_classifications_to_collection_over_30_day__742065590__temp + uniqueness_constraints: {} + foreign_keys: {} + - name: sqlmesh__metrics_metrics__developer_classifications_to_collection_over_60_day__1495436071 + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__developer_classifications_to_collection_over_60_day__1495436071 + uniqueness_constraints: {} + foreign_keys: {} + - name: sqlmesh__metrics_metrics__developer_classifications_to_collection_over_60_day__1495436071__temp + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__developer_classifications_to_collection_over_60_day__1495436071__temp + uniqueness_constraints: {} + foreign_keys: {} + - name: sqlmesh__metrics_metrics__developer_classifications_to_collection_over_60_day__779000134 + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__developer_classifications_to_collection_over_60_day__779000134 + uniqueness_constraints: {} + foreign_keys: {} + - name: sqlmesh__metrics_metrics__developer_classifications_to_collection_over_60_day__779000134__temp + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__developer_classifications_to_collection_over_60_day__779000134__temp + uniqueness_constraints: {} + foreign_keys: {} + - name: sqlmesh__metrics_metrics__developer_classifications_to_collection_over_90_day__228961017 + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__developer_classifications_to_collection_over_90_day__228961017 + uniqueness_constraints: {} + foreign_keys: {} + - name: sqlmesh__metrics_metrics__developer_classifications_to_collection_over_90_day__228961017__temp + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__developer_classifications_to_collection_over_90_day__228961017__temp + uniqueness_constraints: {} + foreign_keys: {} + - name: sqlmesh__metrics_metrics__developer_classifications_to_collection_over_90_day__4023961141 + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__developer_classifications_to_collection_over_90_day__4023961141 + uniqueness_constraints: {} + foreign_keys: {} + - name: sqlmesh__metrics_metrics__developer_classifications_to_collection_over_90_day__4023961141__temp + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__developer_classifications_to_collection_over_90_day__4023961141__temp + uniqueness_constraints: {} + foreign_keys: {} + - name: sqlmesh__metrics_metrics__developer_classifications_to_project_over_30_day__2268986554 + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__developer_classifications_to_project_over_30_day__2268986554 + uniqueness_constraints: {} + foreign_keys: {} + - name: sqlmesh__metrics_metrics__developer_classifications_to_project_over_30_day__2268986554__temp + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__developer_classifications_to_project_over_30_day__2268986554__temp + uniqueness_constraints: {} + foreign_keys: {} + - name: sqlmesh__metrics_metrics__developer_classifications_to_project_over_30_day__2570826947 + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__developer_classifications_to_project_over_30_day__2570826947 + uniqueness_constraints: {} + foreign_keys: {} + - name: sqlmesh__metrics_metrics__developer_classifications_to_project_over_30_day__2570826947__temp + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__developer_classifications_to_project_over_30_day__2570826947__temp + uniqueness_constraints: {} + foreign_keys: {} + - name: sqlmesh__metrics_metrics__developer_classifications_to_project_over_60_day__1484843749 + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__developer_classifications_to_project_over_60_day__1484843749 + uniqueness_constraints: {} + foreign_keys: {} + - name: sqlmesh__metrics_metrics__developer_classifications_to_project_over_60_day__1484843749__temp + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__developer_classifications_to_project_over_60_day__1484843749__temp + uniqueness_constraints: {} + foreign_keys: {} + - name: sqlmesh__metrics_metrics__developer_classifications_to_project_over_60_day__1486674058 + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__developer_classifications_to_project_over_60_day__1486674058 + uniqueness_constraints: {} + foreign_keys: {} + - name: sqlmesh__metrics_metrics__developer_classifications_to_project_over_60_day__1486674058__temp + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__developer_classifications_to_project_over_60_day__1486674058__temp + uniqueness_constraints: {} + foreign_keys: {} + - name: sqlmesh__metrics_metrics__developer_classifications_to_project_over_90_day__270003167 + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__developer_classifications_to_project_over_90_day__270003167 + uniqueness_constraints: {} + foreign_keys: {} + - name: sqlmesh__metrics_metrics__developer_classifications_to_project_over_90_day__270003167__temp description: "" arguments: {} - type: artifacts_by_project_v1 + type: sqlmesh__metrics_metrics__developer_classifications_to_project_over_90_day__270003167__temp uniqueness_constraints: {} foreign_keys: {} - - name: artifacts_v1 + - name: sqlmesh__metrics_metrics__developer_classifications_to_project_over_90_day__92766605 description: "" arguments: {} - type: artifacts_v1 + type: sqlmesh__metrics_metrics__developer_classifications_to_project_over_90_day__92766605 uniqueness_constraints: {} foreign_keys: {} - - name: code_metrics_by_artifact_v0 + - name: sqlmesh__metrics_metrics__developer_classifications_to_project_over_90_day__92766605__temp description: "" arguments: {} - type: code_metrics_by_artifact_v0 + type: sqlmesh__metrics_metrics__developer_classifications_to_project_over_90_day__92766605__temp uniqueness_constraints: {} foreign_keys: {} - - name: code_metrics_by_project_v1 + - name: sqlmesh__metrics_metrics__events_daily_to_artifact__256496682 description: "" arguments: {} - type: code_metrics_by_project_v1 + type: sqlmesh__metrics_metrics__events_daily_to_artifact__256496682 + uniqueness_constraints: + event_type, event_source, from_artifact_id, to_artifact_id, bucket_day: + unique_columns: + - bucket_day + - event_source + - event_type + - from_artifact_id + - to_artifact_id + foreign_keys: {} + - name: sqlmesh__metrics_metrics__events_daily_to_artifact__256496682__temp + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__events_daily_to_artifact__256496682__temp + uniqueness_constraints: + event_type, event_source, from_artifact_id, to_artifact_id, bucket_day: + unique_columns: + - bucket_day + - event_source + - event_type + - from_artifact_id + - to_artifact_id + foreign_keys: {} + - name: sqlmesh__metrics_metrics__events_daily_to_artifact__787267005 + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__events_daily_to_artifact__787267005 + uniqueness_constraints: + event_type, event_source, from_artifact_id, to_artifact_id, bucket_day: + unique_columns: + - bucket_day + - event_source + - event_type + - from_artifact_id + - to_artifact_id + foreign_keys: {} + - name: sqlmesh__metrics_metrics__events_daily_to_artifact__787267005__temp + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__events_daily_to_artifact__787267005__temp + uniqueness_constraints: + event_type, event_source, from_artifact_id, to_artifact_id, bucket_day: + unique_columns: + - bucket_day + - event_source + - event_type + - from_artifact_id + - to_artifact_id + foreign_keys: {} + - name: sqlmesh__metrics_metrics__forks_to_artifact_daily__1195578825 + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__forks_to_artifact_daily__1195578825 uniqueness_constraints: {} foreign_keys: {} - - name: collections_v1 + - name: sqlmesh__metrics_metrics__forks_to_artifact_daily__1195578825__temp description: "" arguments: {} - type: collections_v1 + type: sqlmesh__metrics_metrics__forks_to_artifact_daily__1195578825__temp uniqueness_constraints: {} foreign_keys: {} - - name: contracts_v0 + - name: sqlmesh__metrics_metrics__forks_to_artifact_daily__3290062578 description: "" arguments: {} - type: contracts_v0 + type: sqlmesh__metrics_metrics__forks_to_artifact_daily__3290062578 uniqueness_constraints: {} foreign_keys: {} - - name: event_indexing_status_by_project_v1 + - name: sqlmesh__metrics_metrics__forks_to_artifact_daily__3290062578__temp description: "" arguments: {} - type: event_indexing_status_by_project_v1 + type: sqlmesh__metrics_metrics__forks_to_artifact_daily__3290062578__temp uniqueness_constraints: {} foreign_keys: {} - - name: event_types_v1 + - name: sqlmesh__metrics_metrics__forks_to_artifact_monthly__1415490740 description: "" arguments: {} - type: event_types_v1 + type: sqlmesh__metrics_metrics__forks_to_artifact_monthly__1415490740 uniqueness_constraints: {} foreign_keys: {} - - name: metrics__dev_events_daily_to_artifact + - name: sqlmesh__metrics_metrics__forks_to_artifact_monthly__1415490740__temp description: "" arguments: {} - type: metrics__dev_events_daily_to_artifact + type: sqlmesh__metrics_metrics__forks_to_artifact_monthly__1415490740__temp uniqueness_constraints: {} foreign_keys: {} - - name: metrics__dev_metrics_v0 + - name: sqlmesh__metrics_metrics__forks_to_artifact_monthly__3938275018 description: "" arguments: {} - type: metrics__dev_metrics_v0 + type: sqlmesh__metrics_metrics__forks_to_artifact_monthly__3938275018 uniqueness_constraints: {} foreign_keys: {} - - name: metrics__dev_timeseries_metrics_by_artifact_over_30_days + - name: sqlmesh__metrics_metrics__forks_to_artifact_monthly__3938275018__temp description: "" arguments: {} - type: metrics__dev_timeseries_metrics_by_artifact_over_30_days + type: sqlmesh__metrics_metrics__forks_to_artifact_monthly__3938275018__temp uniqueness_constraints: {} foreign_keys: {} - - name: metrics__dev_timeseries_metrics_by_artifact_v0 + - name: sqlmesh__metrics_metrics__forks_to_artifact_weekly__2641707394 description: "" arguments: {} - type: metrics__dev_timeseries_metrics_by_artifact_v0 + type: sqlmesh__metrics_metrics__forks_to_artifact_weekly__2641707394 uniqueness_constraints: {} foreign_keys: {} - - name: metrics_events_daily_to_artifact + - name: sqlmesh__metrics_metrics__forks_to_artifact_weekly__2641707394__temp description: "" arguments: {} - type: metrics_events_daily_to_artifact + type: sqlmesh__metrics_metrics__forks_to_artifact_weekly__2641707394__temp uniqueness_constraints: {} foreign_keys: {} - - name: metrics_metrics_v0 + - name: sqlmesh__metrics_metrics__forks_to_artifact_weekly__634319038 description: "" arguments: {} - type: metrics_metrics_v0 + type: sqlmesh__metrics_metrics__forks_to_artifact_weekly__634319038 uniqueness_constraints: {} foreign_keys: {} - - name: metrics_timeseries_metrics_by_artifact_over_30_days + - name: sqlmesh__metrics_metrics__forks_to_artifact_weekly__634319038__temp description: "" arguments: {} - type: metrics_timeseries_metrics_by_artifact_over_30_days + type: sqlmesh__metrics_metrics__forks_to_artifact_weekly__634319038__temp uniqueness_constraints: {} foreign_keys: {} - - name: metrics_timeseries_metrics_by_artifact_v0 + - name: sqlmesh__metrics_metrics__forks_to_collection_daily__2600488515 description: "" arguments: {} - type: metrics_timeseries_metrics_by_artifact_v0 + type: sqlmesh__metrics_metrics__forks_to_collection_daily__2600488515 uniqueness_constraints: {} foreign_keys: {} - - name: onchain_metrics_by_project_v1 + - name: sqlmesh__metrics_metrics__forks_to_collection_daily__2600488515__temp description: "" arguments: {} - type: onchain_metrics_by_project_v1 + type: sqlmesh__metrics_metrics__forks_to_collection_daily__2600488515__temp uniqueness_constraints: {} foreign_keys: {} - - name: projects_by_collection_v1 + - name: sqlmesh__metrics_metrics__forks_to_collection_daily__3383457687 description: "" arguments: {} - type: projects_by_collection_v1 + type: sqlmesh__metrics_metrics__forks_to_collection_daily__3383457687 uniqueness_constraints: {} foreign_keys: {} - - name: projects_v1 + - name: sqlmesh__metrics_metrics__forks_to_collection_daily__3383457687__temp description: "" arguments: {} - type: projects_v1 + type: sqlmesh__metrics_metrics__forks_to_collection_daily__3383457687__temp + uniqueness_constraints: {} + foreign_keys: {} + - name: sqlmesh__metrics_metrics__forks_to_collection_monthly__2690014976 + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__forks_to_collection_monthly__2690014976 + uniqueness_constraints: {} + foreign_keys: {} + - name: sqlmesh__metrics_metrics__forks_to_collection_monthly__2690014976__temp + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__forks_to_collection_monthly__2690014976__temp + uniqueness_constraints: {} + foreign_keys: {} + - name: sqlmesh__metrics_metrics__forks_to_collection_monthly__642068908 + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__forks_to_collection_monthly__642068908 + uniqueness_constraints: {} + foreign_keys: {} + - name: sqlmesh__metrics_metrics__forks_to_collection_monthly__642068908__temp + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__forks_to_collection_monthly__642068908__temp + uniqueness_constraints: {} + foreign_keys: {} + - name: sqlmesh__metrics_metrics__forks_to_collection_weekly__2254060970 + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__forks_to_collection_weekly__2254060970 + uniqueness_constraints: {} + foreign_keys: {} + - name: sqlmesh__metrics_metrics__forks_to_collection_weekly__2254060970__temp + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__forks_to_collection_weekly__2254060970__temp + uniqueness_constraints: {} + foreign_keys: {} + - name: sqlmesh__metrics_metrics__forks_to_collection_weekly__3048743392 + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__forks_to_collection_weekly__3048743392 + uniqueness_constraints: {} + foreign_keys: {} + - name: sqlmesh__metrics_metrics__forks_to_collection_weekly__3048743392__temp + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__forks_to_collection_weekly__3048743392__temp + uniqueness_constraints: {} + foreign_keys: {} + - name: sqlmesh__metrics_metrics__forks_to_project_daily__3162175235 + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__forks_to_project_daily__3162175235 + uniqueness_constraints: {} + foreign_keys: {} + - name: sqlmesh__metrics_metrics__forks_to_project_daily__3162175235__temp + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__forks_to_project_daily__3162175235__temp + uniqueness_constraints: {} + foreign_keys: {} + - name: sqlmesh__metrics_metrics__forks_to_project_daily__539182721 + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__forks_to_project_daily__539182721 + uniqueness_constraints: {} + foreign_keys: {} + - name: sqlmesh__metrics_metrics__forks_to_project_daily__539182721__temp + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__forks_to_project_daily__539182721__temp + uniqueness_constraints: {} + foreign_keys: {} + - name: sqlmesh__metrics_metrics__forks_to_project_monthly__1390457095 + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__forks_to_project_monthly__1390457095 + uniqueness_constraints: {} + foreign_keys: {} + - name: sqlmesh__metrics_metrics__forks_to_project_monthly__1390457095__temp + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__forks_to_project_monthly__1390457095__temp + uniqueness_constraints: {} + foreign_keys: {} + - name: sqlmesh__metrics_metrics__forks_to_project_monthly__3020189315 + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__forks_to_project_monthly__3020189315 + uniqueness_constraints: {} + foreign_keys: {} + - name: sqlmesh__metrics_metrics__forks_to_project_monthly__3020189315__temp + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__forks_to_project_monthly__3020189315__temp + uniqueness_constraints: {} + foreign_keys: {} + - name: sqlmesh__metrics_metrics__forks_to_project_weekly__1848268533 + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__forks_to_project_weekly__1848268533 + uniqueness_constraints: {} + foreign_keys: {} + - name: sqlmesh__metrics_metrics__forks_to_project_weekly__1848268533__temp + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__forks_to_project_weekly__1848268533__temp + uniqueness_constraints: {} + foreign_keys: {} + - name: sqlmesh__metrics_metrics__forks_to_project_weekly__2097630631 + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__forks_to_project_weekly__2097630631 + uniqueness_constraints: {} + foreign_keys: {} + - name: sqlmesh__metrics_metrics__forks_to_project_weekly__2097630631__temp + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__forks_to_project_weekly__2097630631__temp + uniqueness_constraints: {} + foreign_keys: {} + - name: sqlmesh__metrics_metrics__gas_fees_to_artifact_daily__2207311257 + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__gas_fees_to_artifact_daily__2207311257 + uniqueness_constraints: {} + foreign_keys: {} + - name: sqlmesh__metrics_metrics__gas_fees_to_artifact_daily__2207311257__temp + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__gas_fees_to_artifact_daily__2207311257__temp + uniqueness_constraints: {} + foreign_keys: {} + - name: sqlmesh__metrics_metrics__gas_fees_to_artifact_daily__2947931382 + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__gas_fees_to_artifact_daily__2947931382 + uniqueness_constraints: {} + foreign_keys: {} + - name: sqlmesh__metrics_metrics__gas_fees_to_artifact_daily__2947931382__temp + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__gas_fees_to_artifact_daily__2947931382__temp + uniqueness_constraints: {} + foreign_keys: {} + - name: sqlmesh__metrics_metrics__gas_fees_to_artifact_monthly__3205598518 + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__gas_fees_to_artifact_monthly__3205598518 + uniqueness_constraints: {} + foreign_keys: {} + - name: sqlmesh__metrics_metrics__gas_fees_to_artifact_monthly__3205598518__temp + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__gas_fees_to_artifact_monthly__3205598518__temp + uniqueness_constraints: {} + foreign_keys: {} + - name: sqlmesh__metrics_metrics__gas_fees_to_artifact_monthly__4256923395 + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__gas_fees_to_artifact_monthly__4256923395 + uniqueness_constraints: {} + foreign_keys: {} + - name: sqlmesh__metrics_metrics__gas_fees_to_artifact_monthly__4256923395__temp + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__gas_fees_to_artifact_monthly__4256923395__temp + uniqueness_constraints: {} + foreign_keys: {} + - name: sqlmesh__metrics_metrics__gas_fees_to_artifact_weekly__2045847874 + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__gas_fees_to_artifact_weekly__2045847874 + uniqueness_constraints: {} + foreign_keys: {} + - name: sqlmesh__metrics_metrics__gas_fees_to_artifact_weekly__2045847874__temp + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__gas_fees_to_artifact_weekly__2045847874__temp + uniqueness_constraints: {} + foreign_keys: {} + - name: sqlmesh__metrics_metrics__gas_fees_to_artifact_weekly__298236217 + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__gas_fees_to_artifact_weekly__298236217 + uniqueness_constraints: {} + foreign_keys: {} + - name: sqlmesh__metrics_metrics__gas_fees_to_artifact_weekly__298236217__temp + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__gas_fees_to_artifact_weekly__298236217__temp + uniqueness_constraints: {} + foreign_keys: {} + - name: sqlmesh__metrics_metrics__gas_fees_to_collection_daily__2865969994 + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__gas_fees_to_collection_daily__2865969994 + uniqueness_constraints: {} + foreign_keys: {} + - name: sqlmesh__metrics_metrics__gas_fees_to_collection_daily__2865969994__temp + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__gas_fees_to_collection_daily__2865969994__temp + uniqueness_constraints: {} + foreign_keys: {} + - name: sqlmesh__metrics_metrics__gas_fees_to_collection_daily__2957384774 + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__gas_fees_to_collection_daily__2957384774 + uniqueness_constraints: {} + foreign_keys: {} + - name: sqlmesh__metrics_metrics__gas_fees_to_collection_daily__2957384774__temp + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__gas_fees_to_collection_daily__2957384774__temp + uniqueness_constraints: {} + foreign_keys: {} + - name: sqlmesh__metrics_metrics__gas_fees_to_collection_monthly__3188093965 + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__gas_fees_to_collection_monthly__3188093965 + uniqueness_constraints: {} + foreign_keys: {} + - name: sqlmesh__metrics_metrics__gas_fees_to_collection_monthly__3188093965__temp + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__gas_fees_to_collection_monthly__3188093965__temp + uniqueness_constraints: {} + foreign_keys: {} + - name: sqlmesh__metrics_metrics__gas_fees_to_collection_monthly__825442882 + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__gas_fees_to_collection_monthly__825442882 + uniqueness_constraints: {} + foreign_keys: {} + - name: sqlmesh__metrics_metrics__gas_fees_to_collection_monthly__825442882__temp + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__gas_fees_to_collection_monthly__825442882__temp + uniqueness_constraints: {} + foreign_keys: {} + - name: sqlmesh__metrics_metrics__gas_fees_to_collection_weekly__718832396 + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__gas_fees_to_collection_weekly__718832396 + uniqueness_constraints: {} + foreign_keys: {} + - name: sqlmesh__metrics_metrics__gas_fees_to_collection_weekly__718832396__temp + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__gas_fees_to_collection_weekly__718832396__temp + uniqueness_constraints: {} + foreign_keys: {} + - name: sqlmesh__metrics_metrics__gas_fees_to_collection_weekly__796521307 + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__gas_fees_to_collection_weekly__796521307 + uniqueness_constraints: {} + foreign_keys: {} + - name: sqlmesh__metrics_metrics__gas_fees_to_collection_weekly__796521307__temp + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__gas_fees_to_collection_weekly__796521307__temp + uniqueness_constraints: {} + foreign_keys: {} + - name: sqlmesh__metrics_metrics__gas_fees_to_project_daily__4018447587 + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__gas_fees_to_project_daily__4018447587 + uniqueness_constraints: {} + foreign_keys: {} + - name: sqlmesh__metrics_metrics__gas_fees_to_project_daily__4018447587__temp + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__gas_fees_to_project_daily__4018447587__temp + uniqueness_constraints: {} + foreign_keys: {} + - name: sqlmesh__metrics_metrics__gas_fees_to_project_daily__520704149 + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__gas_fees_to_project_daily__520704149 + uniqueness_constraints: {} + foreign_keys: {} + - name: sqlmesh__metrics_metrics__gas_fees_to_project_daily__520704149__temp + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__gas_fees_to_project_daily__520704149__temp + uniqueness_constraints: {} + foreign_keys: {} + - name: sqlmesh__metrics_metrics__gas_fees_to_project_monthly__2728156525 + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__gas_fees_to_project_monthly__2728156525 + uniqueness_constraints: {} + foreign_keys: {} + - name: sqlmesh__metrics_metrics__gas_fees_to_project_monthly__2728156525__temp + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__gas_fees_to_project_monthly__2728156525__temp + uniqueness_constraints: {} + foreign_keys: {} + - name: sqlmesh__metrics_metrics__gas_fees_to_project_monthly__3346743315 + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__gas_fees_to_project_monthly__3346743315 + uniqueness_constraints: {} + foreign_keys: {} + - name: sqlmesh__metrics_metrics__gas_fees_to_project_monthly__3346743315__temp + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__gas_fees_to_project_monthly__3346743315__temp + uniqueness_constraints: {} + foreign_keys: {} + - name: sqlmesh__metrics_metrics__gas_fees_to_project_weekly__1947565140 + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__gas_fees_to_project_weekly__1947565140 + uniqueness_constraints: {} + foreign_keys: {} + - name: sqlmesh__metrics_metrics__gas_fees_to_project_weekly__1947565140__temp + description: "" + arguments: {} + type: sqlmesh__metrics_metrics__gas_fees_to_project_weekly__1947565140__temp uniqueness_constraints: {} foreign_keys: {} - - name: sqlmesh__metrics_metrics__events_daily_to_artifact__1469322421 + - name: sqlmesh__metrics_metrics__gas_fees_to_project_weekly__2566492595 description: "" arguments: {} - type: sqlmesh__metrics_metrics__events_daily_to_artifact__1469322421 + type: sqlmesh__metrics_metrics__gas_fees_to_project_weekly__2566492595 uniqueness_constraints: {} foreign_keys: {} - - name: sqlmesh__metrics_metrics__events_daily_to_artifact__1469322421__temp + - name: sqlmesh__metrics_metrics__gas_fees_to_project_weekly__2566492595__temp description: "" arguments: {} - type: sqlmesh__metrics_metrics__events_daily_to_artifact__1469322421__temp + type: sqlmesh__metrics_metrics__gas_fees_to_project_weekly__2566492595__temp uniqueness_constraints: {} foreign_keys: {} - - name: sqlmesh__metrics_metrics__events_daily_to_artifact__753507400 + - name: sqlmesh__metrics_metrics__metrics_v0__2208086179 description: "" arguments: {} - type: sqlmesh__metrics_metrics__events_daily_to_artifact__753507400 + type: sqlmesh__metrics_metrics__metrics_v0__2208086179 uniqueness_constraints: {} foreign_keys: {} - - name: sqlmesh__metrics_metrics__events_daily_to_artifact__753507400__temp + - name: sqlmesh__metrics_metrics__metrics_v0__2208086179__temp description: "" arguments: {} - type: sqlmesh__metrics_metrics__events_daily_to_artifact__753507400__temp + type: sqlmesh__metrics_metrics__metrics_v0__2208086179__temp uniqueness_constraints: {} foreign_keys: {} - - name: sqlmesh__metrics_metrics__metrics_v0__1027447929 + - name: sqlmesh__metrics_metrics__metrics_v0__55568561 description: "" arguments: {} - type: sqlmesh__metrics_metrics__metrics_v0__1027447929 + type: sqlmesh__metrics_metrics__metrics_v0__55568561 uniqueness_constraints: {} foreign_keys: {} - - name: sqlmesh__metrics_metrics__metrics_v0__1027447929__temp + - name: sqlmesh__metrics_metrics__metrics_v0__55568561__temp description: "" arguments: {} - type: sqlmesh__metrics_metrics__metrics_v0__1027447929__temp + type: sqlmesh__metrics_metrics__metrics_v0__55568561__temp uniqueness_constraints: {} foreign_keys: {} - - name: sqlmesh__metrics_metrics__metrics_v0__1122994148 + - name: sqlmesh__metrics_metrics__metrics_v0__88067858 description: "" arguments: {} - type: sqlmesh__metrics_metrics__metrics_v0__1122994148 + type: sqlmesh__metrics_metrics__metrics_v0__88067858 uniqueness_constraints: {} foreign_keys: {} - - name: sqlmesh__metrics_metrics__metrics_v0__1122994148__temp + - name: sqlmesh__metrics_metrics__metrics_v0__88067858__temp description: "" arguments: {} - type: sqlmesh__metrics_metrics__metrics_v0__1122994148__temp + type: sqlmesh__metrics_metrics__metrics_v0__88067858__temp uniqueness_constraints: {} foreign_keys: {} - - name: sqlmesh__metrics_metrics__metrics_v0__1931009280 + - name: sqlmesh__metrics_metrics__stars_to_artifact_daily__3943953320 description: "" arguments: {} - type: sqlmesh__metrics_metrics__metrics_v0__1931009280 + type: sqlmesh__metrics_metrics__stars_to_artifact_daily__3943953320 uniqueness_constraints: {} foreign_keys: {} - - name: sqlmesh__metrics_metrics__metrics_v0__1931009280__temp + - name: sqlmesh__metrics_metrics__stars_to_artifact_daily__3943953320__temp description: "" arguments: {} - type: sqlmesh__metrics_metrics__metrics_v0__1931009280__temp + type: sqlmesh__metrics_metrics__stars_to_artifact_daily__3943953320__temp uniqueness_constraints: {} foreign_keys: {} - - name: sqlmesh__metrics_metrics__metrics_v0__1972836302 + - name: sqlmesh__metrics_metrics__stars_to_artifact_daily__4261634010 description: "" arguments: {} - type: sqlmesh__metrics_metrics__metrics_v0__1972836302 + type: sqlmesh__metrics_metrics__stars_to_artifact_daily__4261634010 uniqueness_constraints: {} foreign_keys: {} - - name: sqlmesh__metrics_metrics__metrics_v0__1972836302__temp + - name: sqlmesh__metrics_metrics__stars_to_artifact_daily__4261634010__temp description: "" arguments: {} - type: sqlmesh__metrics_metrics__metrics_v0__1972836302__temp + type: sqlmesh__metrics_metrics__stars_to_artifact_daily__4261634010__temp uniqueness_constraints: {} foreign_keys: {} - - name: sqlmesh__metrics_metrics__metrics_v0__1989478904 + - name: sqlmesh__metrics_metrics__stars_to_artifact_monthly__2168815381 description: "" arguments: {} - type: sqlmesh__metrics_metrics__metrics_v0__1989478904 + type: sqlmesh__metrics_metrics__stars_to_artifact_monthly__2168815381 uniqueness_constraints: {} foreign_keys: {} - - name: sqlmesh__metrics_metrics__metrics_v0__1989478904__temp + - name: sqlmesh__metrics_metrics__stars_to_artifact_monthly__2168815381__temp description: "" arguments: {} - type: sqlmesh__metrics_metrics__metrics_v0__1989478904__temp + type: sqlmesh__metrics_metrics__stars_to_artifact_monthly__2168815381__temp uniqueness_constraints: {} foreign_keys: {} - - name: sqlmesh__metrics_metrics__metrics_v0__2384275897 + - name: sqlmesh__metrics_metrics__stars_to_artifact_monthly__3342764004 description: "" arguments: {} - type: sqlmesh__metrics_metrics__metrics_v0__2384275897 + type: sqlmesh__metrics_metrics__stars_to_artifact_monthly__3342764004 uniqueness_constraints: {} foreign_keys: {} - - name: sqlmesh__metrics_metrics__metrics_v0__2384275897__temp + - name: sqlmesh__metrics_metrics__stars_to_artifact_monthly__3342764004__temp description: "" arguments: {} - type: sqlmesh__metrics_metrics__metrics_v0__2384275897__temp + type: sqlmesh__metrics_metrics__stars_to_artifact_monthly__3342764004__temp uniqueness_constraints: {} foreign_keys: {} - - name: sqlmesh__metrics_metrics__metrics_v0__3641251458 + - name: sqlmesh__metrics_metrics__stars_to_artifact_weekly__1743497213 description: "" arguments: {} - type: sqlmesh__metrics_metrics__metrics_v0__3641251458 + type: sqlmesh__metrics_metrics__stars_to_artifact_weekly__1743497213 uniqueness_constraints: {} foreign_keys: {} - - name: sqlmesh__metrics_metrics__metrics_v0__3641251458__temp + - name: sqlmesh__metrics_metrics__stars_to_artifact_weekly__1743497213__temp description: "" arguments: {} - type: sqlmesh__metrics_metrics__metrics_v0__3641251458__temp + type: sqlmesh__metrics_metrics__stars_to_artifact_weekly__1743497213__temp uniqueness_constraints: {} foreign_keys: {} - - name: sqlmesh__metrics_metrics__metrics_v0__3889562040 + - name: sqlmesh__metrics_metrics__stars_to_artifact_weekly__3851289333 description: "" arguments: {} - type: sqlmesh__metrics_metrics__metrics_v0__3889562040 + type: sqlmesh__metrics_metrics__stars_to_artifact_weekly__3851289333 uniqueness_constraints: {} foreign_keys: {} - - name: sqlmesh__metrics_metrics__metrics_v0__3889562040__temp + - name: sqlmesh__metrics_metrics__stars_to_artifact_weekly__3851289333__temp description: "" arguments: {} - type: sqlmesh__metrics_metrics__metrics_v0__3889562040__temp + type: sqlmesh__metrics_metrics__stars_to_artifact_weekly__3851289333__temp uniqueness_constraints: {} foreign_keys: {} - - name: sqlmesh__metrics_metrics__metrics_v0__4156811425 + - name: sqlmesh__metrics_metrics__stars_to_collection_daily__1704087402 description: "" arguments: {} - type: sqlmesh__metrics_metrics__metrics_v0__4156811425 + type: sqlmesh__metrics_metrics__stars_to_collection_daily__1704087402 uniqueness_constraints: {} foreign_keys: {} - - name: sqlmesh__metrics_metrics__metrics_v0__4156811425__temp + - name: sqlmesh__metrics_metrics__stars_to_collection_daily__1704087402__temp description: "" arguments: {} - type: sqlmesh__metrics_metrics__metrics_v0__4156811425__temp + type: sqlmesh__metrics_metrics__stars_to_collection_daily__1704087402__temp uniqueness_constraints: {} foreign_keys: {} - - name: sqlmesh__metrics_metrics__metrics_v0__472213919 + - name: sqlmesh__metrics_metrics__stars_to_collection_daily__516027240 description: "" arguments: {} - type: sqlmesh__metrics_metrics__metrics_v0__472213919 + type: sqlmesh__metrics_metrics__stars_to_collection_daily__516027240 uniqueness_constraints: {} foreign_keys: {} - - name: sqlmesh__metrics_metrics__metrics_v0__472213919__temp + - name: sqlmesh__metrics_metrics__stars_to_collection_daily__516027240__temp description: "" arguments: {} - type: sqlmesh__metrics_metrics__metrics_v0__472213919__temp + type: sqlmesh__metrics_metrics__stars_to_collection_daily__516027240__temp uniqueness_constraints: {} foreign_keys: {} - - name: sqlmesh__metrics_metrics__metrics_v0__698231123 + - name: sqlmesh__metrics_metrics__stars_to_collection_monthly__1295871846 description: "" arguments: {} - type: sqlmesh__metrics_metrics__metrics_v0__698231123 + type: sqlmesh__metrics_metrics__stars_to_collection_monthly__1295871846 uniqueness_constraints: {} foreign_keys: {} - - name: sqlmesh__metrics_metrics__metrics_v0__698231123__temp + - name: sqlmesh__metrics_metrics__stars_to_collection_monthly__1295871846__temp description: "" arguments: {} - type: sqlmesh__metrics_metrics__metrics_v0__698231123__temp + type: sqlmesh__metrics_metrics__stars_to_collection_monthly__1295871846__temp uniqueness_constraints: {} foreign_keys: {} - - name: sqlmesh__metrics_metrics__metrics_v0__741092249 + - name: sqlmesh__metrics_metrics__stars_to_collection_monthly__3008979280 description: "" arguments: {} - type: sqlmesh__metrics_metrics__metrics_v0__741092249 + type: sqlmesh__metrics_metrics__stars_to_collection_monthly__3008979280 uniqueness_constraints: {} foreign_keys: {} - - name: sqlmesh__metrics_metrics__metrics_v0__741092249__temp + - name: sqlmesh__metrics_metrics__stars_to_collection_monthly__3008979280__temp description: "" arguments: {} - type: sqlmesh__metrics_metrics__metrics_v0__741092249__temp + type: sqlmesh__metrics_metrics__stars_to_collection_monthly__3008979280__temp uniqueness_constraints: {} foreign_keys: {} - - name: sqlmesh__metrics_metrics__metrics_v0__885103174 + - name: sqlmesh__metrics_metrics__stars_to_collection_weekly__1485544187 description: "" arguments: {} - type: sqlmesh__metrics_metrics__metrics_v0__885103174 + type: sqlmesh__metrics_metrics__stars_to_collection_weekly__1485544187 uniqueness_constraints: {} foreign_keys: {} - - name: sqlmesh__metrics_metrics__metrics_v0__885103174__temp + - name: sqlmesh__metrics_metrics__stars_to_collection_weekly__1485544187__temp description: "" arguments: {} - type: sqlmesh__metrics_metrics__metrics_v0__885103174__temp + type: sqlmesh__metrics_metrics__stars_to_collection_weekly__1485544187__temp uniqueness_constraints: {} foreign_keys: {} - - name: sqlmesh__metrics_metrics__timeseries_code_metrics_by_artifact_over_30_days__7598012 + - name: sqlmesh__metrics_metrics__stars_to_collection_weekly__3749819661 description: "" arguments: {} - type: sqlmesh__metrics_metrics__timeseries_code_metrics_by_artifact_over_30_days__7598012 + type: sqlmesh__metrics_metrics__stars_to_collection_weekly__3749819661 uniqueness_constraints: {} foreign_keys: {} - - name: sqlmesh__metrics_metrics__timeseries_code_metrics_by_artifact_over_30_days__7598012__temp + - name: sqlmesh__metrics_metrics__stars_to_collection_weekly__3749819661__temp description: "" arguments: {} - type: sqlmesh__metrics_metrics__timeseries_code_metrics_by_artifact_over_30_days__7598012__temp + type: sqlmesh__metrics_metrics__stars_to_collection_weekly__3749819661__temp uniqueness_constraints: {} foreign_keys: {} - - name: sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_over_30_days__1052226158 + - name: sqlmesh__metrics_metrics__stars_to_project_daily__3520205442 description: "" arguments: {} - type: sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_over_30_days__1052226158 + type: sqlmesh__metrics_metrics__stars_to_project_daily__3520205442 uniqueness_constraints: {} foreign_keys: {} - - name: sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_over_30_days__1052226158__temp + - name: sqlmesh__metrics_metrics__stars_to_project_daily__3520205442__temp description: "" arguments: {} - type: sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_over_30_days__1052226158__temp + type: sqlmesh__metrics_metrics__stars_to_project_daily__3520205442__temp uniqueness_constraints: {} foreign_keys: {} - - name: sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_over_30_days__1641497371 + - name: sqlmesh__metrics_metrics__stars_to_project_daily__629299181 description: "" arguments: {} - type: sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_over_30_days__1641497371 + type: sqlmesh__metrics_metrics__stars_to_project_daily__629299181 uniqueness_constraints: {} foreign_keys: {} - - name: sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_over_30_days__1641497371__temp + - name: sqlmesh__metrics_metrics__stars_to_project_daily__629299181__temp description: "" arguments: {} - type: sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_over_30_days__1641497371__temp + type: sqlmesh__metrics_metrics__stars_to_project_daily__629299181__temp uniqueness_constraints: {} foreign_keys: {} - - name: sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_over_30_days__2141203280 + - name: sqlmesh__metrics_metrics__stars_to_project_monthly__1354212363 description: "" arguments: {} - type: sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_over_30_days__2141203280 + type: sqlmesh__metrics_metrics__stars_to_project_monthly__1354212363 uniqueness_constraints: {} foreign_keys: {} - - name: sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_over_30_days__2141203280__temp + - name: sqlmesh__metrics_metrics__stars_to_project_monthly__1354212363__temp description: "" arguments: {} - type: sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_over_30_days__2141203280__temp + type: sqlmesh__metrics_metrics__stars_to_project_monthly__1354212363__temp uniqueness_constraints: {} foreign_keys: {} - - name: sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_over_30_days__2202426059 + - name: sqlmesh__metrics_metrics__stars_to_project_monthly__2390911040 description: "" arguments: {} - type: sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_over_30_days__2202426059 + type: sqlmesh__metrics_metrics__stars_to_project_monthly__2390911040 uniqueness_constraints: {} foreign_keys: {} - - name: sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_over_30_days__2202426059__temp + - name: sqlmesh__metrics_metrics__stars_to_project_monthly__2390911040__temp description: "" arguments: {} - type: sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_over_30_days__2202426059__temp + type: sqlmesh__metrics_metrics__stars_to_project_monthly__2390911040__temp uniqueness_constraints: {} foreign_keys: {} - - name: sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_over_30_days__2705758559 + - name: sqlmesh__metrics_metrics__stars_to_project_weekly__2108842660 description: "" arguments: {} - type: sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_over_30_days__2705758559 + type: sqlmesh__metrics_metrics__stars_to_project_weekly__2108842660 uniqueness_constraints: {} foreign_keys: {} - - name: sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_over_30_days__2705758559__temp + - name: sqlmesh__metrics_metrics__stars_to_project_weekly__2108842660__temp description: "" arguments: {} - type: sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_over_30_days__2705758559__temp + type: sqlmesh__metrics_metrics__stars_to_project_weekly__2108842660__temp uniqueness_constraints: {} foreign_keys: {} - - name: sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_over_30_days__3060931431 + - name: sqlmesh__metrics_metrics__stars_to_project_weekly__4146311776 description: "" arguments: {} - type: sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_over_30_days__3060931431 + type: sqlmesh__metrics_metrics__stars_to_project_weekly__4146311776 uniqueness_constraints: {} foreign_keys: {} - - name: sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_over_30_days__3060931431__temp + - name: sqlmesh__metrics_metrics__stars_to_project_weekly__4146311776__temp description: "" arguments: {} - type: sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_over_30_days__3060931431__temp + type: sqlmesh__metrics_metrics__stars_to_project_weekly__4146311776__temp uniqueness_constraints: {} foreign_keys: {} - - name: sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_over_30_days__3629470274 + - name: sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_v0__1270130250 description: "" arguments: {} - type: sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_over_30_days__3629470274 + type: sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_v0__1270130250 uniqueness_constraints: {} foreign_keys: {} - - name: sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_over_30_days__3629470274__temp + - name: sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_v0__1270130250__temp description: "" arguments: {} - type: sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_over_30_days__3629470274__temp + type: sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_v0__1270130250__temp uniqueness_constraints: {} foreign_keys: {} - - name: sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_over_30_days__3716588191 + - name: sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_v0__1727810142 description: "" arguments: {} - type: sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_over_30_days__3716588191 + type: sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_v0__1727810142 uniqueness_constraints: {} foreign_keys: {} - - name: sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_over_30_days__3716588191__temp + - name: sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_v0__1727810142__temp description: "" arguments: {} - type: sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_over_30_days__3716588191__temp + type: sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_v0__1727810142__temp uniqueness_constraints: {} foreign_keys: {} - - name: sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_over_30_days__3782520343 + - name: sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_v0__1996731649 description: "" arguments: {} - type: sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_over_30_days__3782520343 + type: sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_v0__1996731649 uniqueness_constraints: {} foreign_keys: {} - - name: sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_over_30_days__3782520343__temp + - name: sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_v0__1996731649__temp description: "" arguments: {} - type: sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_over_30_days__3782520343__temp + type: sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_v0__1996731649__temp uniqueness_constraints: {} foreign_keys: {} - - name: sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_over_30_days__4007628622 + - name: sqlmesh__metrics_metrics__timeseries_metrics_by_collection_v0__2468299318 description: "" arguments: {} - type: sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_over_30_days__4007628622 + type: sqlmesh__metrics_metrics__timeseries_metrics_by_collection_v0__2468299318 uniqueness_constraints: {} foreign_keys: {} - - name: sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_over_30_days__4007628622__temp + - name: sqlmesh__metrics_metrics__timeseries_metrics_by_collection_v0__2468299318__temp description: "" arguments: {} - type: sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_over_30_days__4007628622__temp + type: sqlmesh__metrics_metrics__timeseries_metrics_by_collection_v0__2468299318__temp uniqueness_constraints: {} foreign_keys: {} - - name: sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_over_30_days__411625291 + - name: sqlmesh__metrics_metrics__timeseries_metrics_by_collection_v0__2496789213 description: "" arguments: {} - type: sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_over_30_days__411625291 + type: sqlmesh__metrics_metrics__timeseries_metrics_by_collection_v0__2496789213 uniqueness_constraints: {} foreign_keys: {} - - name: sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_over_30_days__411625291__temp + - name: sqlmesh__metrics_metrics__timeseries_metrics_by_collection_v0__2496789213__temp description: "" arguments: {} - type: sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_over_30_days__411625291__temp + type: sqlmesh__metrics_metrics__timeseries_metrics_by_collection_v0__2496789213__temp uniqueness_constraints: {} foreign_keys: {} - - name: sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_over_30_days__4285487256 + - name: sqlmesh__metrics_metrics__timeseries_metrics_by_collection_v0__3525966047 description: "" arguments: {} - type: sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_over_30_days__4285487256 + type: sqlmesh__metrics_metrics__timeseries_metrics_by_collection_v0__3525966047 uniqueness_constraints: {} foreign_keys: {} - - name: sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_over_30_days__4285487256__temp + - name: sqlmesh__metrics_metrics__timeseries_metrics_by_collection_v0__3525966047__temp description: "" arguments: {} - type: sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_over_30_days__4285487256__temp + type: sqlmesh__metrics_metrics__timeseries_metrics_by_collection_v0__3525966047__temp uniqueness_constraints: {} foreign_keys: {} - - name: sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_v0__1280450367 + - name: sqlmesh__metrics_metrics__timeseries_metrics_by_project_v0__1782460057 description: "" arguments: {} - type: sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_v0__1280450367 + type: sqlmesh__metrics_metrics__timeseries_metrics_by_project_v0__1782460057 uniqueness_constraints: {} foreign_keys: {} - - name: sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_v0__1280450367__temp + - name: sqlmesh__metrics_metrics__timeseries_metrics_by_project_v0__1782460057__temp description: "" arguments: {} - type: sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_v0__1280450367__temp + type: sqlmesh__metrics_metrics__timeseries_metrics_by_project_v0__1782460057__temp uniqueness_constraints: {} foreign_keys: {} - - name: sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_v0__1833626329 + - name: sqlmesh__metrics_metrics__timeseries_metrics_by_project_v0__1912179822 description: "" arguments: {} - type: sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_v0__1833626329 + type: sqlmesh__metrics_metrics__timeseries_metrics_by_project_v0__1912179822 uniqueness_constraints: {} foreign_keys: {} - - name: sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_v0__1833626329__temp + - name: sqlmesh__metrics_metrics__timeseries_metrics_by_project_v0__1912179822__temp description: "" arguments: {} - type: sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_v0__1833626329__temp + type: sqlmesh__metrics_metrics__timeseries_metrics_by_project_v0__1912179822__temp uniqueness_constraints: {} foreign_keys: {} - - name: sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_v0__2123659464 + - name: sqlmesh__metrics_metrics__timeseries_metrics_by_project_v0__3979194729 description: "" arguments: {} - type: sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_v0__2123659464 + type: sqlmesh__metrics_metrics__timeseries_metrics_by_project_v0__3979194729 uniqueness_constraints: {} foreign_keys: {} - - name: sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_v0__2123659464__temp + - name: sqlmesh__metrics_metrics__timeseries_metrics_by_project_v0__3979194729__temp description: "" arguments: {} - type: sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_v0__2123659464__temp + type: sqlmesh__metrics_metrics__timeseries_metrics_by_project_v0__3979194729__temp uniqueness_constraints: {} foreign_keys: {} - - name: sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_v0__2343650771 + - name: sqlmesh__metrics_metrics__timeseries_metrics_to_artifact__2351048721 description: "" arguments: {} - type: sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_v0__2343650771 + type: sqlmesh__metrics_metrics__timeseries_metrics_to_artifact__2351048721 uniqueness_constraints: {} foreign_keys: {} - - name: sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_v0__2343650771__temp + - name: sqlmesh__metrics_metrics__timeseries_metrics_to_artifact__2351048721__temp description: "" arguments: {} - type: sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_v0__2343650771__temp + type: sqlmesh__metrics_metrics__timeseries_metrics_to_artifact__2351048721__temp uniqueness_constraints: {} foreign_keys: {} - - name: sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_v0__2513542600 + - name: sqlmesh__metrics_metrics__timeseries_metrics_to_artifact__3322379927 description: "" arguments: {} - type: sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_v0__2513542600 + type: sqlmesh__metrics_metrics__timeseries_metrics_to_artifact__3322379927 uniqueness_constraints: {} foreign_keys: {} - - name: sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_v0__2513542600__temp + - name: sqlmesh__metrics_metrics__timeseries_metrics_to_artifact__3322379927__temp description: "" arguments: {} - type: sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_v0__2513542600__temp + type: sqlmesh__metrics_metrics__timeseries_metrics_to_artifact__3322379927__temp uniqueness_constraints: {} foreign_keys: {} - - name: sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_v0__274191541 + - name: sqlmesh__metrics_metrics__timeseries_metrics_to_artifact__4207207325 description: "" arguments: {} - type: sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_v0__274191541 + type: sqlmesh__metrics_metrics__timeseries_metrics_to_artifact__4207207325 uniqueness_constraints: {} foreign_keys: {} - - name: sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_v0__274191541__temp + - name: sqlmesh__metrics_metrics__timeseries_metrics_to_artifact__4207207325__temp description: "" arguments: {} - type: sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_v0__274191541__temp + type: sqlmesh__metrics_metrics__timeseries_metrics_to_artifact__4207207325__temp uniqueness_constraints: {} foreign_keys: {} - - name: sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_v0__2787405387 + - name: sqlmesh__metrics_metrics__timeseries_metrics_to_collection__2679590610 description: "" arguments: {} - type: sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_v0__2787405387 + type: sqlmesh__metrics_metrics__timeseries_metrics_to_collection__2679590610 uniqueness_constraints: {} foreign_keys: {} - - name: sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_v0__2787405387__temp + - name: sqlmesh__metrics_metrics__timeseries_metrics_to_collection__2679590610__temp description: "" arguments: {} - type: sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_v0__2787405387__temp + type: sqlmesh__metrics_metrics__timeseries_metrics_to_collection__2679590610__temp uniqueness_constraints: {} foreign_keys: {} - - name: sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_v0__4180627168 + - name: sqlmesh__metrics_metrics__timeseries_metrics_to_collection__3172946056 description: "" arguments: {} - type: sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_v0__4180627168 + type: sqlmesh__metrics_metrics__timeseries_metrics_to_collection__3172946056 uniqueness_constraints: {} foreign_keys: {} - - name: sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_v0__4180627168__temp + - name: sqlmesh__metrics_metrics__timeseries_metrics_to_collection__3172946056__temp description: "" arguments: {} - type: sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_v0__4180627168__temp + type: sqlmesh__metrics_metrics__timeseries_metrics_to_collection__3172946056__temp uniqueness_constraints: {} foreign_keys: {} - - name: sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_v0__4229608905 + - name: sqlmesh__metrics_metrics__timeseries_metrics_to_collection__3648127228 description: "" arguments: {} - type: sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_v0__4229608905 + type: sqlmesh__metrics_metrics__timeseries_metrics_to_collection__3648127228 uniqueness_constraints: {} foreign_keys: {} - - name: sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_v0__4229608905__temp + - name: sqlmesh__metrics_metrics__timeseries_metrics_to_collection__3648127228__temp description: "" arguments: {} - type: sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_v0__4229608905__temp + type: sqlmesh__metrics_metrics__timeseries_metrics_to_collection__3648127228__temp uniqueness_constraints: {} foreign_keys: {} - - name: sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_v0__594520992 + - name: sqlmesh__metrics_metrics__timeseries_metrics_to_project__2069061168 description: "" arguments: {} - type: sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_v0__594520992 + type: sqlmesh__metrics_metrics__timeseries_metrics_to_project__2069061168 uniqueness_constraints: {} foreign_keys: {} - - name: sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_v0__594520992__temp + - name: sqlmesh__metrics_metrics__timeseries_metrics_to_project__2069061168__temp description: "" arguments: {} - type: sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_v0__594520992__temp + type: sqlmesh__metrics_metrics__timeseries_metrics_to_project__2069061168__temp uniqueness_constraints: {} foreign_keys: {} - - name: sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_v0__635461998 + - name: sqlmesh__metrics_metrics__timeseries_metrics_to_project__3295140178 description: "" arguments: {} - type: sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_v0__635461998 + type: sqlmesh__metrics_metrics__timeseries_metrics_to_project__3295140178 uniqueness_constraints: {} foreign_keys: {} - - name: sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_v0__635461998__temp + - name: sqlmesh__metrics_metrics__timeseries_metrics_to_project__3295140178__temp description: "" arguments: {} - type: sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_v0__635461998__temp + type: sqlmesh__metrics_metrics__timeseries_metrics_to_project__3295140178__temp uniqueness_constraints: {} foreign_keys: {} - - name: sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_v0__661819154 + - name: sqlmesh__metrics_metrics__timeseries_metrics_to_project__693599064 description: "" arguments: {} - type: sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_v0__661819154 + type: sqlmesh__metrics_metrics__timeseries_metrics_to_project__693599064 uniqueness_constraints: {} foreign_keys: {} - - name: sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_v0__661819154__temp + - name: sqlmesh__metrics_metrics__timeseries_metrics_to_project__693599064__temp description: "" arguments: {} - type: sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_v0__661819154__temp + type: sqlmesh__metrics_metrics__timeseries_metrics_to_project__693599064__temp uniqueness_constraints: {} foreign_keys: {} - name: timeseries_events_by_artifact_v0 diff --git a/apps/hasura3/package.json b/apps/hasura3/package.json index 70ed77d83..6c45ba0e6 100644 --- a/apps/hasura3/package.json +++ b/apps/hasura3/package.json @@ -23,7 +23,7 @@ "lint:eslint": "eslint --ignore-path ../../.gitignore --max-warnings 0 .", "lint:prettier": "prettier --ignore-path ../../.gitignore --log-level warn --check **/*.{js,jsx,ts,tsx,sol,md,json}", "metadata:update": "dotenv -- node --loader ts-node/esm src/cli.ts", - "metadata:introspect": "ddn connector introspect oso_clickhouse --add-all-resources", + "metadata:introspect": "ddn connector introspect oso_clickhouse", "metadata:build:local": "ddn supergraph build local", "metadata:deploy:cloud": "ddn supergraph build create", "start": "dotenv -- docker compose up --build --watch",