diff --git a/apps/frontend/components/dataprovider/metrics-data-provider.tsx b/apps/frontend/components/dataprovider/metrics-data-provider.tsx
index afe52958a..e0172a419 100644
--- a/apps/frontend/components/dataprovider/metrics-data-provider.tsx
+++ b/apps/frontend/components/dataprovider/metrics-data-provider.tsx
@@ -10,7 +10,7 @@ import {
} from "@opensource-observer/utils";
import {
GET_TIMESERIES_METRICS_BY_ARTIFACT,
- GET_TIMESERIES_METRICS_BY_PROJECT,
+ //GET_TIMESERIES_METRICS_BY_PROJECT,
} from "../../lib/graphql/queries";
import { eventTimeToLabel } from "../../lib/parsing";
import { RegistrationProps } from "../../lib/types/plasmic";
@@ -319,7 +319,8 @@ function MetricsDataProvider(props: MetricsDataProviderProps) {
return props.entityType === "artifact" ? (
) : props.entityType === "project" ? (
-
+ //
+ <>{props.children}>
) : (
assertNever(props.entityType)
);
@@ -387,6 +388,7 @@ function ArtifactMetricsDataProvider(props: MetricsDataProviderProps) {
);
}
+/**
function ProjectMetricsDataProvider(props: MetricsDataProviderProps) {
useEnsureAuth();
const bucketWidth = getBucketWidth(props);
@@ -447,6 +449,7 @@ function ProjectMetricsDataProvider(props: MetricsDataProviderProps) {
/>
);
}
+*/
export { MetricsDataProviderRegistration, MetricsDataProvider };
export type { MetricsDataProviderProps };
diff --git a/apps/frontend/lib/graphql/queries.ts b/apps/frontend/lib/graphql/queries.ts
index 6d77a6d71..71bbaf3ef 100644
--- a/apps/frontend/lib/graphql/queries.ts
+++ b/apps/frontend/lib/graphql/queries.ts
@@ -11,8 +11,8 @@ const GET_TIMESERIES_METRICS_BY_ARTIFACT = gql(`
query TimeseriesMetricsByArtifact(
$artifactIds: [String!],
$metricIds: [String!],
- $startDate: Oso_DateTime!,
- $endDate: Oso_DateTime!,
+ $startDate: Oso_Date!,
+ $endDate: Oso_Date!,
) {
oso_timeseriesMetricsByArtifactV0(where: {
artifactId: {_in: $artifactIds},
@@ -43,6 +43,7 @@ const GET_TIMESERIES_METRICS_BY_ARTIFACT = gql(`
}
`);
+/**
const GET_TIMESERIES_METRICS_BY_PROJECT = gql(`
query TimeseriesMetricsByProject(
$projectIds: [String!],
@@ -79,8 +80,9 @@ const GET_TIMESERIES_METRICS_BY_PROJECT = gql(`
}
}
`);
+ */
export {
GET_TIMESERIES_METRICS_BY_ARTIFACT,
- GET_TIMESERIES_METRICS_BY_PROJECT,
+ //GET_TIMESERIES_METRICS_BY_PROJECT,
};
diff --git a/apps/hasura3/oso_subgraph/connector/oso_clickhouse/configuration.json b/apps/hasura3/oso_subgraph/connector/oso_clickhouse/configuration.json
index 56d825972..5a1dc2197 100644
--- a/apps/hasura3/oso_subgraph/connector/oso_clickhouse/configuration.json
+++ b/apps/hasura3/oso_subgraph/connector/oso_clickhouse/configuration.json
@@ -154,140 +154,209 @@
}
}
},
- "events_daily_to_artifact": {
+ "metrics__dev_events_daily_to_artifact": {
"name": "events_daily_to_artifact",
- "schema": "default",
+ "schema": "metrics__dev",
"comment": "",
"return_type": {
"kind": "definition",
"columns": {
- "amount": "Float32",
- "artifact_id": "String",
- "bucket_day": "DateTime",
- "event_type": "String"
+ "amount": "Float64",
+ "bucket_day": "Date",
+ "event_source": "String",
+ "event_type": "String",
+ "from_artifact_id": "String",
+ "to_artifact_id": "String"
}
}
},
- "events_daily_to_collection": {
- "name": "events_daily_to_collection",
- "schema": "default",
+ "metrics__dev_metrics_v0": {
+ "name": "metrics_v0",
+ "schema": "metrics__dev",
"comment": "",
"return_type": {
"kind": "definition",
"columns": {
- "amount": "Float32",
- "bucket_day": "DateTime",
- "collection_id": "String",
- "event_type": "String"
+ "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)"
}
}
},
- "events_daily_to_project": {
- "name": "events_daily_to_project",
- "schema": "default",
+ "metrics__dev_timeseries_metrics_by_artifact_over_30_days": {
+ "name": "timeseries_metrics_by_artifact_over_30_days",
+ "schema": "metrics__dev",
"comment": "",
"return_type": {
"kind": "definition",
"columns": {
- "amount": "Float32",
- "bucket_day": "DateTime",
- "event_type": "String",
- "project_id": "String"
+ "amount": "Float64",
+ "bucket_day": "Date",
+ "event_source": "String",
+ "from_artifact_id": "String",
+ "metric": "String",
+ "to_artifact_id": "String"
}
}
},
- "events_monthly_to_artifact": {
- "name": "events_monthly_to_artifact",
- "schema": "default",
+ "metrics__dev_timeseries_metrics_by_artifact_v0": {
+ "name": "timeseries_metrics_by_artifact_v0",
+ "schema": "metrics__dev",
"comment": "",
"return_type": {
"kind": "definition",
"columns": {
- "amount": "Float32",
+ "amount": "Float64",
"artifact_id": "String",
- "bucket_month": "DateTime",
- "event_type": "String"
+ "metric_id": "String",
+ "sample_date": "Date",
+ "unit": "Nullable(String)"
}
}
},
- "events_monthly_to_collection": {
- "name": "events_monthly_to_collection",
- "schema": "default",
+ "metrics_events_daily_to_artifact": {
+ "name": "events_daily_to_artifact",
+ "schema": "metrics",
"comment": "",
"return_type": {
"kind": "definition",
"columns": {
- "amount": "Float32",
- "bucket_month": "DateTime",
- "collection_id": "String",
- "event_type": "String"
+ "amount": "Float64",
+ "bucket_day": "Date",
+ "event_source": "String",
+ "event_type": "String",
+ "from_artifact_id": "String",
+ "to_artifact_id": "String"
}
}
},
- "events_monthly_to_project": {
- "name": "events_monthly_to_project",
- "schema": "default",
+ "metrics_metrics_v0": {
+ "name": "metrics_v0",
+ "schema": "metrics",
"comment": "",
"return_type": {
"kind": "definition",
"columns": {
- "amount": "Float32",
- "bucket_month": "DateTime",
- "event_type": "String",
- "project_id": "String"
+ "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)"
}
}
},
- "events_weekly_to_artifact": {
- "name": "events_weekly_to_artifact",
- "schema": "default",
+ "metrics_timeseries_metrics_by_artifact_over_30_days": {
+ "name": "timeseries_metrics_by_artifact_over_30_days",
+ "schema": "metrics",
"comment": "",
"return_type": {
"kind": "definition",
"columns": {
- "amount": "Float32",
+ "amount": "Float64",
+ "bucket_day": "Date",
+ "event_source": "String",
+ "from_artifact_id": "String",
+ "metric": "String",
+ "to_artifact_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",
- "bucket_week": "DateTime",
- "event_type": "String"
+ "metric_id": "String",
+ "sample_date": "Date",
+ "unit": "Nullable(String)"
}
}
},
- "events_weekly_to_collection": {
- "name": "events_weekly_to_collection",
+ "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": {
- "amount": "Float32",
- "bucket_week": "DateTime",
"collection_id": "String",
- "event_type": "String"
+ "collection_name": "String",
+ "collection_namespace": "String",
+ "collection_source": "String",
+ "project_id": "String",
+ "project_name": "String",
+ "project_namespace": "String",
+ "project_source": "String"
}
}
},
- "events_weekly_to_project": {
- "name": "events_weekly_to_project",
+ "projects_v1": {
+ "name": "projects_v1",
"schema": "default",
"comment": "",
"return_type": {
"kind": "definition",
"columns": {
- "amount": "Float32",
- "bucket_week": "DateTime",
- "event_type": "String",
- "project_id": "String"
+ "description": "String",
+ "display_name": "String",
+ "project_id": "String",
+ "project_name": "String",
+ "project_namespace": "String",
+ "project_source": "String"
}
}
},
- "metrics__dev_int_events_daily_to_artifact": {
- "name": "int_events_daily_to_artifact",
- "schema": "metrics__dev",
+ "sqlmesh__metrics_metrics__events_daily_to_artifact__1469322421": {
+ "name": "metrics__events_daily_to_artifact__1469322421",
+ "schema": "sqlmesh__metrics",
"comment": "",
"return_type": {
"kind": "definition",
"columns": {
- "amount": "Int64",
+ "amount": "Float64",
"bucket_day": "Date",
"event_source": "String",
"event_type": "String",
@@ -296,24 +365,25 @@
}
}
},
- "metrics__dev_int_timeseries_metrics_by_artifact_developers": {
- "name": "int_timeseries_metrics_by_artifact_developers",
- "schema": "metrics__dev",
+ "sqlmesh__metrics_metrics__events_daily_to_artifact__1469322421__temp": {
+ "name": "metrics__events_daily_to_artifact__1469322421__temp",
+ "schema": "sqlmesh__metrics",
"comment": "",
"return_type": {
"kind": "definition",
"columns": {
- "amount": "Int64",
+ "amount": "Float64",
"bucket_day": "Date",
"event_source": "String",
- "metric": "String",
+ "event_type": "String",
+ "from_artifact_id": "String",
"to_artifact_id": "String"
}
}
},
- "metrics__run_int_events_daily_to_artifact": {
- "name": "int_events_daily_to_artifact",
- "schema": "metrics__run",
+ "sqlmesh__metrics_metrics__events_daily_to_artifact__753507400": {
+ "name": "metrics__events_daily_to_artifact__753507400",
+ "schema": "sqlmesh__metrics",
"comment": "",
"return_type": {
"kind": "definition",
@@ -327,9 +397,9 @@
}
}
},
- "metrics__run_int_timeseries_metrics_by_artifact_developers": {
- "name": "int_timeseries_metrics_by_artifact_developers",
- "schema": "metrics__run",
+ "sqlmesh__metrics_metrics__events_daily_to_artifact__753507400__temp": {
+ "name": "metrics__events_daily_to_artifact__753507400__temp",
+ "schema": "sqlmesh__metrics",
"comment": "",
"return_type": {
"kind": "definition",
@@ -337,546 +407,1284 @@
"amount": "Int64",
"bucket_day": "Date",
"event_source": "String",
- "metric": "String",
+ "event_type": "String",
+ "from_artifact_id": "String",
"to_artifact_id": "String"
}
}
},
- "metrics_int_events_daily_to_artifact": {
- "name": "int_events_daily_to_artifact",
- "schema": "metrics",
+ "sqlmesh__metrics_metrics__metrics_v0__1027447929": {
+ "name": "metrics__metrics_v0__1027447929",
+ "schema": "sqlmesh__metrics",
"comment": "",
"return_type": {
"kind": "definition",
"columns": {
- "amount": "Int64",
- "bucket_day": "Date",
- "event_source": "String",
- "event_type": "String",
- "from_artifact_id": "String",
- "to_artifact_id": "String"
+ "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_int_timeseries_metrics_by_artifact_developers": {
- "name": "int_timeseries_metrics_by_artifact_developers",
- "schema": "metrics",
+ "sqlmesh__metrics_metrics__metrics_v0__1027447929__temp": {
+ "name": "metrics__metrics_v0__1027447929__temp",
+ "schema": "sqlmesh__metrics",
"comment": "",
"return_type": {
"kind": "definition",
"columns": {
- "amount": "Int64",
- "bucket_day": "Date",
- "event_source": "String",
- "metric": "String",
- "to_artifact_id": "String"
+ "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_v0": {
- "name": "metrics_v0",
- "schema": "default",
+ "sqlmesh__metrics_metrics__metrics_v0__1122994148": {
+ "name": "metrics__metrics_v0__1122994148",
+ "schema": "sqlmesh__metrics",
"comment": "",
"return_type": {
"kind": "definition",
"columns": {
- "aggregation_function": "String",
- "definition_ref": "String",
- "description": "String",
+ "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)"
+ }
+ }
+ },
+ "sqlmesh__metrics_metrics__metrics_v0__1122994148__temp": {
+ "name": "metrics__metrics_v0__1122994148__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)"
+ }
+ }
+ },
+ "sqlmesh__metrics_metrics__metrics_v0__1931009280": {
+ "name": "metrics__metrics_v0__1931009280",
+ "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": "Int64"
+ "raw_definition": "Nullable(String)"
}
}
},
- "onchain_metrics_by_project_v1": {
- "name": "onchain_metrics_by_project_v1",
- "schema": "default",
+ "sqlmesh__metrics_metrics__metrics_v0__1931009280__temp": {
+ "name": "metrics__metrics_v0__1931009280__temp",
+ "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",
+ "aggregation_function": "Nullable(String)",
+ "definition_ref": "Nullable(String)",
+ "description": "Nullable(String)",
"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"
+ "metric_id": "String",
+ "metric_name": "String",
+ "metric_namespace": "String",
+ "metric_source": "String",
+ "raw_definition": "Nullable(String)"
}
}
},
- "projects_by_collection_v1": {
- "name": "projects_by_collection_v1",
- "schema": "default",
+ "sqlmesh__metrics_metrics__metrics_v0__1972836302": {
+ "name": "metrics__metrics_v0__1972836302",
+ "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"
+ "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)"
}
}
},
- "projects_v1": {
- "name": "projects_v1",
- "schema": "default",
+ "sqlmesh__metrics_metrics__metrics_v0__1972836302__temp": {
+ "name": "metrics__metrics_v0__1972836302__temp",
+ "schema": "sqlmesh__metrics",
"comment": "",
"return_type": {
"kind": "definition",
"columns": {
- "description": "String",
+ "aggregation_function": "Nullable(String)",
+ "definition_ref": "Nullable(String)",
+ "description": "Nullable(String)",
"display_name": "String",
- "project_id": "String",
- "project_name": "String",
- "project_namespace": "String",
- "project_source": "String"
+ "metric_id": "String",
+ "metric_name": "String",
+ "metric_namespace": "String",
+ "metric_source": "String",
+ "raw_definition": "Nullable(String)"
+ }
+ }
+ },
+ "sqlmesh__metrics_metrics__metrics_v0__1989478904": {
+ "name": "metrics__metrics_v0__1989478904",
+ "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)"
+ }
+ }
+ },
+ "sqlmesh__metrics_metrics__metrics_v0__1989478904__temp": {
+ "name": "metrics__metrics_v0__1989478904__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)"
+ }
+ }
+ },
+ "sqlmesh__metrics_metrics__metrics_v0__2384275897": {
+ "name": "metrics__metrics_v0__2384275897",
+ "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)"
+ }
+ }
+ },
+ "sqlmesh__metrics_metrics__metrics_v0__2384275897__temp": {
+ "name": "metrics__metrics_v0__2384275897__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)"
+ }
+ }
+ },
+ "sqlmesh__metrics_metrics__metrics_v0__3641251458": {
+ "name": "metrics__metrics_v0__3641251458",
+ "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)"
+ }
+ }
+ },
+ "sqlmesh__metrics_metrics__metrics_v0__3641251458__temp": {
+ "name": "metrics__metrics_v0__3641251458__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)"
+ }
+ }
+ },
+ "sqlmesh__metrics_metrics__metrics_v0__3889562040": {
+ "name": "metrics__metrics_v0__3889562040",
+ "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)"
+ }
+ }
+ },
+ "sqlmesh__metrics_metrics__metrics_v0__3889562040__temp": {
+ "name": "metrics__metrics_v0__3889562040__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)"
+ }
+ }
+ },
+ "sqlmesh__metrics_metrics__metrics_v0__4156811425": {
+ "name": "metrics__metrics_v0__4156811425",
+ "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)"
+ }
+ }
+ },
+ "sqlmesh__metrics_metrics__metrics_v0__4156811425__temp": {
+ "name": "metrics__metrics_v0__4156811425__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)"
+ }
+ }
+ },
+ "sqlmesh__metrics_metrics__metrics_v0__472213919": {
+ "name": "metrics__metrics_v0__472213919",
+ "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)"
+ }
+ }
+ },
+ "sqlmesh__metrics_metrics__metrics_v0__472213919__temp": {
+ "name": "metrics__metrics_v0__472213919__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)"
+ }
+ }
+ },
+ "sqlmesh__metrics_metrics__metrics_v0__698231123": {
+ "name": "metrics__metrics_v0__698231123",
+ "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)"
+ }
+ }
+ },
+ "sqlmesh__metrics_metrics__metrics_v0__698231123__temp": {
+ "name": "metrics__metrics_v0__698231123__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)"
+ }
+ }
+ },
+ "sqlmesh__metrics_metrics__metrics_v0__741092249": {
+ "name": "metrics__metrics_v0__741092249",
+ "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)"
+ }
+ }
+ },
+ "sqlmesh__metrics_metrics__metrics_v0__741092249__temp": {
+ "name": "metrics__metrics_v0__741092249__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)"
+ }
+ }
+ },
+ "sqlmesh__metrics_metrics__metrics_v0__885103174": {
+ "name": "metrics__metrics_v0__885103174",
+ "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)"
+ }
+ }
+ },
+ "sqlmesh__metrics_metrics__metrics_v0__885103174__temp": {
+ "name": "metrics__metrics_v0__885103174__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)"
+ }
+ }
+ },
+ "sqlmesh__metrics_metrics__timeseries_code_metrics_by_artifact_over_30_days__7598012": {
+ "name": "metrics__timeseries_code_metrics_by_artifact_over_30_days__7598012",
+ "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)"
+ }
+ }
+ },
+ "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",
+ "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)"
+ }
+ }
+ },
+ "sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_over_30_days__1052226158": {
+ "name": "metrics__timeseries_metrics_by_artifact_over_30_days__1052226158",
+ "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"
+ }
+ }
+ },
+ "sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_over_30_days__1052226158__temp": {
+ "name": "metrics__timeseries_metrics_by_artifact_over_30_days__1052226158__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"
+ }
+ }
+ },
+ "sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_over_30_days__1641497371": {
+ "name": "metrics__timeseries_metrics_by_artifact_over_30_days__1641497371",
+ "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"
+ }
+ }
+ },
+ "sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_over_30_days__1641497371__temp": {
+ "name": "metrics__timeseries_metrics_by_artifact_over_30_days__1641497371__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"
+ }
+ }
+ },
+ "sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_over_30_days__2141203280": {
+ "name": "metrics__timeseries_metrics_by_artifact_over_30_days__2141203280",
+ "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"
+ }
+ }
+ },
+ "sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_over_30_days__2141203280__temp": {
+ "name": "metrics__timeseries_metrics_by_artifact_over_30_days__2141203280__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"
+ }
+ }
+ },
+ "sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_over_30_days__2202426059": {
+ "name": "metrics__timeseries_metrics_by_artifact_over_30_days__2202426059",
+ "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"
+ }
+ }
+ },
+ "sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_over_30_days__2202426059__temp": {
+ "name": "metrics__timeseries_metrics_by_artifact_over_30_days__2202426059__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"
+ }
+ }
+ },
+ "sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_over_30_days__2705758559": {
+ "name": "metrics__timeseries_metrics_by_artifact_over_30_days__2705758559",
+ "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"
}
}
},
- "sqlmesh__metrics_metrics__incremental_model__3929117331": {
- "name": "metrics__incremental_model__3929117331",
+ "sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_over_30_days__2705758559__temp": {
+ "name": "metrics__timeseries_metrics_by_artifact_over_30_days__2705758559__temp",
"schema": "sqlmesh__metrics",
"comment": "",
"return_type": {
"kind": "definition",
"columns": {
+ "amount": "Float64",
"bucket_day": "Date",
- "event_type": "String",
- "events": "Int64"
+ "event_source": "String",
+ "from_artifact_id": "String",
+ "metric": "String",
+ "to_artifact_id": "String"
}
}
},
- "sqlmesh__metrics_metrics__incremental_model__3929117331__temp": {
- "name": "metrics__incremental_model__3929117331__temp",
+ "sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_over_30_days__3060931431": {
+ "name": "metrics__timeseries_metrics_by_artifact_over_30_days__3060931431",
"schema": "sqlmesh__metrics",
"comment": "",
"return_type": {
"kind": "definition",
"columns": {
+ "amount": "Float64",
"bucket_day": "Date",
- "event_type": "String",
- "events": "Int64"
+ "event_source": "String",
+ "from_artifact_id": "String",
+ "metric": "String",
+ "to_artifact_id": "String"
}
}
},
- "sqlmesh__metrics_metrics__int_events_daily_to_artifact__1260655920": {
- "name": "metrics__int_events_daily_to_artifact__1260655920",
+ "sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_over_30_days__3060931431__temp": {
+ "name": "metrics__timeseries_metrics_by_artifact_over_30_days__3060931431__temp",
"schema": "sqlmesh__metrics",
"comment": "",
"return_type": {
"kind": "definition",
"columns": {
- "amount": "Int64",
+ "amount": "Float64",
"bucket_day": "Date",
"event_source": "String",
- "event_type": "String",
"from_artifact_id": "String",
+ "metric": "String",
"to_artifact_id": "String"
}
}
},
- "sqlmesh__metrics_metrics__int_events_daily_to_artifact__1260655920__temp": {
- "name": "metrics__int_events_daily_to_artifact__1260655920__temp",
+ "sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_over_30_days__3629470274": {
+ "name": "metrics__timeseries_metrics_by_artifact_over_30_days__3629470274",
"schema": "sqlmesh__metrics",
"comment": "",
"return_type": {
"kind": "definition",
"columns": {
- "amount": "Int64",
+ "amount": "Float64",
"bucket_day": "Date",
"event_source": "String",
- "event_type": "String",
"from_artifact_id": "String",
+ "metric": "String",
"to_artifact_id": "String"
}
}
},
- "sqlmesh__metrics_metrics__int_events_daily_to_artifact__1838358350": {
- "name": "metrics__int_events_daily_to_artifact__1838358350",
+ "sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_over_30_days__3629470274__temp": {
+ "name": "metrics__timeseries_metrics_by_artifact_over_30_days__3629470274__temp",
"schema": "sqlmesh__metrics",
"comment": "",
"return_type": {
"kind": "definition",
"columns": {
- "amount": "Int64",
+ "amount": "Float64",
"bucket_day": "Date",
"event_source": "String",
- "event_type": "String",
"from_artifact_id": "String",
+ "metric": "String",
"to_artifact_id": "String"
}
}
},
- "sqlmesh__metrics_metrics__int_events_daily_to_artifact__1838358350__temp": {
- "name": "metrics__int_events_daily_to_artifact__1838358350__temp",
+ "sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_over_30_days__3716588191": {
+ "name": "metrics__timeseries_metrics_by_artifact_over_30_days__3716588191",
"schema": "sqlmesh__metrics",
"comment": "",
"return_type": {
"kind": "definition",
"columns": {
- "amount": "Int64",
+ "amount": "Float64",
"bucket_day": "Date",
"event_source": "String",
- "event_type": "String",
"from_artifact_id": "String",
+ "metric": "String",
"to_artifact_id": "String"
}
}
},
- "sqlmesh__metrics_metrics__int_events_daily_to_artifact__2071704967__temp": {
- "name": "metrics__int_events_daily_to_artifact__2071704967__temp",
+ "sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_over_30_days__3716588191__temp": {
+ "name": "metrics__timeseries_metrics_by_artifact_over_30_days__3716588191__temp",
"schema": "sqlmesh__metrics",
"comment": "",
"return_type": {
"kind": "definition",
"columns": {
- "amount": "Int64",
+ "amount": "Float64",
"bucket_day": "Date",
"event_source": "String",
- "event_type": "String",
"from_artifact_id": "String",
+ "metric": "String",
"to_artifact_id": "String"
}
}
},
- "sqlmesh__metrics_metrics__int_events_daily_to_artifact__3344974993": {
- "name": "metrics__int_events_daily_to_artifact__3344974993",
+ "sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_over_30_days__3782520343": {
+ "name": "metrics__timeseries_metrics_by_artifact_over_30_days__3782520343",
"schema": "sqlmesh__metrics",
"comment": "",
"return_type": {
"kind": "definition",
"columns": {
- "amount": "Int64",
+ "amount": "Float64",
"bucket_day": "Date",
"event_source": "String",
- "event_type": "String",
"from_artifact_id": "String",
+ "metric": "String",
"to_artifact_id": "String"
}
}
},
- "sqlmesh__metrics_metrics__int_events_daily_to_artifact__3344974993__temp": {
- "name": "metrics__int_events_daily_to_artifact__3344974993__temp",
+ "sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_over_30_days__3782520343__temp": {
+ "name": "metrics__timeseries_metrics_by_artifact_over_30_days__3782520343__temp",
"schema": "sqlmesh__metrics",
"comment": "",
"return_type": {
"kind": "definition",
"columns": {
- "amount": "Int64",
+ "amount": "Float64",
"bucket_day": "Date",
"event_source": "String",
- "event_type": "String",
"from_artifact_id": "String",
+ "metric": "String",
"to_artifact_id": "String"
}
}
},
- "sqlmesh__metrics_metrics__int_events_daily_to_artifact__3515096595": {
- "name": "metrics__int_events_daily_to_artifact__3515096595",
+ "sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_over_30_days__4007628622": {
+ "name": "metrics__timeseries_metrics_by_artifact_over_30_days__4007628622",
"schema": "sqlmesh__metrics",
"comment": "",
"return_type": {
"kind": "definition",
"columns": {
- "amount": "Int64",
+ "amount": "Float64",
"bucket_day": "Date",
"event_source": "String",
- "event_type": "String",
"from_artifact_id": "String",
+ "metric": "String",
"to_artifact_id": "String"
}
}
},
- "sqlmesh__metrics_metrics__int_events_daily_to_artifact__3515096595__temp": {
- "name": "metrics__int_events_daily_to_artifact__3515096595__temp",
+ "sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_over_30_days__4007628622__temp": {
+ "name": "metrics__timeseries_metrics_by_artifact_over_30_days__4007628622__temp",
"schema": "sqlmesh__metrics",
"comment": "",
"return_type": {
"kind": "definition",
"columns": {
- "amount": "Int64",
+ "amount": "Float64",
"bucket_day": "Date",
"event_source": "String",
- "event_type": "String",
"from_artifact_id": "String",
+ "metric": "String",
"to_artifact_id": "String"
}
}
},
- "sqlmesh__metrics_metrics__int_events_daily_to_artifact__3571639471": {
- "name": "metrics__int_events_daily_to_artifact__3571639471",
+ "sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_over_30_days__411625291": {
+ "name": "metrics__timeseries_metrics_by_artifact_over_30_days__411625291",
"schema": "sqlmesh__metrics",
"comment": "",
"return_type": {
"kind": "definition",
"columns": {
+ "amount": "Float64",
"bucket_day": "Date",
"event_source": "String",
- "event_type": "String",
- "events": "Int64",
"from_artifact_id": "String",
+ "metric": "String",
"to_artifact_id": "String"
}
}
},
- "sqlmesh__metrics_metrics__int_events_daily_to_artifact__3571639471__temp": {
- "name": "metrics__int_events_daily_to_artifact__3571639471__temp",
+ "sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_over_30_days__411625291__temp": {
+ "name": "metrics__timeseries_metrics_by_artifact_over_30_days__411625291__temp",
"schema": "sqlmesh__metrics",
"comment": "",
"return_type": {
"kind": "definition",
"columns": {
+ "amount": "Float64",
"bucket_day": "Date",
"event_source": "String",
- "event_type": "String",
- "events": "Int64",
"from_artifact_id": "String",
+ "metric": "String",
"to_artifact_id": "String"
}
}
},
- "sqlmesh__metrics_metrics__int_timeseries_metrics_by_artifact_developers__2126831521": {
- "name": "metrics__int_timeseries_metrics_by_artifact_developers__2126831521",
+ "sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_over_30_days__4285487256": {
+ "name": "metrics__timeseries_metrics_by_artifact_over_30_days__4285487256",
"schema": "sqlmesh__metrics",
"comment": "",
"return_type": {
"kind": "definition",
"columns": {
+ "amount": "Float64",
"bucket_day": "Date",
"event_source": "String",
- "metric": "Int64",
+ "from_artifact_id": "String",
+ "metric": "String",
"to_artifact_id": "String"
}
}
},
- "sqlmesh__metrics_metrics__int_timeseries_metrics_by_artifact_developers__2126831521__temp": {
- "name": "metrics__int_timeseries_metrics_by_artifact_developers__2126831521__temp",
+ "sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_over_30_days__4285487256__temp": {
+ "name": "metrics__timeseries_metrics_by_artifact_over_30_days__4285487256__temp",
"schema": "sqlmesh__metrics",
"comment": "",
"return_type": {
"kind": "definition",
"columns": {
+ "amount": "Float64",
"bucket_day": "Date",
"event_source": "String",
- "metric": "Int64",
+ "from_artifact_id": "String",
+ "metric": "String",
"to_artifact_id": "String"
}
}
},
- "sqlmesh__metrics_metrics__int_timeseries_metrics_by_artifact_developers__2219676454": {
- "name": "metrics__int_timeseries_metrics_by_artifact_developers__2219676454",
+ "sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_v0__1280450367": {
+ "name": "metrics__timeseries_metrics_by_artifact_v0__1280450367",
"schema": "sqlmesh__metrics",
"comment": "",
"return_type": {
"kind": "definition",
"columns": {
- "amount": "Int64",
- "bucket_day": "Date",
- "event_source": "String",
- "metric": "String",
- "to_artifact_id": "String"
+ "amount": "Float64",
+ "artifact_id": "String",
+ "metric_id": "String",
+ "sample_date": "Date",
+ "unit": "Nullable(String)"
}
}
},
- "sqlmesh__metrics_metrics__int_timeseries_metrics_by_artifact_developers__2219676454__temp": {
- "name": "metrics__int_timeseries_metrics_by_artifact_developers__2219676454__temp",
+ "sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_v0__1280450367__temp": {
+ "name": "metrics__timeseries_metrics_by_artifact_v0__1280450367__temp",
"schema": "sqlmesh__metrics",
"comment": "",
"return_type": {
"kind": "definition",
"columns": {
- "amount": "Int64",
- "bucket_day": "Date",
- "event_source": "String",
- "metric": "String",
- "to_artifact_id": "String"
+ "amount": "Float64",
+ "artifact_id": "String",
+ "metric_id": "String",
+ "sample_date": "Date",
+ "unit": "Nullable(String)"
}
}
},
- "sqlmesh__metrics_metrics__int_timeseries_metrics_by_artifact_developers__4026028341": {
- "name": "metrics__int_timeseries_metrics_by_artifact_developers__4026028341",
+ "sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_v0__1833626329": {
+ "name": "metrics__timeseries_metrics_by_artifact_v0__1833626329",
"schema": "sqlmesh__metrics",
"comment": "",
"return_type": {
"kind": "definition",
"columns": {
- "amount": "Int64",
- "bucket_day": "Date",
- "event_source": "String",
- "metric": "String",
- "to_artifact_id": "String"
+ "amount": "Float64",
+ "artifact_id": "String",
+ "metric_id": "String",
+ "sample_date": "Date",
+ "unit": "Nullable(String)"
}
}
},
- "sqlmesh__metrics_metrics__int_timeseries_metrics_by_artifact_developers__4026028341__temp": {
- "name": "metrics__int_timeseries_metrics_by_artifact_developers__4026028341__temp",
+ "sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_v0__1833626329__temp": {
+ "name": "metrics__timeseries_metrics_by_artifact_v0__1833626329__temp",
"schema": "sqlmesh__metrics",
"comment": "",
"return_type": {
"kind": "definition",
"columns": {
- "amount": "Int64",
- "bucket_day": "Date",
- "event_source": "String",
- "metric": "String",
- "to_artifact_id": "String"
+ "amount": "Float64",
+ "artifact_id": "String",
+ "metric_id": "String",
+ "sample_date": "Date",
+ "unit": "Nullable(String)"
}
}
},
- "sqlmesh__metrics_metrics__int_timeseries_metrics_by_artifact_developers__4060035978__temp": {
- "name": "metrics__int_timeseries_metrics_by_artifact_developers__4060035978__temp",
+ "sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_v0__2123659464": {
+ "name": "metrics__timeseries_metrics_by_artifact_v0__2123659464",
"schema": "sqlmesh__metrics",
"comment": "",
"return_type": {
"kind": "definition",
"columns": {
- "bucket_day": "Date",
- "event_source": "String",
- "metric": "Int64",
- "to_artifact_id": "String"
+ "amount": "Float64",
+ "artifact_id": "String",
+ "metric_id": "String",
+ "sample_date": "Date",
+ "unit": "Nullable(String)"
}
}
},
- "sqlmesh__metrics_metrics__int_timeseries_metrics_by_artifact_developers__4120769275": {
- "name": "metrics__int_timeseries_metrics_by_artifact_developers__4120769275",
+ "sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_v0__2123659464__temp": {
+ "name": "metrics__timeseries_metrics_by_artifact_v0__2123659464__temp",
"schema": "sqlmesh__metrics",
"comment": "",
"return_type": {
"kind": "definition",
"columns": {
- "bucket_day": "Date",
- "event_source": "String",
- "metric": "String",
- "to_artifact_id": "String"
+ "amount": "Float64",
+ "artifact_id": "String",
+ "metric_id": "String",
+ "sample_date": "Date",
+ "unit": "Nullable(String)"
}
}
},
- "sqlmesh__metrics_metrics__int_timeseries_metrics_by_artifact_developers__4120769275__temp": {
- "name": "metrics__int_timeseries_metrics_by_artifact_developers__4120769275__temp",
+ "sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_v0__2343650771": {
+ "name": "metrics__timeseries_metrics_by_artifact_v0__2343650771",
"schema": "sqlmesh__metrics",
"comment": "",
"return_type": {
"kind": "definition",
"columns": {
- "bucket_day": "Date",
- "event_source": "String",
- "metric": "String",
- "to_artifact_id": "String"
+ "amount": "Float64",
+ "artifact_id": "String",
+ "metric_id": "String",
+ "sample_date": "Date",
+ "unit": "Nullable(String)"
}
}
},
- "sqlmesh__metrics_metrics__testing_metrics__292628068__temp": {
- "name": "metrics__testing_metrics__292628068__temp",
+ "sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_v0__2343650771__temp": {
+ "name": "metrics__timeseries_metrics_by_artifact_v0__2343650771__temp",
"schema": "sqlmesh__metrics",
"comment": "",
"return_type": {
"kind": "definition",
"columns": {
- "amount": "Int64",
- "bucket_day": "Date",
- "event_source": "String",
- "from_artifact_id": "String",
- "to_artifact_id": "String"
+ "amount": "Float64",
+ "artifact_id": "String",
+ "metric_id": "String",
+ "sample_date": "Date",
+ "unit": "Nullable(String)"
}
}
},
- "sqlmesh__metrics_metrics__testing_metrics__638047893__temp": {
- "name": "metrics__testing_metrics__638047893__temp",
+ "sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_v0__2513542600": {
+ "name": "metrics__timeseries_metrics_by_artifact_v0__2513542600",
"schema": "sqlmesh__metrics",
"comment": "",
"return_type": {
"kind": "definition",
"columns": {
- "active_days": "Nullable(Int64)",
- "bucket_day": "Date",
- "event_source": "String",
- "from_artifact_id": "String",
- "to_artifact_id": "String"
+ "amount": "Float64",
+ "artifact_id": "String",
+ "metric_id": "String",
+ "sample_date": "Date",
+ "unit": "Nullable(String)"
}
}
},
- "sqlmesh__metrics_metrics__testing_metrics__958077468__temp": {
- "name": "metrics__testing_metrics__958077468__temp",
+ "sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_v0__2513542600__temp": {
+ "name": "metrics__timeseries_metrics_by_artifact_v0__2513542600__temp",
"schema": "sqlmesh__metrics",
"comment": "",
"return_type": {
"kind": "definition",
"columns": {
- "active_days": "Nullable(Int64)",
- "bucket_day": "Date",
- "event_source": "String",
- "from_artifact_id": "String",
- "to_artifact_id": "String"
+ "amount": "Float64",
+ "artifact_id": "String",
+ "metric_id": "String",
+ "sample_date": "Date",
+ "unit": "Nullable(String)"
}
}
},
- "timeseries_events_by_artifact_v0": {
- "name": "timeseries_events_by_artifact_v0",
- "schema": "default",
+ "sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_v0__274191541": {
+ "name": "metrics__timeseries_metrics_by_artifact_v0__274191541",
+ "schema": "sqlmesh__metrics",
"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"
+ "amount": "Float64",
+ "artifact_id": "String",
+ "metric_id": "String",
+ "sample_date": "Date",
+ "unit": "Nullable(String)"
}
}
},
- "timeseries_metrics_by_artifact_v0": {
- "name": "timeseries_metrics_by_artifact_v0",
- "schema": "default",
+ "sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_v0__274191541__temp": {
+ "name": "metrics__timeseries_metrics_by_artifact_v0__274191541__temp",
+ "schema": "sqlmesh__metrics",
"comment": "",
"return_type": {
"kind": "definition",
"columns": {
- "amount": "Int64",
+ "amount": "Float64",
+ "artifact_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",
+ "schema": "sqlmesh__metrics",
+ "comment": "",
+ "return_type": {
+ "kind": "definition",
+ "columns": {
+ "amount": "Float64",
+ "artifact_id": "String",
+ "metric_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",
+ "schema": "sqlmesh__metrics",
+ "comment": "",
+ "return_type": {
+ "kind": "definition",
+ "columns": {
+ "amount": "Float64",
+ "artifact_id": "String",
+ "metric_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",
+ "schema": "sqlmesh__metrics",
+ "comment": "",
+ "return_type": {
+ "kind": "definition",
+ "columns": {
+ "amount": "Float64",
+ "artifact_id": "String",
+ "metric_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",
+ "schema": "sqlmesh__metrics",
+ "comment": "",
+ "return_type": {
+ "kind": "definition",
+ "columns": {
+ "amount": "Float64",
+ "artifact_id": "String",
+ "metric_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",
+ "schema": "sqlmesh__metrics",
+ "comment": "",
+ "return_type": {
+ "kind": "definition",
+ "columns": {
+ "amount": "Float64",
+ "artifact_id": "String",
+ "metric_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",
+ "schema": "sqlmesh__metrics",
+ "comment": "",
+ "return_type": {
+ "kind": "definition",
+ "columns": {
+ "amount": "Float64",
+ "artifact_id": "String",
+ "metric_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",
+ "schema": "sqlmesh__metrics",
+ "comment": "",
+ "return_type": {
+ "kind": "definition",
+ "columns": {
+ "amount": "Float64",
+ "artifact_id": "String",
+ "metric_id": "String",
+ "sample_date": "Date",
+ "unit": "Nullable(String)"
+ }
+ }
+ },
+ "sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_v0__594520992__temp": {
+ "name": "metrics__timeseries_metrics_by_artifact_v0__594520992__temp",
+ "schema": "sqlmesh__metrics",
+ "comment": "",
+ "return_type": {
+ "kind": "definition",
+ "columns": {
+ "amount": "Float64",
+ "artifact_id": "String",
+ "metric_id": "String",
+ "sample_date": "Date",
+ "unit": "Nullable(String)"
+ }
+ }
+ },
+ "sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_v0__635461998": {
+ "name": "metrics__timeseries_metrics_by_artifact_v0__635461998",
+ "schema": "sqlmesh__metrics",
+ "comment": "",
+ "return_type": {
+ "kind": "definition",
+ "columns": {
+ "amount": "Float64",
+ "artifact_id": "String",
+ "metric_id": "String",
+ "sample_date": "Date",
+ "unit": "Nullable(String)"
+ }
+ }
+ },
+ "sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_v0__635461998__temp": {
+ "name": "metrics__timeseries_metrics_by_artifact_v0__635461998__temp",
+ "schema": "sqlmesh__metrics",
+ "comment": "",
+ "return_type": {
+ "kind": "definition",
+ "columns": {
+ "amount": "Float64",
+ "artifact_id": "String",
+ "metric_id": "String",
+ "sample_date": "Date",
+ "unit": "Nullable(String)"
+ }
+ }
+ },
+ "sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_v0__661819154": {
+ "name": "metrics__timeseries_metrics_by_artifact_v0__661819154",
+ "schema": "sqlmesh__metrics",
+ "comment": "",
+ "return_type": {
+ "kind": "definition",
+ "columns": {
+ "amount": "Float64",
+ "artifact_id": "String",
+ "metric_id": "String",
+ "sample_date": "Date",
+ "unit": "Nullable(String)"
+ }
+ }
+ },
+ "sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_v0__661819154__temp": {
+ "name": "metrics__timeseries_metrics_by_artifact_v0__661819154__temp",
+ "schema": "sqlmesh__metrics",
+ "comment": "",
+ "return_type": {
+ "kind": "definition",
+ "columns": {
+ "amount": "Float64",
"artifact_id": "String",
"metric_id": "String",
- "sample_date": "DateTime",
- "unit": "Int64"
+ "sample_date": "Date",
+ "unit": "Nullable(String)"
}
}
},
- "timeseries_metrics_by_project_v0": {
- "name": "timeseries_metrics_by_project_v0",
+ "timeseries_events_by_artifact_v0": {
+ "name": "timeseries_events_by_artifact_v0",
"schema": "default",
"comment": "",
"return_type": {
"kind": "definition",
"columns": {
"amount": "Float32",
- "metric_id": "String",
- "project_id": "String",
- "sample_date": "DateTime",
- "unit": "String"
+ "event_source": "String",
+ "event_source_id": "String",
+ "event_type": "String",
+ "from_artifact_id": "String",
+ "time": "DateTime",
+ "to_artifact_id": "String"
}
}
},
diff --git a/apps/hasura3/oso_subgraph/metadata/EventsDailyToArtifact.hml b/apps/hasura3/oso_subgraph/metadata/EventsDailyToArtifact.hml
deleted file mode 100644
index 43a1ad773..000000000
--- a/apps/hasura3/oso_subgraph/metadata/EventsDailyToArtifact.hml
+++ /dev/null
@@ -1,120 +0,0 @@
----
-kind: ObjectType
-version: v1
-definition:
- name: EventsDailyToArtifact
- fields:
- - name: amount
- type: Float32!
- - name: artifactId
- type: String!
- - name: bucketDay
- type: DateTime!
- - name: eventType
- type: String!
- graphql:
- typeName: Oso_EventsDailyToArtifact
- inputTypeName: Oso_EventsDailyToArtifactInput
- dataConnectorTypeMapping:
- - dataConnectorName: oso_clickhouse
- dataConnectorObjectType: events_daily_to_artifact
- fieldMapping:
- amount:
- column:
- name: amount
- artifactId:
- column:
- name: artifact_id
- bucketDay:
- column:
- name: bucket_day
- eventType:
- column:
- name: event_type
-
----
-kind: TypePermissions
-version: v1
-definition:
- typeName: EventsDailyToArtifact
- permissions:
- - role: admin
- output:
- allowedFields:
- - amount
- - artifactId
- - bucketDay
- - eventType
- - role: anonymous
- output:
- allowedFields:
- - amount
- - artifactId
- - bucketDay
- - eventType
-
----
-kind: ObjectBooleanExpressionType
-version: v1
-definition:
- name: EventsDailyToArtifactBoolExp
- objectType: EventsDailyToArtifact
- dataConnectorName: oso_clickhouse
- dataConnectorObjectType: events_daily_to_artifact
- comparableFields:
- - fieldName: amount
- operators:
- enableAll: true
- - fieldName: artifactId
- operators:
- enableAll: true
- - fieldName: bucketDay
- operators:
- enableAll: true
- - fieldName: eventType
- operators:
- enableAll: true
- graphql:
- typeName: Oso_EventsDailyToArtifactBoolExp
-
----
-kind: Model
-version: v1
-definition:
- name: EventsDailyToArtifact
- objectType: EventsDailyToArtifact
- source:
- dataConnectorName: oso_clickhouse
- collection: events_daily_to_artifact
- filterExpressionType: EventsDailyToArtifactBoolExp
- orderableFields:
- - fieldName: amount
- orderByDirections:
- enableAll: true
- - fieldName: artifactId
- orderByDirections:
- enableAll: true
- - fieldName: bucketDay
- orderByDirections:
- enableAll: true
- - fieldName: eventType
- orderByDirections:
- enableAll: true
- graphql:
- selectMany:
- queryRootField: oso_eventsDailyToArtifact
- selectUniques: []
- orderByExpressionType: Oso_EventsDailyToArtifactOrderBy
-
----
-kind: ModelPermissions
-version: v1
-definition:
- modelName: EventsDailyToArtifact
- permissions:
- - role: admin
- select:
- filter: null
- - role: anonymous
- select:
- filter: null
diff --git a/apps/hasura3/oso_subgraph/metadata/EventsDailyToCollection.hml b/apps/hasura3/oso_subgraph/metadata/EventsDailyToCollection.hml
deleted file mode 100644
index a3eee3ddf..000000000
--- a/apps/hasura3/oso_subgraph/metadata/EventsDailyToCollection.hml
+++ /dev/null
@@ -1,120 +0,0 @@
----
-kind: ObjectType
-version: v1
-definition:
- name: EventsDailyToCollection
- fields:
- - name: amount
- type: Float32!
- - name: bucketDay
- type: DateTime!
- - name: collectionId
- type: String!
- - name: eventType
- type: String!
- graphql:
- typeName: Oso_EventsDailyToCollection
- inputTypeName: Oso_EventsDailyToCollectionInput
- dataConnectorTypeMapping:
- - dataConnectorName: oso_clickhouse
- dataConnectorObjectType: events_daily_to_collection
- fieldMapping:
- amount:
- column:
- name: amount
- bucketDay:
- column:
- name: bucket_day
- collectionId:
- column:
- name: collection_id
- eventType:
- column:
- name: event_type
-
----
-kind: TypePermissions
-version: v1
-definition:
- typeName: EventsDailyToCollection
- permissions:
- - role: admin
- output:
- allowedFields:
- - amount
- - bucketDay
- - collectionId
- - eventType
- - role: anonymous
- output:
- allowedFields:
- - amount
- - bucketDay
- - collectionId
- - eventType
-
----
-kind: ObjectBooleanExpressionType
-version: v1
-definition:
- name: EventsDailyToCollectionBoolExp
- objectType: EventsDailyToCollection
- dataConnectorName: oso_clickhouse
- dataConnectorObjectType: events_daily_to_collection
- comparableFields:
- - fieldName: amount
- operators:
- enableAll: true
- - fieldName: bucketDay
- operators:
- enableAll: true
- - fieldName: collectionId
- operators:
- enableAll: true
- - fieldName: eventType
- operators:
- enableAll: true
- graphql:
- typeName: Oso_EventsDailyToCollectionBoolExp
-
----
-kind: Model
-version: v1
-definition:
- name: EventsDailyToCollection
- objectType: EventsDailyToCollection
- source:
- dataConnectorName: oso_clickhouse
- collection: events_daily_to_collection
- filterExpressionType: EventsDailyToCollectionBoolExp
- orderableFields:
- - fieldName: amount
- orderByDirections:
- enableAll: true
- - fieldName: bucketDay
- orderByDirections:
- enableAll: true
- - fieldName: collectionId
- orderByDirections:
- enableAll: true
- - fieldName: eventType
- orderByDirections:
- enableAll: true
- graphql:
- selectMany:
- queryRootField: oso_eventsDailyToCollection
- selectUniques: []
- orderByExpressionType: Oso_EventsDailyToCollectionOrderBy
-
----
-kind: ModelPermissions
-version: v1
-definition:
- modelName: EventsDailyToCollection
- permissions:
- - role: admin
- select:
- filter: null
- - role: anonymous
- select:
- filter: null
diff --git a/apps/hasura3/oso_subgraph/metadata/EventsDailyToProject.hml b/apps/hasura3/oso_subgraph/metadata/EventsDailyToProject.hml
deleted file mode 100644
index 4b5e01fd0..000000000
--- a/apps/hasura3/oso_subgraph/metadata/EventsDailyToProject.hml
+++ /dev/null
@@ -1,120 +0,0 @@
----
-kind: ObjectType
-version: v1
-definition:
- name: EventsDailyToProject
- fields:
- - name: amount
- type: Float32!
- - name: bucketDay
- type: DateTime!
- - name: eventType
- type: String!
- - name: projectId
- type: String!
- graphql:
- typeName: Oso_EventsDailyToProject
- inputTypeName: Oso_EventsDailyToProjectInput
- dataConnectorTypeMapping:
- - dataConnectorName: oso_clickhouse
- dataConnectorObjectType: events_daily_to_project
- fieldMapping:
- amount:
- column:
- name: amount
- bucketDay:
- column:
- name: bucket_day
- eventType:
- column:
- name: event_type
- projectId:
- column:
- name: project_id
-
----
-kind: TypePermissions
-version: v1
-definition:
- typeName: EventsDailyToProject
- permissions:
- - role: admin
- output:
- allowedFields:
- - amount
- - bucketDay
- - eventType
- - projectId
- - role: anonymous
- output:
- allowedFields:
- - amount
- - bucketDay
- - eventType
- - projectId
-
----
-kind: ObjectBooleanExpressionType
-version: v1
-definition:
- name: EventsDailyToProjectBoolExp
- objectType: EventsDailyToProject
- dataConnectorName: oso_clickhouse
- dataConnectorObjectType: events_daily_to_project
- comparableFields:
- - fieldName: amount
- operators:
- enableAll: true
- - fieldName: bucketDay
- operators:
- enableAll: true
- - fieldName: eventType
- operators:
- enableAll: true
- - fieldName: projectId
- operators:
- enableAll: true
- graphql:
- typeName: Oso_EventsDailyToProjectBoolExp
-
----
-kind: Model
-version: v1
-definition:
- name: EventsDailyToProject
- objectType: EventsDailyToProject
- source:
- dataConnectorName: oso_clickhouse
- collection: events_daily_to_project
- filterExpressionType: EventsDailyToProjectBoolExp
- orderableFields:
- - fieldName: amount
- orderByDirections:
- enableAll: true
- - fieldName: bucketDay
- orderByDirections:
- enableAll: true
- - fieldName: eventType
- orderByDirections:
- enableAll: true
- - fieldName: projectId
- orderByDirections:
- enableAll: true
- graphql:
- selectMany:
- queryRootField: oso_eventsDailyToProject
- selectUniques: []
- orderByExpressionType: Oso_EventsDailyToProjectOrderBy
-
----
-kind: ModelPermissions
-version: v1
-definition:
- modelName: EventsDailyToProject
- permissions:
- - role: admin
- select:
- filter: null
- - role: anonymous
- select:
- filter: null
diff --git a/apps/hasura3/oso_subgraph/metadata/EventsMonthlyToArtifact.hml b/apps/hasura3/oso_subgraph/metadata/EventsMonthlyToArtifact.hml
deleted file mode 100644
index 54c9fb851..000000000
--- a/apps/hasura3/oso_subgraph/metadata/EventsMonthlyToArtifact.hml
+++ /dev/null
@@ -1,120 +0,0 @@
----
-kind: ObjectType
-version: v1
-definition:
- name: EventsMonthlyToArtifact
- fields:
- - name: amount
- type: Float32!
- - name: artifactId
- type: String!
- - name: bucketMonth
- type: DateTime!
- - name: eventType
- type: String!
- graphql:
- typeName: Oso_EventsMonthlyToArtifact
- inputTypeName: Oso_EventsMonthlyToArtifactInput
- dataConnectorTypeMapping:
- - dataConnectorName: oso_clickhouse
- dataConnectorObjectType: events_monthly_to_artifact
- fieldMapping:
- amount:
- column:
- name: amount
- artifactId:
- column:
- name: artifact_id
- bucketMonth:
- column:
- name: bucket_month
- eventType:
- column:
- name: event_type
-
----
-kind: TypePermissions
-version: v1
-definition:
- typeName: EventsMonthlyToArtifact
- permissions:
- - role: admin
- output:
- allowedFields:
- - amount
- - artifactId
- - bucketMonth
- - eventType
- - role: anonymous
- output:
- allowedFields:
- - amount
- - artifactId
- - bucketMonth
- - eventType
-
----
-kind: ObjectBooleanExpressionType
-version: v1
-definition:
- name: EventsMonthlyToArtifactBoolExp
- objectType: EventsMonthlyToArtifact
- dataConnectorName: oso_clickhouse
- dataConnectorObjectType: events_monthly_to_artifact
- comparableFields:
- - fieldName: amount
- operators:
- enableAll: true
- - fieldName: artifactId
- operators:
- enableAll: true
- - fieldName: bucketMonth
- operators:
- enableAll: true
- - fieldName: eventType
- operators:
- enableAll: true
- graphql:
- typeName: Oso_EventsMonthlyToArtifactBoolExp
-
----
-kind: Model
-version: v1
-definition:
- name: EventsMonthlyToArtifact
- objectType: EventsMonthlyToArtifact
- source:
- dataConnectorName: oso_clickhouse
- collection: events_monthly_to_artifact
- filterExpressionType: EventsMonthlyToArtifactBoolExp
- orderableFields:
- - fieldName: amount
- orderByDirections:
- enableAll: true
- - fieldName: artifactId
- orderByDirections:
- enableAll: true
- - fieldName: bucketMonth
- orderByDirections:
- enableAll: true
- - fieldName: eventType
- orderByDirections:
- enableAll: true
- graphql:
- selectMany:
- queryRootField: oso_eventsMonthlyToArtifact
- selectUniques: []
- orderByExpressionType: Oso_EventsMonthlyToArtifactOrderBy
-
----
-kind: ModelPermissions
-version: v1
-definition:
- modelName: EventsMonthlyToArtifact
- permissions:
- - role: admin
- select:
- filter: null
- - role: anonymous
- select:
- filter: null
diff --git a/apps/hasura3/oso_subgraph/metadata/EventsMonthlyToCollection.hml b/apps/hasura3/oso_subgraph/metadata/EventsMonthlyToCollection.hml
deleted file mode 100644
index e4b4300b9..000000000
--- a/apps/hasura3/oso_subgraph/metadata/EventsMonthlyToCollection.hml
+++ /dev/null
@@ -1,120 +0,0 @@
----
-kind: ObjectType
-version: v1
-definition:
- name: EventsMonthlyToCollection
- fields:
- - name: amount
- type: Float32!
- - name: bucketMonth
- type: DateTime!
- - name: collectionId
- type: String!
- - name: eventType
- type: String!
- graphql:
- typeName: Oso_EventsMonthlyToCollection
- inputTypeName: Oso_EventsMonthlyToCollectionInput
- dataConnectorTypeMapping:
- - dataConnectorName: oso_clickhouse
- dataConnectorObjectType: events_monthly_to_collection
- fieldMapping:
- amount:
- column:
- name: amount
- bucketMonth:
- column:
- name: bucket_month
- collectionId:
- column:
- name: collection_id
- eventType:
- column:
- name: event_type
-
----
-kind: TypePermissions
-version: v1
-definition:
- typeName: EventsMonthlyToCollection
- permissions:
- - role: admin
- output:
- allowedFields:
- - amount
- - bucketMonth
- - collectionId
- - eventType
- - role: anonymous
- output:
- allowedFields:
- - amount
- - bucketMonth
- - collectionId
- - eventType
-
----
-kind: ObjectBooleanExpressionType
-version: v1
-definition:
- name: EventsMonthlyToCollectionBoolExp
- objectType: EventsMonthlyToCollection
- dataConnectorName: oso_clickhouse
- dataConnectorObjectType: events_monthly_to_collection
- comparableFields:
- - fieldName: amount
- operators:
- enableAll: true
- - fieldName: bucketMonth
- operators:
- enableAll: true
- - fieldName: collectionId
- operators:
- enableAll: true
- - fieldName: eventType
- operators:
- enableAll: true
- graphql:
- typeName: Oso_EventsMonthlyToCollectionBoolExp
-
----
-kind: Model
-version: v1
-definition:
- name: EventsMonthlyToCollection
- objectType: EventsMonthlyToCollection
- source:
- dataConnectorName: oso_clickhouse
- collection: events_monthly_to_collection
- filterExpressionType: EventsMonthlyToCollectionBoolExp
- orderableFields:
- - fieldName: amount
- orderByDirections:
- enableAll: true
- - fieldName: bucketMonth
- orderByDirections:
- enableAll: true
- - fieldName: collectionId
- orderByDirections:
- enableAll: true
- - fieldName: eventType
- orderByDirections:
- enableAll: true
- graphql:
- selectMany:
- queryRootField: oso_eventsMonthlyToCollection
- selectUniques: []
- orderByExpressionType: Oso_EventsMonthlyToCollectionOrderBy
-
----
-kind: ModelPermissions
-version: v1
-definition:
- modelName: EventsMonthlyToCollection
- permissions:
- - role: admin
- select:
- filter: null
- - role: anonymous
- select:
- filter: null
diff --git a/apps/hasura3/oso_subgraph/metadata/EventsMonthlyToProject.hml b/apps/hasura3/oso_subgraph/metadata/EventsMonthlyToProject.hml
deleted file mode 100644
index 5d878d291..000000000
--- a/apps/hasura3/oso_subgraph/metadata/EventsMonthlyToProject.hml
+++ /dev/null
@@ -1,120 +0,0 @@
----
-kind: ObjectType
-version: v1
-definition:
- name: EventsMonthlyToProject
- fields:
- - name: amount
- type: Float32!
- - name: bucketMonth
- type: DateTime!
- - name: eventType
- type: String!
- - name: projectId
- type: String!
- graphql:
- typeName: Oso_EventsMonthlyToProject
- inputTypeName: Oso_EventsMonthlyToProjectInput
- dataConnectorTypeMapping:
- - dataConnectorName: oso_clickhouse
- dataConnectorObjectType: events_monthly_to_project
- fieldMapping:
- amount:
- column:
- name: amount
- bucketMonth:
- column:
- name: bucket_month
- eventType:
- column:
- name: event_type
- projectId:
- column:
- name: project_id
-
----
-kind: TypePermissions
-version: v1
-definition:
- typeName: EventsMonthlyToProject
- permissions:
- - role: admin
- output:
- allowedFields:
- - amount
- - bucketMonth
- - eventType
- - projectId
- - role: anonymous
- output:
- allowedFields:
- - amount
- - bucketMonth
- - eventType
- - projectId
-
----
-kind: ObjectBooleanExpressionType
-version: v1
-definition:
- name: EventsMonthlyToProjectBoolExp
- objectType: EventsMonthlyToProject
- dataConnectorName: oso_clickhouse
- dataConnectorObjectType: events_monthly_to_project
- comparableFields:
- - fieldName: amount
- operators:
- enableAll: true
- - fieldName: bucketMonth
- operators:
- enableAll: true
- - fieldName: eventType
- operators:
- enableAll: true
- - fieldName: projectId
- operators:
- enableAll: true
- graphql:
- typeName: Oso_EventsMonthlyToProjectBoolExp
-
----
-kind: Model
-version: v1
-definition:
- name: EventsMonthlyToProject
- objectType: EventsMonthlyToProject
- source:
- dataConnectorName: oso_clickhouse
- collection: events_monthly_to_project
- filterExpressionType: EventsMonthlyToProjectBoolExp
- orderableFields:
- - fieldName: amount
- orderByDirections:
- enableAll: true
- - fieldName: bucketMonth
- orderByDirections:
- enableAll: true
- - fieldName: eventType
- orderByDirections:
- enableAll: true
- - fieldName: projectId
- orderByDirections:
- enableAll: true
- graphql:
- selectMany:
- queryRootField: oso_eventsMonthlyToProject
- selectUniques: []
- orderByExpressionType: Oso_EventsMonthlyToProjectOrderBy
-
----
-kind: ModelPermissions
-version: v1
-definition:
- modelName: EventsMonthlyToProject
- permissions:
- - role: admin
- select:
- filter: null
- - role: anonymous
- select:
- filter: null
diff --git a/apps/hasura3/oso_subgraph/metadata/EventsWeeklyToArtifact.hml b/apps/hasura3/oso_subgraph/metadata/EventsWeeklyToArtifact.hml
deleted file mode 100644
index 61a117a99..000000000
--- a/apps/hasura3/oso_subgraph/metadata/EventsWeeklyToArtifact.hml
+++ /dev/null
@@ -1,120 +0,0 @@
----
-kind: ObjectType
-version: v1
-definition:
- name: EventsWeeklyToArtifact
- fields:
- - name: amount
- type: Float32!
- - name: artifactId
- type: String!
- - name: bucketWeek
- type: DateTime!
- - name: eventType
- type: String!
- graphql:
- typeName: Oso_EventsWeeklyToArtifact
- inputTypeName: Oso_EventsWeeklyToArtifactInput
- dataConnectorTypeMapping:
- - dataConnectorName: oso_clickhouse
- dataConnectorObjectType: events_weekly_to_artifact
- fieldMapping:
- amount:
- column:
- name: amount
- artifactId:
- column:
- name: artifact_id
- bucketWeek:
- column:
- name: bucket_week
- eventType:
- column:
- name: event_type
-
----
-kind: TypePermissions
-version: v1
-definition:
- typeName: EventsWeeklyToArtifact
- permissions:
- - role: admin
- output:
- allowedFields:
- - amount
- - artifactId
- - bucketWeek
- - eventType
- - role: anonymous
- output:
- allowedFields:
- - amount
- - artifactId
- - bucketWeek
- - eventType
-
----
-kind: ObjectBooleanExpressionType
-version: v1
-definition:
- name: EventsWeeklyToArtifactBoolExp
- objectType: EventsWeeklyToArtifact
- dataConnectorName: oso_clickhouse
- dataConnectorObjectType: events_weekly_to_artifact
- comparableFields:
- - fieldName: amount
- operators:
- enableAll: true
- - fieldName: artifactId
- operators:
- enableAll: true
- - fieldName: bucketWeek
- operators:
- enableAll: true
- - fieldName: eventType
- operators:
- enableAll: true
- graphql:
- typeName: Oso_EventsWeeklyToArtifactBoolExp
-
----
-kind: Model
-version: v1
-definition:
- name: EventsWeeklyToArtifact
- objectType: EventsWeeklyToArtifact
- source:
- dataConnectorName: oso_clickhouse
- collection: events_weekly_to_artifact
- filterExpressionType: EventsWeeklyToArtifactBoolExp
- orderableFields:
- - fieldName: amount
- orderByDirections:
- enableAll: true
- - fieldName: artifactId
- orderByDirections:
- enableAll: true
- - fieldName: bucketWeek
- orderByDirections:
- enableAll: true
- - fieldName: eventType
- orderByDirections:
- enableAll: true
- graphql:
- selectMany:
- queryRootField: oso_eventsWeeklyToArtifact
- selectUniques: []
- orderByExpressionType: Oso_EventsWeeklyToArtifactOrderBy
-
----
-kind: ModelPermissions
-version: v1
-definition:
- modelName: EventsWeeklyToArtifact
- permissions:
- - role: admin
- select:
- filter: null
- - role: anonymous
- select:
- filter: null
diff --git a/apps/hasura3/oso_subgraph/metadata/EventsWeeklyToCollection.hml b/apps/hasura3/oso_subgraph/metadata/EventsWeeklyToCollection.hml
deleted file mode 100644
index 07e11bc0a..000000000
--- a/apps/hasura3/oso_subgraph/metadata/EventsWeeklyToCollection.hml
+++ /dev/null
@@ -1,120 +0,0 @@
----
-kind: ObjectType
-version: v1
-definition:
- name: EventsWeeklyToCollection
- fields:
- - name: amount
- type: Float32!
- - name: bucketWeek
- type: DateTime!
- - name: collectionId
- type: String!
- - name: eventType
- type: String!
- graphql:
- typeName: Oso_EventsWeeklyToCollection
- inputTypeName: Oso_EventsWeeklyToCollectionInput
- dataConnectorTypeMapping:
- - dataConnectorName: oso_clickhouse
- dataConnectorObjectType: events_weekly_to_collection
- fieldMapping:
- amount:
- column:
- name: amount
- bucketWeek:
- column:
- name: bucket_week
- collectionId:
- column:
- name: collection_id
- eventType:
- column:
- name: event_type
-
----
-kind: TypePermissions
-version: v1
-definition:
- typeName: EventsWeeklyToCollection
- permissions:
- - role: admin
- output:
- allowedFields:
- - amount
- - bucketWeek
- - collectionId
- - eventType
- - role: anonymous
- output:
- allowedFields:
- - amount
- - bucketWeek
- - collectionId
- - eventType
-
----
-kind: ObjectBooleanExpressionType
-version: v1
-definition:
- name: EventsWeeklyToCollectionBoolExp
- objectType: EventsWeeklyToCollection
- dataConnectorName: oso_clickhouse
- dataConnectorObjectType: events_weekly_to_collection
- comparableFields:
- - fieldName: amount
- operators:
- enableAll: true
- - fieldName: bucketWeek
- operators:
- enableAll: true
- - fieldName: collectionId
- operators:
- enableAll: true
- - fieldName: eventType
- operators:
- enableAll: true
- graphql:
- typeName: Oso_EventsWeeklyToCollectionBoolExp
-
----
-kind: Model
-version: v1
-definition:
- name: EventsWeeklyToCollection
- objectType: EventsWeeklyToCollection
- source:
- dataConnectorName: oso_clickhouse
- collection: events_weekly_to_collection
- filterExpressionType: EventsWeeklyToCollectionBoolExp
- orderableFields:
- - fieldName: amount
- orderByDirections:
- enableAll: true
- - fieldName: bucketWeek
- orderByDirections:
- enableAll: true
- - fieldName: collectionId
- orderByDirections:
- enableAll: true
- - fieldName: eventType
- orderByDirections:
- enableAll: true
- graphql:
- selectMany:
- queryRootField: oso_eventsWeeklyToCollection
- selectUniques: []
- orderByExpressionType: Oso_EventsWeeklyToCollectionOrderBy
-
----
-kind: ModelPermissions
-version: v1
-definition:
- modelName: EventsWeeklyToCollection
- permissions:
- - role: admin
- select:
- filter: null
- - role: anonymous
- select:
- filter: null
diff --git a/apps/hasura3/oso_subgraph/metadata/EventsWeeklyToProject.hml b/apps/hasura3/oso_subgraph/metadata/EventsWeeklyToProject.hml
deleted file mode 100644
index c64b05be0..000000000
--- a/apps/hasura3/oso_subgraph/metadata/EventsWeeklyToProject.hml
+++ /dev/null
@@ -1,120 +0,0 @@
----
-kind: ObjectType
-version: v1
-definition:
- name: EventsWeeklyToProject
- fields:
- - name: amount
- type: Float32!
- - name: bucketWeek
- type: DateTime!
- - name: eventType
- type: String!
- - name: projectId
- type: String!
- graphql:
- typeName: Oso_EventsWeeklyToProject
- inputTypeName: Oso_EventsWeeklyToProjectInput
- dataConnectorTypeMapping:
- - dataConnectorName: oso_clickhouse
- dataConnectorObjectType: events_weekly_to_project
- fieldMapping:
- amount:
- column:
- name: amount
- bucketWeek:
- column:
- name: bucket_week
- eventType:
- column:
- name: event_type
- projectId:
- column:
- name: project_id
-
----
-kind: TypePermissions
-version: v1
-definition:
- typeName: EventsWeeklyToProject
- permissions:
- - role: admin
- output:
- allowedFields:
- - amount
- - bucketWeek
- - eventType
- - projectId
- - role: anonymous
- output:
- allowedFields:
- - amount
- - bucketWeek
- - eventType
- - projectId
-
----
-kind: ObjectBooleanExpressionType
-version: v1
-definition:
- name: EventsWeeklyToProjectBoolExp
- objectType: EventsWeeklyToProject
- dataConnectorName: oso_clickhouse
- dataConnectorObjectType: events_weekly_to_project
- comparableFields:
- - fieldName: amount
- operators:
- enableAll: true
- - fieldName: bucketWeek
- operators:
- enableAll: true
- - fieldName: eventType
- operators:
- enableAll: true
- - fieldName: projectId
- operators:
- enableAll: true
- graphql:
- typeName: Oso_EventsWeeklyToProjectBoolExp
-
----
-kind: Model
-version: v1
-definition:
- name: EventsWeeklyToProject
- objectType: EventsWeeklyToProject
- source:
- dataConnectorName: oso_clickhouse
- collection: events_weekly_to_project
- filterExpressionType: EventsWeeklyToProjectBoolExp
- orderableFields:
- - fieldName: amount
- orderByDirections:
- enableAll: true
- - fieldName: bucketWeek
- orderByDirections:
- enableAll: true
- - fieldName: eventType
- orderByDirections:
- enableAll: true
- - fieldName: projectId
- orderByDirections:
- enableAll: true
- graphql:
- selectMany:
- queryRootField: oso_eventsWeeklyToProject
- selectUniques: []
- orderByExpressionType: Oso_EventsWeeklyToProjectOrderBy
-
----
-kind: ModelPermissions
-version: v1
-definition:
- modelName: EventsWeeklyToProject
- permissions:
- - role: admin
- select:
- filter: null
- - role: anonymous
- select:
- filter: null
diff --git a/apps/hasura3/oso_subgraph/metadata/MetricsV0.hml b/apps/hasura3/oso_subgraph/metadata/MetricsMetricsV0.hml
similarity index 85%
rename from apps/hasura3/oso_subgraph/metadata/MetricsV0.hml
rename to apps/hasura3/oso_subgraph/metadata/MetricsMetricsV0.hml
index 639a020a7..f30bb6d90 100644
--- a/apps/hasura3/oso_subgraph/metadata/MetricsV0.hml
+++ b/apps/hasura3/oso_subgraph/metadata/MetricsMetricsV0.hml
@@ -2,32 +2,32 @@
kind: ObjectType
version: v1
definition:
- name: MetricsV0
+ name: MetricsMetricsV0
fields:
- name: aggregationFunction
- type: String!
+ type: String
- name: definitionRef
- type: String!
+ type: String
- name: description
- type: String!
+ type: String
- name: displayName
type: String!
- name: metricId
type: String!
- name: metricName
type: String!
- - name: metricNamespace
- type: String!
- name: metricSource
type: String!
- name: rawDefinition
- type: Int64!
+ type: String
+ - name: metricNamespace
+ type: String!
graphql:
- typeName: Oso_MetricsV0
- inputTypeName: Oso_MetricsV0Input
+ typeName: Oso_MetricsMetricsV0
+ inputTypeName: Oso_MetricsMetricsV0Input
dataConnectorTypeMapping:
- dataConnectorName: oso_clickhouse
- dataConnectorObjectType: metrics_v0
+ dataConnectorObjectType: metrics_metrics_v0
fieldMapping:
aggregationFunction:
column:
@@ -47,21 +47,21 @@ definition:
metricName:
column:
name: metric_name
- metricNamespace:
- column:
- name: metric_namespace
metricSource:
column:
name: metric_source
rawDefinition:
column:
name: raw_definition
+ metricNamespace:
+ column:
+ name: metric_namespace
---
kind: TypePermissions
version: v1
definition:
- typeName: MetricsV0
+ typeName: MetricsMetricsV0
permissions:
- role: admin
output:
@@ -72,9 +72,9 @@ definition:
- displayName
- metricId
- metricName
- - metricNamespace
- metricSource
- rawDefinition
+ - metricNamespace
- role: anonymous
output:
allowedFields:
@@ -84,7 +84,6 @@ definition:
- displayName
- metricId
- metricName
- - metricNamespace
- metricSource
- rawDefinition
@@ -92,10 +91,10 @@ definition:
kind: ObjectBooleanExpressionType
version: v1
definition:
- name: MetricsV0BoolExp
- objectType: MetricsV0
+ name: MetricsMetricsV0BoolExp
+ objectType: MetricsMetricsV0
dataConnectorName: oso_clickhouse
- dataConnectorObjectType: metrics_v0
+ dataConnectorObjectType: metrics_metrics_v0
comparableFields:
- fieldName: aggregationFunction
operators:
@@ -115,28 +114,28 @@ definition:
- fieldName: metricName
operators:
enableAll: true
- - fieldName: metricNamespace
- operators:
- enableAll: true
- fieldName: metricSource
operators:
enableAll: true
- fieldName: rawDefinition
operators:
enableAll: true
+ - fieldName: metricNamespace
+ operators:
+ enableAll: true
graphql:
- typeName: Oso_MetricsV0BoolExp
+ typeName: Oso_MetricsMetricsV0BoolExp
---
kind: Model
version: v1
definition:
- name: MetricsV0
- objectType: MetricsV0
+ name: MetricsMetricsV0
+ objectType: MetricsMetricsV0
source:
dataConnectorName: oso_clickhouse
- collection: metrics_v0
- filterExpressionType: MetricsV0BoolExp
+ collection: metrics_metrics_v0
+ filterExpressionType: MetricsMetricsV0BoolExp
orderableFields:
- fieldName: aggregationFunction
orderByDirections:
@@ -156,26 +155,26 @@ definition:
- fieldName: metricName
orderByDirections:
enableAll: true
- - fieldName: metricNamespace
- orderByDirections:
- enableAll: true
- fieldName: metricSource
orderByDirections:
enableAll: true
- fieldName: rawDefinition
orderByDirections:
enableAll: true
+ - fieldName: metricNamespace
+ orderByDirections:
+ enableAll: true
graphql:
selectMany:
queryRootField: oso_metricsV0
selectUniques: []
- orderByExpressionType: Oso_MetricsV0OrderBy
+ orderByExpressionType: Oso_MetricsMetricsV0OrderBy
---
kind: ModelPermissions
version: v1
definition:
- modelName: MetricsV0
+ modelName: MetricsMetricsV0
permissions:
- role: admin
select:
@@ -183,3 +182,4 @@ definition:
- role: anonymous
select:
filter: null
+
diff --git a/apps/hasura3/oso_subgraph/metadata/TimeseriesMetricsByArtifactV0.hml b/apps/hasura3/oso_subgraph/metadata/MetricsTimeseriesMetricsByArtifactV0.hml
similarity index 70%
rename from apps/hasura3/oso_subgraph/metadata/TimeseriesMetricsByArtifactV0.hml
rename to apps/hasura3/oso_subgraph/metadata/MetricsTimeseriesMetricsByArtifactV0.hml
index f990e5084..83e528251 100644
--- a/apps/hasura3/oso_subgraph/metadata/TimeseriesMetricsByArtifactV0.hml
+++ b/apps/hasura3/oso_subgraph/metadata/MetricsTimeseriesMetricsByArtifactV0.hml
@@ -2,24 +2,24 @@
kind: ObjectType
version: v1
definition:
- name: TimeseriesMetricsByArtifactV0
+ name: MetricsTimeseriesMetricsByArtifactV0
fields:
- name: amount
- type: Int64!
+ type: Float64!
- name: artifactId
type: String!
- name: metricId
type: String!
- name: sampleDate
- type: DateTime!
+ type: Date!
- name: unit
- type: Int64!
+ type: String
graphql:
- typeName: Oso_TimeseriesMetricsByArtifactV0
- inputTypeName: Oso_TimeseriesMetricsByArtifactV0Input
+ typeName: Oso_MetricsTimeseriesMetricsByArtifactV0
+ inputTypeName: Oso_MetricsTimeseriesMetricsByArtifactV0Input
dataConnectorTypeMapping:
- dataConnectorName: oso_clickhouse
- dataConnectorObjectType: timeseries_metrics_by_artifact_v0
+ dataConnectorObjectType: metrics_timeseries_metrics_by_artifact_v0
fieldMapping:
amount:
column:
@@ -41,7 +41,7 @@ definition:
kind: TypePermissions
version: v1
definition:
- typeName: TimeseriesMetricsByArtifactV0
+ typeName: MetricsTimeseriesMetricsByArtifactV0
permissions:
- role: admin
output:
@@ -64,10 +64,10 @@ definition:
kind: ObjectBooleanExpressionType
version: v1
definition:
- name: TimeseriesMetricsByArtifactV0BoolExp
- objectType: TimeseriesMetricsByArtifactV0
+ name: MetricsTimeseriesMetricsByArtifactV0BoolExp
+ objectType: MetricsTimeseriesMetricsByArtifactV0
dataConnectorName: oso_clickhouse
- dataConnectorObjectType: timeseries_metrics_by_artifact_v0
+ dataConnectorObjectType: metrics_timeseries_metrics_by_artifact_v0
comparableFields:
- fieldName: amount
operators:
@@ -85,18 +85,18 @@ definition:
operators:
enableAll: true
graphql:
- typeName: Oso_TimeseriesMetricsByArtifactV0BoolExp
+ typeName: Oso_MetricsTimeseriesMetricsByArtifactV0BoolExp
---
kind: Model
version: v1
definition:
- name: TimeseriesMetricsByArtifactV0
- objectType: TimeseriesMetricsByArtifactV0
+ name: MetricsTimeseriesMetricsByArtifactV0
+ objectType: MetricsTimeseriesMetricsByArtifactV0
source:
dataConnectorName: oso_clickhouse
- collection: timeseries_metrics_by_artifact_v0
- filterExpressionType: TimeseriesMetricsByArtifactV0BoolExp
+ collection: metrics_timeseries_metrics_by_artifact_v0
+ filterExpressionType: MetricsTimeseriesMetricsByArtifactV0BoolExp
orderableFields:
- fieldName: amount
orderByDirections:
@@ -117,13 +117,13 @@ definition:
selectMany:
queryRootField: oso_timeseriesMetricsByArtifactV0
selectUniques: []
- orderByExpressionType: Oso_TimeseriesMetricsByArtifactV0OrderBy
+ orderByExpressionType: Oso_MetricsTimeseriesMetricsByArtifactV0OrderBy
---
kind: ModelPermissions
version: v1
definition:
- modelName: TimeseriesMetricsByArtifactV0
+ modelName: MetricsTimeseriesMetricsByArtifactV0
permissions:
- role: admin
select:
diff --git a/apps/hasura3/oso_subgraph/metadata/TimeseriesMetricsByProjectV0.hml b/apps/hasura3/oso_subgraph/metadata/TimeseriesMetricsByProjectV0.hml
deleted file mode 100644
index fc006c494..000000000
--- a/apps/hasura3/oso_subgraph/metadata/TimeseriesMetricsByProjectV0.hml
+++ /dev/null
@@ -1,133 +0,0 @@
----
-kind: ObjectType
-version: v1
-definition:
- name: TimeseriesMetricsByProjectV0
- fields:
- - name: amount
- type: Float32!
- - name: metricId
- type: String!
- - name: projectId
- type: String!
- - name: sampleDate
- type: DateTime!
- - name: unit
- type: String!
- graphql:
- typeName: Oso_TimeseriesMetricsByProjectV0
- inputTypeName: Oso_TimeseriesMetricsByProjectV0Input
- dataConnectorTypeMapping:
- - dataConnectorName: oso_clickhouse
- dataConnectorObjectType: 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: TimeseriesMetricsByProjectV0
- permissions:
- - role: admin
- output:
- allowedFields:
- - amount
- - metricId
- - projectId
- - sampleDate
- - unit
- - role: anonymous
- output:
- allowedFields:
- - amount
- - metricId
- - projectId
- - sampleDate
- - unit
-
----
-kind: ObjectBooleanExpressionType
-version: v1
-definition:
- name: TimeseriesMetricsByProjectV0BoolExp
- objectType: TimeseriesMetricsByProjectV0
- dataConnectorName: oso_clickhouse
- dataConnectorObjectType: timeseries_metrics_by_project_v0
- comparableFields:
- - fieldName: amount
- operators:
- enableAll: true
- - fieldName: metricId
- operators:
- enableAll: true
- - fieldName: projectId
- operators:
- enableAll: true
- - fieldName: sampleDate
- operators:
- enableAll: true
- - fieldName: unit
- operators:
- enableAll: true
- graphql:
- typeName: Oso_TimeseriesMetricsByProjectV0BoolExp
-
----
-kind: Model
-version: v1
-definition:
- name: TimeseriesMetricsByProjectV0
- objectType: TimeseriesMetricsByProjectV0
- source:
- dataConnectorName: oso_clickhouse
- collection: timeseries_metrics_by_project_v0
- filterExpressionType: TimeseriesMetricsByProjectV0BoolExp
- 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_TimeseriesMetricsByProjectV0OrderBy
-
----
-kind: ModelPermissions
-version: v1
-definition:
- modelName: TimeseriesMetricsByProjectV0
- permissions:
- - role: admin
- select:
- filter: null
- - role: anonymous
- select:
- filter: null
diff --git a/apps/hasura3/oso_subgraph/metadata/oso_clickhouse-types.hml b/apps/hasura3/oso_subgraph/metadata/oso_clickhouse-types.hml
index 3ace06905..d94895259 100644
--- a/apps/hasura3/oso_subgraph/metadata/oso_clickhouse-types.hml
+++ b/apps/hasura3/oso_subgraph/metadata/oso_clickhouse-types.hml
@@ -79,3 +79,21 @@ definition:
representation: Date
graphql:
comparisonExpressionTypeName: Oso_DateComparisonExp
+
+---
+kind: ScalarType
+version: v1
+definition:
+ name: Float64
+ graphql:
+ typeName: Oso_Float64
+
+---
+kind: DataConnectorScalarRepresentation
+version: v1
+definition:
+ dataConnectorName: oso_clickhouse
+ dataConnectorScalarType: Float64
+ representation: Float64
+ graphql:
+ comparisonExpressionTypeName: Oso_Float64ComparisonExp
diff --git a/apps/hasura3/oso_subgraph/metadata/oso_clickhouse.hml b/apps/hasura3/oso_subgraph/metadata/oso_clickhouse.hml
index 333b952e8..641051e26 100644
--- a/apps/hasura3/oso_subgraph/metadata/oso_clickhouse.hml
+++ b/apps/hasura3/oso_subgraph/metadata/oso_clickhouse.hml
@@ -1,4 +1,3 @@
----
kind: DataConnectorLink
version: v1
definition:
@@ -187,6 +186,79 @@ definition:
element_type:
type: named
name: Float32
+ Float64:
+ representation:
+ type: float64
+ aggregate_functions:
+ avg:
+ result_type:
+ type: named
+ name: Float64
+ max:
+ result_type:
+ type: named
+ name: Float64
+ min:
+ result_type:
+ type: named
+ name: Float64
+ stddev_pop:
+ result_type:
+ type: named
+ name: Float64
+ stddev_samp:
+ result_type:
+ type: named
+ name: Float64
+ sum:
+ result_type:
+ type: named
+ name: Float64
+ 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: Float64
+ _gte:
+ type: custom
+ argument_type:
+ type: named
+ name: Float64
+ _in:
+ type: in
+ _lt:
+ type: custom
+ argument_type:
+ type: named
+ name: Float64
+ _lte:
+ type: custom
+ argument_type:
+ type: named
+ name: Float64
+ _neq:
+ type: custom
+ argument_type:
+ type: named
+ name: Float64
+ _nin:
+ type: custom
+ argument_type:
+ type: array
+ element_type:
+ type: named
+ name: Float64
Int64:
representation:
type: int64
@@ -643,37 +715,18 @@ definition:
type:
type: named
name: String
- events_daily_to_artifact:
- description: ""
- fields:
- amount:
- type:
- type: named
- name: Float32
- artifact_id:
- type:
- type: named
- name: String
- bucket_day:
- type:
- type: named
- name: DateTime
- event_type:
- type:
- type: named
- name: String
- events_daily_to_collection:
+ metrics__dev_events_daily_to_artifact:
description: ""
fields:
amount:
type:
type: named
- name: Float32
+ name: Float64
bucket_day:
type:
type: named
- name: DateTime
- collection_id:
+ name: Date
+ event_source:
type:
type: named
name: String
@@ -681,146 +734,116 @@ definition:
type:
type: named
name: String
- events_daily_to_project:
- description: ""
- fields:
- amount:
- type:
- type: named
- name: Float32
- bucket_day:
- type:
- type: named
- name: DateTime
- event_type:
+ from_artifact_id:
type:
type: named
name: String
- project_id:
+ to_artifact_id:
type:
type: named
name: String
- events_monthly_to_artifact:
+ metrics__dev_metrics_v0:
description: ""
fields:
- amount:
+ aggregation_function:
type:
- type: named
- name: Float32
- artifact_id:
+ type: nullable
+ underlying_type:
+ type: named
+ name: String
+ definition_ref:
type:
- type: named
- name: String
- bucket_month:
+ type: nullable
+ underlying_type:
+ type: named
+ name: String
+ description:
type:
- type: named
- name: DateTime
- event_type:
+ type: nullable
+ underlying_type:
+ type: named
+ name: String
+ display_name:
type:
type: named
name: String
- events_monthly_to_collection:
- description: ""
- fields:
- amount:
- type:
- type: named
- name: Float32
- bucket_month:
+ metric_id:
type:
type: named
- name: DateTime
- collection_id:
+ name: String
+ metric_name:
type:
type: named
name: String
- event_type:
+ metric_source:
type:
type: named
name: String
- events_monthly_to_project:
+ raw_definition:
+ type:
+ type: nullable
+ underlying_type:
+ type: named
+ name: String
+ metrics__dev_timeseries_metrics_by_artifact_over_30_days:
description: ""
fields:
amount:
type:
type: named
- name: Float32
- bucket_month:
+ name: Float64
+ bucket_day:
type:
type: named
- name: DateTime
- event_type:
+ name: Date
+ event_source:
type:
type: named
name: String
- project_id:
+ from_artifact_id:
type:
type: named
name: String
- events_weekly_to_artifact:
- description: ""
- fields:
- amount:
- type:
- type: named
- name: Float32
- artifact_id:
+ metric:
type:
type: named
name: String
- bucket_week:
- type:
- type: named
- name: DateTime
- event_type:
+ to_artifact_id:
type:
type: named
name: String
- events_weekly_to_collection:
+ metrics__dev_timeseries_metrics_by_artifact_v0:
description: ""
fields:
amount:
type:
type: named
- name: Float32
- bucket_week:
- type:
- type: named
- name: DateTime
- collection_id:
+ name: Float64
+ artifact_id:
type:
type: named
name: String
- event_type:
+ metric_id:
type:
type: named
name: String
- events_weekly_to_project:
- description: ""
- fields:
- amount:
- type:
- type: named
- name: Float32
- bucket_week:
- type:
- type: named
- name: DateTime
- event_type:
+ sample_date:
type:
type: named
- name: String
- project_id:
+ name: Date
+ unit:
type:
- type: named
- name: String
- metrics__dev_int_events_daily_to_artifact:
+ type: nullable
+ underlying_type:
+ type: named
+ name: String
+ metrics_events_daily_to_artifact:
description: ""
fields:
amount:
type:
type: named
- name: Int64
+ name: Float64
bucket_day:
type:
type: named
@@ -841,36 +864,60 @@ definition:
type:
type: named
name: String
- metrics__dev_int_timeseries_metrics_by_artifact_developers:
+ metrics_metrics_v0:
description: ""
fields:
- amount:
+ 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: Int64
- bucket_day:
+ name: String
+ metric_id:
type:
type: named
- name: Date
- event_source:
+ name: String
+ 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
- metrics__run_int_events_daily_to_artifact:
+ raw_definition:
+ type:
+ type: nullable
+ underlying_type:
+ type: named
+ name: String
+ metrics_timeseries_metrics_by_artifact_over_30_days:
description: ""
fields:
amount:
type:
type: named
- name: Int64
+ name: Float64
bucket_day:
type:
type: named
@@ -879,11 +926,11 @@ definition:
type:
type: named
name: String
- event_type:
+ from_artifact_id:
type:
type: named
name: String
- from_artifact_id:
+ metric:
type:
type: named
name: String
@@ -891,95 +938,14 @@ definition:
type:
type: named
name: String
- metrics__run_int_timeseries_metrics_by_artifact_developers:
+ metrics_timeseries_metrics_by_artifact_v0:
description: ""
fields:
amount:
type:
type: named
- name: Int64
- bucket_day:
- type:
- type: named
- name: Date
- event_source:
- type:
- type: named
- name: String
- metric:
- type:
- type: named
- name: String
- to_artifact_id:
- type:
- type: named
- name: String
- metrics_int_events_daily_to_artifact:
- description: ""
- fields:
- amount:
- type:
- type: named
- name: Int64
- 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_int_timeseries_metrics_by_artifact_developers:
- description: ""
- fields:
- amount:
- type:
- type: named
- name: Int64
- bucket_day:
- type:
- type: named
- name: Date
- event_source:
- type:
- type: named
- name: String
- metric:
- type:
- type: named
- name: String
- to_artifact_id:
- type:
- type: named
- name: String
- metrics_v0:
- description: ""
- fields:
- aggregation_function:
- type:
- type: named
- name: String
- definition_ref:
- type:
- type: named
- name: String
- description:
- type:
- type: named
- name: String
- display_name:
+ name: Float64
+ artifact_id:
type:
type: named
name: String
@@ -987,22 +953,16 @@ definition:
type:
type: named
name: String
- metric_name:
- type:
- type: named
- name: String
- metric_namespace:
- type:
- type: named
- name: String
- metric_source:
+ sample_date:
type:
type: named
- name: String
- raw_definition:
+ name: Date
+ unit:
type:
- type: named
- name: Int64
+ type: nullable
+ underlying_type:
+ type: named
+ name: String
onchain_metrics_by_project_v1:
description: ""
fields:
@@ -1148,37 +1108,7 @@ definition:
type:
type: named
name: String
- sqlmesh__metrics_metrics__incremental_model__3929117331:
- description: ""
- fields:
- bucket_day:
- type:
- type: named
- name: Date
- event_type:
- type:
- type: named
- name: String
- events:
- type:
- type: named
- name: Int64
- sqlmesh__metrics_metrics__incremental_model__3929117331__temp:
- description: ""
- fields:
- bucket_day:
- type:
- type: named
- name: Date
- event_type:
- type:
- type: named
- name: String
- events:
- type:
- type: named
- name: Int64
- sqlmesh__metrics_metrics__int_events_daily_to_artifact__1260655920:
+ sqlmesh__metrics_metrics__events_daily_to_artifact__753507400:
description: ""
fields:
amount:
@@ -1205,7 +1135,7 @@ definition:
type:
type: named
name: String
- sqlmesh__metrics_metrics__int_events_daily_to_artifact__1260655920__temp:
+ sqlmesh__metrics_metrics__events_daily_to_artifact__753507400__temp:
description: ""
fields:
amount:
@@ -1232,13 +1162,13 @@ definition:
type:
type: named
name: String
- sqlmesh__metrics_metrics__int_events_daily_to_artifact__1838358350:
+ sqlmesh__metrics_metrics__events_daily_to_artifact__1469322421:
description: ""
fields:
amount:
type:
type: named
- name: Int64
+ name: Float64
bucket_day:
type:
type: named
@@ -1259,13 +1189,13 @@ definition:
type:
type: named
name: String
- sqlmesh__metrics_metrics__int_events_daily_to_artifact__1838358350__temp:
+ sqlmesh__metrics_metrics__events_daily_to_artifact__1469322421__temp:
description: ""
fields:
amount:
type:
type: named
- name: Int64
+ name: Float64
bucket_day:
type:
type: named
@@ -1286,121 +1216,1820 @@ definition:
type:
type: named
name: String
- sqlmesh__metrics_metrics__int_events_daily_to_artifact__2071704967__temp:
+ sqlmesh__metrics_metrics__metrics_v0__472213919:
description: ""
fields:
- amount:
- type:
- type: named
- name: Int64
- bucket_day:
+ aggregation_function:
type:
- type: named
- name: Date
- event_source:
+ type: nullable
+ underlying_type:
+ type: named
+ name: String
+ definition_ref:
type:
- type: named
- name: String
- event_type:
+ type: nullable
+ underlying_type:
+ type: named
+ name: String
+ description:
type:
- type: named
- name: String
- from_artifact_id:
+ type: nullable
+ underlying_type:
+ type: named
+ name: String
+ display_name:
type:
type: named
name: String
- to_artifact_id:
+ metric_id:
type:
type: named
name: String
- sqlmesh__metrics_metrics__int_events_daily_to_artifact__3344974993:
- description: ""
- fields:
- amount:
- type:
- type: named
- name: Int64
- bucket_day:
- type:
- type: named
- name: Date
- event_source:
+ metric_name:
type:
type: named
name: String
- event_type:
+ metric_namespace:
type:
type: named
name: String
- from_artifact_id:
+ metric_source:
type:
type: named
name: String
- to_artifact_id:
+ raw_definition:
type:
- type: named
- name: String
- sqlmesh__metrics_metrics__int_events_daily_to_artifact__3344974993__temp:
+ type: nullable
+ underlying_type:
+ type: named
+ name: String
+ sqlmesh__metrics_metrics__metrics_v0__472213919__temp:
description: ""
fields:
- amount:
+ aggregation_function:
type:
- type: named
- name: Int64
- 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
- event_type:
+ metric_name:
type:
type: named
name: String
- from_artifact_id:
+ metric_namespace:
type:
type: named
name: String
- to_artifact_id:
+ metric_source:
type:
type: named
name: String
- sqlmesh__metrics_metrics__int_events_daily_to_artifact__3515096595:
+ raw_definition:
+ type:
+ type: nullable
+ underlying_type:
+ type: named
+ name: String
+ sqlmesh__metrics_metrics__metrics_v0__698231123:
description: ""
fields:
- amount:
+ aggregation_function:
type:
- type: named
- name: Int64
- bucket_day:
+ type: nullable
+ underlying_type:
+ type: named
+ name: String
+ definition_ref:
type:
- type: named
- name: Date
- event_source:
+ 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
- event_type:
+ metric_id:
type:
type: named
name: String
- from_artifact_id:
+ metric_name:
type:
type: named
name: String
- to_artifact_id:
+ metric_source:
type:
type: named
name: String
- sqlmesh__metrics_metrics__int_events_daily_to_artifact__3515096595__temp:
+ raw_definition:
+ type:
+ type: nullable
+ underlying_type:
+ type: named
+ name: String
+ sqlmesh__metrics_metrics__metrics_v0__698231123__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_source:
+ type:
+ type: named
+ name: String
+ raw_definition:
+ type:
+ type: nullable
+ underlying_type:
+ type: named
+ name: String
+ sqlmesh__metrics_metrics__metrics_v0__741092249:
+ 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_source:
+ type:
+ type: named
+ name: String
+ raw_definition:
+ type:
+ type: nullable
+ underlying_type:
+ type: named
+ name: String
+ sqlmesh__metrics_metrics__metrics_v0__741092249__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_source:
+ type:
+ type: named
+ name: String
+ raw_definition:
+ type:
+ type: nullable
+ underlying_type:
+ type: named
+ name: String
+ sqlmesh__metrics_metrics__metrics_v0__885103174:
+ description: ""
+ fields:
+ aggregation_function:
+ type:
+ type: named
+ name: String
+ definition_ref:
+ type:
+ type: named
+ name: String
+ description:
+ 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__885103174__temp:
+ description: ""
+ fields:
+ aggregation_function:
+ type:
+ type: named
+ name: String
+ definition_ref:
+ type:
+ type: named
+ name: String
+ description:
+ 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__1027447929:
+ 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__1027447929__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__1122994148:
+ 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_source:
+ type:
+ type: named
+ name: String
+ raw_definition:
+ type:
+ type: nullable
+ underlying_type:
+ type: named
+ name: String
+ sqlmesh__metrics_metrics__metrics_v0__1122994148__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_source:
+ type:
+ type: named
+ name: String
+ raw_definition:
+ type:
+ type: nullable
+ underlying_type:
+ type: named
+ name: String
+ sqlmesh__metrics_metrics__metrics_v0__1931009280:
+ 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__1931009280__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__1972836302:
+ 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__1972836302__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__1989478904:
+ 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_source:
+ type:
+ type: named
+ name: String
+ raw_definition:
+ type:
+ type: nullable
+ underlying_type:
+ type: named
+ name: String
+ sqlmesh__metrics_metrics__metrics_v0__1989478904__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_source:
+ type:
+ type: named
+ name: String
+ raw_definition:
+ type:
+ type: nullable
+ underlying_type:
+ type: named
+ name: String
+ sqlmesh__metrics_metrics__metrics_v0__2384275897:
+ 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__2384275897__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__3641251458:
+ 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_source:
+ type:
+ type: named
+ name: String
+ raw_definition:
+ type:
+ type: nullable
+ underlying_type:
+ type: named
+ name: String
+ sqlmesh__metrics_metrics__metrics_v0__3641251458__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_source:
+ type:
+ type: named
+ name: String
+ raw_definition:
+ type:
+ type: nullable
+ underlying_type:
+ type: named
+ name: String
+ sqlmesh__metrics_metrics__metrics_v0__3889562040:
+ 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__3889562040__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__4156811425:
+ 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_source:
+ type:
+ type: named
+ name: String
+ raw_definition:
+ type:
+ type: nullable
+ underlying_type:
+ type: named
+ name: String
+ sqlmesh__metrics_metrics__metrics_v0__4156811425__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_source:
+ type:
+ type: named
+ name: String
+ raw_definition:
+ type:
+ type: nullable
+ underlying_type:
+ type: named
+ name: String
+ sqlmesh__metrics_metrics__timeseries_code_metrics_by_artifact_over_30_days__7598012:
+ description: ""
+ fields:
+ amount:
+ type:
+ type: nullable
+ underlying_type:
+ type: named
+ name: Int64
+ bucket_day:
+ type:
+ type: nullable
+ underlying_type:
+ type: named
+ name: Date
+ event_source:
+ type:
+ type: nullable
+ underlying_type:
+ type: named
+ name: String
+ from_artifact_id:
+ type:
+ type: nullable
+ underlying_type:
+ type: named
+ name: String
+ metric:
+ type:
+ type: nullable
+ underlying_type:
+ type: named
+ name: String
+ 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:
+ description: ""
+ fields:
+ amount:
+ type:
+ type: nullable
+ underlying_type:
+ type: named
+ name: Int64
+ bucket_day:
+ type:
+ type: nullable
+ underlying_type:
+ type: named
+ name: Date
+ event_source:
+ type:
+ type: nullable
+ underlying_type:
+ type: named
+ name: String
+ from_artifact_id:
+ type:
+ type: nullable
+ underlying_type:
+ type: named
+ name: String
+ metric:
+ type:
+ type: nullable
+ underlying_type:
+ type: named
+ name: String
+ to_artifact_id:
+ type:
+ type: nullable
+ underlying_type:
+ type: named
+ name: String
+ sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_over_30_days__411625291:
+ description: ""
+ fields:
+ amount:
+ type:
+ type: named
+ name: Float64
+ bucket_day:
+ type:
+ type: named
+ name: Date
+ event_source:
+ type:
+ type: named
+ name: String
+ from_artifact_id:
+ type:
+ type: named
+ name: String
+ metric:
+ type:
+ type: named
+ name: String
+ to_artifact_id:
+ type:
+ type: named
+ name: String
+ sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_over_30_days__411625291__temp:
+ description: ""
+ fields:
+ amount:
+ type:
+ type: named
+ name: Float64
+ bucket_day:
+ type:
+ type: named
+ name: Date
+ event_source:
+ type:
+ type: named
+ name: String
+ from_artifact_id:
+ type:
+ type: named
+ name: String
+ metric:
+ type:
+ type: named
+ name: String
+ to_artifact_id:
+ type:
+ type: named
+ name: String
+ sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_over_30_days__1052226158:
+ description: ""
+ fields:
+ amount:
+ type:
+ type: named
+ name: Float64
+ bucket_day:
+ type:
+ type: named
+ name: Date
+ event_source:
+ type:
+ type: named
+ name: String
+ from_artifact_id:
+ type:
+ type: named
+ name: String
+ metric:
+ type:
+ type: named
+ name: String
+ to_artifact_id:
+ type:
+ type: named
+ name: String
+ sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_over_30_days__1052226158__temp:
+ description: ""
+ fields:
+ amount:
+ type:
+ type: named
+ name: Float64
+ bucket_day:
+ type:
+ type: named
+ name: Date
+ event_source:
+ type:
+ type: named
+ name: String
+ from_artifact_id:
+ type:
+ type: named
+ name: String
+ metric:
+ type:
+ type: named
+ name: String
+ to_artifact_id:
+ type:
+ type: named
+ name: String
+ sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_over_30_days__1641497371:
+ description: ""
+ fields:
+ amount:
+ type:
+ type: named
+ name: Float64
+ bucket_day:
+ type:
+ type: named
+ name: Date
+ event_source:
+ type:
+ type: named
+ name: String
+ from_artifact_id:
+ type:
+ type: named
+ name: String
+ metric:
+ type:
+ type: named
+ name: String
+ to_artifact_id:
+ type:
+ type: named
+ name: String
+ sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_over_30_days__1641497371__temp:
+ description: ""
+ fields:
+ amount:
+ type:
+ type: named
+ name: Float64
+ bucket_day:
+ type:
+ type: named
+ name: Date
+ event_source:
+ type:
+ type: named
+ name: String
+ from_artifact_id:
+ type:
+ type: named
+ name: String
+ metric:
+ type:
+ type: named
+ name: String
+ to_artifact_id:
+ type:
+ type: named
+ name: String
+ sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_over_30_days__2141203280:
+ description: ""
+ fields:
+ amount:
+ type:
+ type: named
+ name: Float64
+ bucket_day:
+ type:
+ type: named
+ name: Date
+ event_source:
+ type:
+ type: named
+ name: String
+ from_artifact_id:
+ type:
+ type: named
+ name: String
+ metric:
+ type:
+ type: named
+ name: String
+ to_artifact_id:
+ type:
+ type: named
+ name: String
+ sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_over_30_days__2141203280__temp:
+ description: ""
+ fields:
+ amount:
+ type:
+ type: named
+ name: Float64
+ bucket_day:
+ type:
+ type: named
+ name: Date
+ event_source:
+ type:
+ type: named
+ name: String
+ from_artifact_id:
+ type:
+ type: named
+ name: String
+ metric:
+ type:
+ type: named
+ name: String
+ to_artifact_id:
+ type:
+ type: named
+ name: String
+ sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_over_30_days__2202426059:
+ description: ""
+ fields:
+ amount:
+ type:
+ type: named
+ name: Float64
+ bucket_day:
+ type:
+ type: named
+ name: Date
+ event_source:
+ type:
+ type: named
+ name: String
+ from_artifact_id:
+ type:
+ type: named
+ name: String
+ metric:
+ type:
+ type: named
+ name: String
+ to_artifact_id:
+ type:
+ type: named
+ name: String
+ sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_over_30_days__2202426059__temp:
+ description: ""
+ fields:
+ amount:
+ type:
+ type: named
+ name: Float64
+ bucket_day:
+ type:
+ type: named
+ name: Date
+ event_source:
+ type:
+ type: named
+ name: String
+ from_artifact_id:
+ type:
+ type: named
+ name: String
+ metric:
+ type:
+ type: named
+ name: String
+ to_artifact_id:
+ type:
+ type: named
+ name: String
+ sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_over_30_days__2705758559:
+ description: ""
+ fields:
+ amount:
+ type:
+ type: named
+ name: Float64
+ bucket_day:
+ type:
+ type: named
+ name: Date
+ event_source:
+ type:
+ type: named
+ name: String
+ from_artifact_id:
+ type:
+ type: named
+ name: String
+ metric:
+ type:
+ type: named
+ name: String
+ to_artifact_id:
+ type:
+ type: named
+ name: String
+ sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_over_30_days__2705758559__temp:
+ description: ""
+ fields:
+ amount:
+ type:
+ type: named
+ name: Float64
+ bucket_day:
+ type:
+ type: named
+ name: Date
+ event_source:
+ type:
+ type: named
+ name: String
+ from_artifact_id:
+ type:
+ type: named
+ name: String
+ metric:
+ type:
+ type: named
+ name: String
+ to_artifact_id:
+ type:
+ type: named
+ name: String
+ sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_over_30_days__3060931431:
+ description: ""
+ fields:
+ amount:
+ type:
+ type: named
+ name: Float64
+ bucket_day:
+ type:
+ type: named
+ name: Date
+ event_source:
+ type:
+ type: named
+ name: String
+ from_artifact_id:
+ type:
+ type: named
+ name: String
+ metric:
+ type:
+ type: named
+ name: String
+ to_artifact_id:
+ type:
+ type: named
+ name: String
+ sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_over_30_days__3060931431__temp:
+ description: ""
+ fields:
+ amount:
+ type:
+ type: named
+ name: Float64
+ bucket_day:
+ type:
+ type: named
+ name: Date
+ event_source:
+ type:
+ type: named
+ name: String
+ from_artifact_id:
+ type:
+ type: named
+ name: String
+ metric:
+ type:
+ type: named
+ name: String
+ to_artifact_id:
+ type:
+ type: named
+ name: String
+ sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_over_30_days__3629470274:
+ description: ""
+ fields:
+ amount:
+ type:
+ type: named
+ name: Float64
+ bucket_day:
+ type:
+ type: named
+ name: Date
+ event_source:
+ type:
+ type: named
+ name: String
+ from_artifact_id:
+ type:
+ type: named
+ name: String
+ metric:
+ type:
+ type: named
+ name: String
+ to_artifact_id:
+ type:
+ type: named
+ name: String
+ sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_over_30_days__3629470274__temp:
+ description: ""
+ fields:
+ amount:
+ type:
+ type: named
+ name: Float64
+ bucket_day:
+ type:
+ type: named
+ name: Date
+ event_source:
+ type:
+ type: named
+ name: String
+ from_artifact_id:
+ type:
+ type: named
+ name: String
+ metric:
+ type:
+ type: named
+ name: String
+ to_artifact_id:
+ type:
+ type: named
+ name: String
+ sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_over_30_days__3716588191:
+ description: ""
+ fields:
+ amount:
+ type:
+ type: named
+ name: Float64
+ bucket_day:
+ type:
+ type: named
+ name: Date
+ event_source:
+ type:
+ type: named
+ name: String
+ from_artifact_id:
+ type:
+ type: named
+ name: String
+ metric:
+ type:
+ type: named
+ name: String
+ to_artifact_id:
+ type:
+ type: named
+ name: String
+ sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_over_30_days__3716588191__temp:
+ description: ""
+ fields:
+ amount:
+ type:
+ type: named
+ name: Float64
+ bucket_day:
+ type:
+ type: named
+ name: Date
+ event_source:
+ type:
+ type: named
+ name: String
+ from_artifact_id:
+ type:
+ type: named
+ name: String
+ metric:
+ type:
+ type: named
+ name: String
+ to_artifact_id:
+ type:
+ type: named
+ name: String
+ sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_over_30_days__3782520343:
+ description: ""
+ fields:
+ amount:
+ type:
+ type: named
+ name: Float64
+ bucket_day:
+ type:
+ type: named
+ name: Date
+ event_source:
+ type:
+ type: named
+ name: String
+ from_artifact_id:
+ type:
+ type: named
+ name: String
+ metric:
+ type:
+ type: named
+ name: String
+ to_artifact_id:
+ type:
+ type: named
+ name: String
+ sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_over_30_days__3782520343__temp:
+ description: ""
+ fields:
+ amount:
+ type:
+ type: named
+ name: Float64
+ bucket_day:
+ type:
+ type: named
+ name: Date
+ event_source:
+ type:
+ type: named
+ name: String
+ from_artifact_id:
+ type:
+ type: named
+ name: String
+ metric:
+ type:
+ type: named
+ name: String
+ to_artifact_id:
+ type:
+ type: named
+ name: String
+ sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_over_30_days__4007628622:
+ description: ""
+ fields:
+ amount:
+ type:
+ type: named
+ name: Float64
+ bucket_day:
+ type:
+ type: named
+ name: Date
+ event_source:
+ type:
+ type: named
+ name: String
+ from_artifact_id:
+ type:
+ type: named
+ name: String
+ metric:
+ type:
+ type: named
+ name: String
+ to_artifact_id:
+ type:
+ type: named
+ name: String
+ sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_over_30_days__4007628622__temp:
description: ""
fields:
amount:
type:
type: named
- name: Int64
+ name: Float64
bucket_day:
type:
type: named
@@ -1409,11 +3038,11 @@ definition:
type:
type: named
name: String
- event_type:
+ from_artifact_id:
type:
type: named
name: String
- from_artifact_id:
+ metric:
type:
type: named
name: String
@@ -1421,9 +3050,13 @@ definition:
type:
type: named
name: String
- sqlmesh__metrics_metrics__int_events_daily_to_artifact__3571639471:
+ sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_over_30_days__4285487256:
description: ""
fields:
+ amount:
+ type:
+ type: named
+ name: Float64
bucket_day:
type:
type: named
@@ -1432,347 +3065,627 @@ definition:
type:
type: named
name: String
- event_type:
+ from_artifact_id:
type:
type: named
name: String
- events:
+ metric:
type:
type: named
- name: Int64
+ name: String
+ to_artifact_id:
+ type:
+ type: named
+ name: String
+ sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_over_30_days__4285487256__temp:
+ description: ""
+ fields:
+ amount:
+ type:
+ type: named
+ name: Float64
+ bucket_day:
+ type:
+ type: named
+ name: Date
+ event_source:
+ type:
+ type: named
+ name: String
from_artifact_id:
type:
type: named
name: String
+ metric:
+ type:
+ type: named
+ name: String
to_artifact_id:
type:
type: named
name: String
- sqlmesh__metrics_metrics__int_events_daily_to_artifact__3571639471__temp:
+ sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_v0__274191541:
+ 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__274191541__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__594520992:
+ 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__594520992__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__635461998:
+ 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__635461998__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__661819154:
+ 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__661819154__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__1280450367:
+ 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__1280450367__temp:
description: ""
fields:
- bucket_day:
+ amount:
type:
type: named
- name: Date
- event_source:
+ name: Float64
+ artifact_id:
type:
type: named
name: String
- event_type:
+ metric_id:
type:
type: named
name: String
- events:
- type:
- type: named
- name: Int64
- from_artifact_id:
+ sample_date:
type:
type: named
- name: String
- to_artifact_id:
+ name: Date
+ unit:
type:
- type: named
- name: String
- sqlmesh__metrics_metrics__int_timeseries_metrics_by_artifact_developers__2126831521:
+ type: nullable
+ underlying_type:
+ type: named
+ name: String
+ sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_v0__1833626329:
description: ""
fields:
- bucket_day:
+ amount:
type:
type: named
- name: Date
- event_source:
+ name: Float64
+ artifact_id:
type:
type: named
name: String
- metric:
+ metric_id:
type:
type: named
- name: Int64
- to_artifact_id:
+ name: String
+ sample_date:
type:
type: named
- name: String
- sqlmesh__metrics_metrics__int_timeseries_metrics_by_artifact_developers__2126831521__temp:
+ name: Date
+ unit:
+ type:
+ type: nullable
+ underlying_type:
+ type: named
+ name: String
+ sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_v0__1833626329__temp:
description: ""
fields:
- bucket_day:
+ amount:
type:
type: named
- name: Date
- event_source:
+ name: Float64
+ artifact_id:
type:
type: named
name: String
- metric:
+ metric_id:
type:
type: named
- name: Int64
- to_artifact_id:
+ name: String
+ sample_date:
type:
type: named
- name: String
- sqlmesh__metrics_metrics__int_timeseries_metrics_by_artifact_developers__2219676454:
+ name: Date
+ unit:
+ type:
+ type: nullable
+ underlying_type:
+ type: named
+ name: String
+ sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_v0__2123659464:
description: ""
fields:
amount:
type:
type: named
- name: Int64
- bucket_day:
- type:
- type: named
- name: Date
- event_source:
+ name: Float64
+ artifact_id:
type:
type: named
name: String
- metric:
+ metric_id:
type:
type: named
name: String
- to_artifact_id:
+ sample_date:
type:
type: named
- name: String
- sqlmesh__metrics_metrics__int_timeseries_metrics_by_artifact_developers__2219676454__temp:
+ name: Date
+ unit:
+ type:
+ type: nullable
+ underlying_type:
+ type: named
+ name: String
+ sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_v0__2123659464__temp:
description: ""
fields:
amount:
type:
type: named
- name: Int64
- bucket_day:
- type:
- type: named
- name: Date
- event_source:
+ name: Float64
+ artifact_id:
type:
type: named
name: String
- metric:
+ metric_id:
type:
type: named
name: String
- to_artifact_id:
+ sample_date:
type:
type: named
- name: String
- sqlmesh__metrics_metrics__int_timeseries_metrics_by_artifact_developers__4026028341:
+ name: Date
+ unit:
+ type:
+ type: nullable
+ underlying_type:
+ type: named
+ name: String
+ sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_v0__2343650771:
description: ""
fields:
amount:
type:
type: named
- name: Int64
- bucket_day:
- type:
- type: named
- name: Date
- event_source:
+ name: Float64
+ artifact_id:
type:
type: named
name: String
- metric:
+ metric_id:
type:
type: named
name: String
- to_artifact_id:
+ sample_date:
type:
type: named
- name: String
- sqlmesh__metrics_metrics__int_timeseries_metrics_by_artifact_developers__4026028341__temp:
+ name: Date
+ unit:
+ type:
+ type: nullable
+ underlying_type:
+ type: named
+ name: String
+ sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_v0__2343650771__temp:
description: ""
fields:
amount:
type:
type: named
- name: Int64
- bucket_day:
- type:
- type: named
- name: Date
- event_source:
+ name: Float64
+ artifact_id:
type:
type: named
name: String
- metric:
+ metric_id:
type:
type: named
name: String
- to_artifact_id:
+ sample_date:
type:
type: named
- name: String
- sqlmesh__metrics_metrics__int_timeseries_metrics_by_artifact_developers__4060035978__temp:
+ name: Date
+ unit:
+ type:
+ type: nullable
+ underlying_type:
+ type: named
+ name: String
+ sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_v0__2513542600:
description: ""
fields:
- bucket_day:
+ amount:
type:
type: named
- name: Date
- event_source:
+ name: Float64
+ artifact_id:
type:
type: named
name: String
- metric:
+ metric_id:
type:
type: named
- name: Int64
- to_artifact_id:
+ name: String
+ sample_date:
type:
type: named
- name: String
- sqlmesh__metrics_metrics__int_timeseries_metrics_by_artifact_developers__4120769275:
+ name: Date
+ unit:
+ type:
+ type: nullable
+ underlying_type:
+ type: named
+ name: String
+ sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_v0__2513542600__temp:
description: ""
fields:
- bucket_day:
+ amount:
type:
type: named
- name: Date
- event_source:
+ name: Float64
+ artifact_id:
type:
type: named
name: String
- metric:
+ metric_id:
type:
type: named
name: String
- to_artifact_id:
+ sample_date:
type:
type: named
- name: String
- sqlmesh__metrics_metrics__int_timeseries_metrics_by_artifact_developers__4120769275__temp:
+ name: Date
+ unit:
+ type:
+ type: nullable
+ underlying_type:
+ type: named
+ name: String
+ sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_v0__2787405387:
description: ""
fields:
- bucket_day:
+ amount:
type:
type: named
- name: Date
- event_source:
+ name: Float64
+ artifact_id:
type:
type: named
name: String
- metric:
+ metric_id:
type:
type: named
name: String
- to_artifact_id:
+ sample_date:
type:
type: named
- name: String
- sqlmesh__metrics_metrics__testing_metrics__292628068__temp:
+ name: Date
+ unit:
+ type:
+ type: nullable
+ underlying_type:
+ type: named
+ name: String
+ sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_v0__2787405387__temp:
description: ""
fields:
amount:
type:
type: named
- name: Int64
- bucket_day:
- type:
- type: named
- name: Date
- event_source:
+ name: Float64
+ artifact_id:
type:
type: named
name: String
- from_artifact_id:
+ metric_id:
type:
type: named
name: String
- to_artifact_id:
+ sample_date:
type:
type: named
- name: String
- sqlmesh__metrics_metrics__testing_metrics__638047893__temp:
- description: ""
- fields:
- active_days:
+ name: Date
+ unit:
type:
type: nullable
underlying_type:
type: named
- name: Int64
- bucket_day:
+ name: String
+ sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_v0__4180627168:
+ description: ""
+ fields:
+ amount:
type:
type: named
- name: Date
- event_source:
+ name: Float64
+ artifact_id:
type:
type: named
name: String
- from_artifact_id:
+ metric_id:
type:
type: named
name: String
- to_artifact_id:
+ sample_date:
type:
type: named
- name: String
- sqlmesh__metrics_metrics__testing_metrics__958077468__temp:
- description: ""
- fields:
- active_days:
+ name: Date
+ unit:
type:
type: nullable
underlying_type:
type: named
- name: Int64
- bucket_day:
+ name: String
+ sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_v0__4180627168__temp:
+ description: ""
+ fields:
+ amount:
type:
type: named
- name: Date
- event_source:
+ name: Float64
+ artifact_id:
type:
type: named
name: String
- from_artifact_id:
+ metric_id:
type:
type: named
name: String
- to_artifact_id:
+ sample_date:
+ type:
+ type: named
+ name: Date
+ unit:
type:
- type: named
- name: String
- timeseries_events_by_artifact_v0:
+ type: nullable
+ underlying_type:
+ type: named
+ name: String
+ sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_v0__4229608905:
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:
+ name: Float64
+ artifact_id:
type:
type: named
name: String
- from_artifact_id:
+ metric_id:
type:
type: named
name: String
- time:
+ sample_date:
type:
type: named
- name: DateTime
- to_artifact_id:
+ name: Date
+ unit:
type:
- type: named
- name: String
- timeseries_metrics_by_artifact_v0:
+ type: nullable
+ underlying_type:
+ type: named
+ name: String
+ sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_v0__4229608905__temp:
description: ""
fields:
amount:
type:
type: named
- name: Int64
+ name: Float64
artifact_id:
type:
type: named
@@ -1784,31 +3697,41 @@ definition:
sample_date:
type:
type: named
- name: DateTime
+ name: Date
unit:
type:
- type: named
- name: Int64
- timeseries_metrics_by_project_v0:
+ type: nullable
+ underlying_type:
+ type: named
+ name: String
+ timeseries_events_by_artifact_v0:
description: ""
fields:
amount:
type:
type: named
name: Float32
- metric_id:
+ event_source:
type:
type: named
name: String
- project_id:
+ event_source_id:
type:
type: named
name: String
- sample_date:
+ event_type:
+ type:
+ type: named
+ name: String
+ from_artifact_id:
+ type:
+ type: named
+ name: String
+ time:
type:
type: named
name: DateTime
- unit:
+ to_artifact_id:
type:
type: named
name: String
@@ -1892,286 +3815,556 @@ definition:
type: event_types_v1
uniqueness_constraints: {}
foreign_keys: {}
- - name: events_daily_to_artifact
+ - name: metrics__dev_events_daily_to_artifact
+ description: ""
+ arguments: {}
+ type: metrics__dev_events_daily_to_artifact
+ uniqueness_constraints: {}
+ foreign_keys: {}
+ - name: metrics__dev_metrics_v0
description: ""
arguments: {}
- type: events_daily_to_artifact
+ type: metrics__dev_metrics_v0
uniqueness_constraints: {}
foreign_keys: {}
- - name: events_daily_to_collection
+ - name: metrics__dev_timeseries_metrics_by_artifact_over_30_days
description: ""
arguments: {}
- type: events_daily_to_collection
+ type: metrics__dev_timeseries_metrics_by_artifact_over_30_days
uniqueness_constraints: {}
foreign_keys: {}
- - name: events_daily_to_project
+ - name: metrics__dev_timeseries_metrics_by_artifact_v0
description: ""
arguments: {}
- type: events_daily_to_project
+ type: metrics__dev_timeseries_metrics_by_artifact_v0
uniqueness_constraints: {}
foreign_keys: {}
- - name: events_monthly_to_artifact
+ - name: metrics_events_daily_to_artifact
description: ""
arguments: {}
- type: events_monthly_to_artifact
+ type: metrics_events_daily_to_artifact
uniqueness_constraints: {}
foreign_keys: {}
- - name: events_monthly_to_collection
+ - name: metrics_metrics_v0
description: ""
arguments: {}
- type: events_monthly_to_collection
+ type: metrics_metrics_v0
uniqueness_constraints: {}
foreign_keys: {}
- - name: events_monthly_to_project
+ - name: metrics_timeseries_metrics_by_artifact_over_30_days
description: ""
arguments: {}
- type: events_monthly_to_project
+ type: metrics_timeseries_metrics_by_artifact_over_30_days
uniqueness_constraints: {}
foreign_keys: {}
- - name: events_weekly_to_artifact
+ - name: metrics_timeseries_metrics_by_artifact_v0
description: ""
arguments: {}
- type: events_weekly_to_artifact
+ type: metrics_timeseries_metrics_by_artifact_v0
uniqueness_constraints: {}
foreign_keys: {}
- - name: events_weekly_to_collection
+ - name: onchain_metrics_by_project_v1
description: ""
arguments: {}
- type: events_weekly_to_collection
+ type: onchain_metrics_by_project_v1
uniqueness_constraints: {}
foreign_keys: {}
- - name: events_weekly_to_project
+ - name: projects_by_collection_v1
description: ""
arguments: {}
- type: events_weekly_to_project
+ type: projects_by_collection_v1
uniqueness_constraints: {}
foreign_keys: {}
- - name: metrics__dev_int_events_daily_to_artifact
+ - name: projects_v1
description: ""
arguments: {}
- type: metrics__dev_int_events_daily_to_artifact
+ type: projects_v1
uniqueness_constraints: {}
foreign_keys: {}
- - name: metrics__dev_int_timeseries_metrics_by_artifact_developers
+ - name: sqlmesh__metrics_metrics__events_daily_to_artifact__1469322421
description: ""
arguments: {}
- type: metrics__dev_int_timeseries_metrics_by_artifact_developers
+ type: sqlmesh__metrics_metrics__events_daily_to_artifact__1469322421
uniqueness_constraints: {}
foreign_keys: {}
- - name: metrics__run_int_events_daily_to_artifact
+ - name: sqlmesh__metrics_metrics__events_daily_to_artifact__1469322421__temp
description: ""
arguments: {}
- type: metrics__run_int_events_daily_to_artifact
+ type: sqlmesh__metrics_metrics__events_daily_to_artifact__1469322421__temp
uniqueness_constraints: {}
foreign_keys: {}
- - name: metrics__run_int_timeseries_metrics_by_artifact_developers
+ - name: sqlmesh__metrics_metrics__events_daily_to_artifact__753507400
description: ""
arguments: {}
- type: metrics__run_int_timeseries_metrics_by_artifact_developers
+ type: sqlmesh__metrics_metrics__events_daily_to_artifact__753507400
uniqueness_constraints: {}
foreign_keys: {}
- - name: metrics_int_events_daily_to_artifact
+ - name: sqlmesh__metrics_metrics__events_daily_to_artifact__753507400__temp
description: ""
arguments: {}
- type: metrics_int_events_daily_to_artifact
+ type: sqlmesh__metrics_metrics__events_daily_to_artifact__753507400__temp
uniqueness_constraints: {}
foreign_keys: {}
- - name: metrics_int_timeseries_metrics_by_artifact_developers
+ - name: sqlmesh__metrics_metrics__metrics_v0__1027447929
description: ""
arguments: {}
- type: metrics_int_timeseries_metrics_by_artifact_developers
+ type: sqlmesh__metrics_metrics__metrics_v0__1027447929
uniqueness_constraints: {}
foreign_keys: {}
- - name: metrics_v0
+ - name: sqlmesh__metrics_metrics__metrics_v0__1027447929__temp
description: ""
arguments: {}
- type: metrics_v0
+ type: sqlmesh__metrics_metrics__metrics_v0__1027447929__temp
uniqueness_constraints: {}
foreign_keys: {}
- - name: onchain_metrics_by_project_v1
+ - name: sqlmesh__metrics_metrics__metrics_v0__1122994148
description: ""
arguments: {}
- type: onchain_metrics_by_project_v1
+ type: sqlmesh__metrics_metrics__metrics_v0__1122994148
uniqueness_constraints: {}
foreign_keys: {}
- - name: projects_by_collection_v1
+ - name: sqlmesh__metrics_metrics__metrics_v0__1122994148__temp
description: ""
arguments: {}
- type: projects_by_collection_v1
+ type: sqlmesh__metrics_metrics__metrics_v0__1122994148__temp
uniqueness_constraints: {}
foreign_keys: {}
- - name: projects_v1
+ - name: sqlmesh__metrics_metrics__metrics_v0__1931009280
description: ""
arguments: {}
- type: projects_v1
+ type: sqlmesh__metrics_metrics__metrics_v0__1931009280
uniqueness_constraints: {}
foreign_keys: {}
- - name: sqlmesh__metrics_metrics__incremental_model__3929117331
+ - name: sqlmesh__metrics_metrics__metrics_v0__1931009280__temp
description: ""
arguments: {}
- type: sqlmesh__metrics_metrics__incremental_model__3929117331
+ type: sqlmesh__metrics_metrics__metrics_v0__1931009280__temp
uniqueness_constraints: {}
foreign_keys: {}
- - name: sqlmesh__metrics_metrics__incremental_model__3929117331__temp
+ - name: sqlmesh__metrics_metrics__metrics_v0__1972836302
description: ""
arguments: {}
- type: sqlmesh__metrics_metrics__incremental_model__3929117331__temp
+ type: sqlmesh__metrics_metrics__metrics_v0__1972836302
uniqueness_constraints: {}
foreign_keys: {}
- - name: sqlmesh__metrics_metrics__int_events_daily_to_artifact__1260655920
+ - name: sqlmesh__metrics_metrics__metrics_v0__1972836302__temp
description: ""
arguments: {}
- type: sqlmesh__metrics_metrics__int_events_daily_to_artifact__1260655920
+ type: sqlmesh__metrics_metrics__metrics_v0__1972836302__temp
uniqueness_constraints: {}
foreign_keys: {}
- - name: sqlmesh__metrics_metrics__int_events_daily_to_artifact__1260655920__temp
+ - name: sqlmesh__metrics_metrics__metrics_v0__1989478904
description: ""
arguments: {}
- type: sqlmesh__metrics_metrics__int_events_daily_to_artifact__1260655920__temp
+ type: sqlmesh__metrics_metrics__metrics_v0__1989478904
uniqueness_constraints: {}
foreign_keys: {}
- - name: sqlmesh__metrics_metrics__int_events_daily_to_artifact__1838358350
+ - name: sqlmesh__metrics_metrics__metrics_v0__1989478904__temp
description: ""
arguments: {}
- type: sqlmesh__metrics_metrics__int_events_daily_to_artifact__1838358350
+ type: sqlmesh__metrics_metrics__metrics_v0__1989478904__temp
uniqueness_constraints: {}
foreign_keys: {}
- - name: sqlmesh__metrics_metrics__int_events_daily_to_artifact__1838358350__temp
+ - name: sqlmesh__metrics_metrics__metrics_v0__2384275897
description: ""
arguments: {}
- type: sqlmesh__metrics_metrics__int_events_daily_to_artifact__1838358350__temp
+ type: sqlmesh__metrics_metrics__metrics_v0__2384275897
uniqueness_constraints: {}
foreign_keys: {}
- - name: sqlmesh__metrics_metrics__int_events_daily_to_artifact__2071704967__temp
+ - name: sqlmesh__metrics_metrics__metrics_v0__2384275897__temp
description: ""
arguments: {}
- type: sqlmesh__metrics_metrics__int_events_daily_to_artifact__2071704967__temp
+ type: sqlmesh__metrics_metrics__metrics_v0__2384275897__temp
uniqueness_constraints: {}
foreign_keys: {}
- - name: sqlmesh__metrics_metrics__int_events_daily_to_artifact__3344974993
+ - name: sqlmesh__metrics_metrics__metrics_v0__3641251458
description: ""
arguments: {}
- type: sqlmesh__metrics_metrics__int_events_daily_to_artifact__3344974993
+ type: sqlmesh__metrics_metrics__metrics_v0__3641251458
uniqueness_constraints: {}
foreign_keys: {}
- - name: sqlmesh__metrics_metrics__int_events_daily_to_artifact__3344974993__temp
+ - name: sqlmesh__metrics_metrics__metrics_v0__3641251458__temp
description: ""
arguments: {}
- type: sqlmesh__metrics_metrics__int_events_daily_to_artifact__3344974993__temp
+ type: sqlmesh__metrics_metrics__metrics_v0__3641251458__temp
uniqueness_constraints: {}
foreign_keys: {}
- - name: sqlmesh__metrics_metrics__int_events_daily_to_artifact__3515096595
+ - name: sqlmesh__metrics_metrics__metrics_v0__3889562040
description: ""
arguments: {}
- type: sqlmesh__metrics_metrics__int_events_daily_to_artifact__3515096595
+ type: sqlmesh__metrics_metrics__metrics_v0__3889562040
uniqueness_constraints: {}
foreign_keys: {}
- - name: sqlmesh__metrics_metrics__int_events_daily_to_artifact__3515096595__temp
+ - name: sqlmesh__metrics_metrics__metrics_v0__3889562040__temp
description: ""
arguments: {}
- type: sqlmesh__metrics_metrics__int_events_daily_to_artifact__3515096595__temp
+ type: sqlmesh__metrics_metrics__metrics_v0__3889562040__temp
uniqueness_constraints: {}
foreign_keys: {}
- - name: sqlmesh__metrics_metrics__int_events_daily_to_artifact__3571639471
+ - name: sqlmesh__metrics_metrics__metrics_v0__4156811425
description: ""
arguments: {}
- type: sqlmesh__metrics_metrics__int_events_daily_to_artifact__3571639471
+ type: sqlmesh__metrics_metrics__metrics_v0__4156811425
uniqueness_constraints: {}
foreign_keys: {}
- - name: sqlmesh__metrics_metrics__int_events_daily_to_artifact__3571639471__temp
+ - name: sqlmesh__metrics_metrics__metrics_v0__4156811425__temp
description: ""
arguments: {}
- type: sqlmesh__metrics_metrics__int_events_daily_to_artifact__3571639471__temp
+ type: sqlmesh__metrics_metrics__metrics_v0__4156811425__temp
uniqueness_constraints: {}
foreign_keys: {}
- - name: sqlmesh__metrics_metrics__int_timeseries_metrics_by_artifact_developers__2126831521
+ - name: sqlmesh__metrics_metrics__metrics_v0__472213919
description: ""
arguments: {}
- type: sqlmesh__metrics_metrics__int_timeseries_metrics_by_artifact_developers__2126831521
+ type: sqlmesh__metrics_metrics__metrics_v0__472213919
uniqueness_constraints: {}
foreign_keys: {}
- - name: sqlmesh__metrics_metrics__int_timeseries_metrics_by_artifact_developers__2126831521__temp
+ - name: sqlmesh__metrics_metrics__metrics_v0__472213919__temp
description: ""
arguments: {}
- type: sqlmesh__metrics_metrics__int_timeseries_metrics_by_artifact_developers__2126831521__temp
+ type: sqlmesh__metrics_metrics__metrics_v0__472213919__temp
uniqueness_constraints: {}
foreign_keys: {}
- - name: sqlmesh__metrics_metrics__int_timeseries_metrics_by_artifact_developers__2219676454
+ - name: sqlmesh__metrics_metrics__metrics_v0__698231123
description: ""
arguments: {}
- type: sqlmesh__metrics_metrics__int_timeseries_metrics_by_artifact_developers__2219676454
+ type: sqlmesh__metrics_metrics__metrics_v0__698231123
uniqueness_constraints: {}
foreign_keys: {}
- - name: sqlmesh__metrics_metrics__int_timeseries_metrics_by_artifact_developers__2219676454__temp
+ - name: sqlmesh__metrics_metrics__metrics_v0__698231123__temp
description: ""
arguments: {}
- type: sqlmesh__metrics_metrics__int_timeseries_metrics_by_artifact_developers__2219676454__temp
+ type: sqlmesh__metrics_metrics__metrics_v0__698231123__temp
uniqueness_constraints: {}
foreign_keys: {}
- - name: sqlmesh__metrics_metrics__int_timeseries_metrics_by_artifact_developers__4026028341
+ - name: sqlmesh__metrics_metrics__metrics_v0__741092249
description: ""
arguments: {}
- type: sqlmesh__metrics_metrics__int_timeseries_metrics_by_artifact_developers__4026028341
+ type: sqlmesh__metrics_metrics__metrics_v0__741092249
uniqueness_constraints: {}
foreign_keys: {}
- - name: sqlmesh__metrics_metrics__int_timeseries_metrics_by_artifact_developers__4026028341__temp
+ - name: sqlmesh__metrics_metrics__metrics_v0__741092249__temp
description: ""
arguments: {}
- type: sqlmesh__metrics_metrics__int_timeseries_metrics_by_artifact_developers__4026028341__temp
+ type: sqlmesh__metrics_metrics__metrics_v0__741092249__temp
uniqueness_constraints: {}
foreign_keys: {}
- - name: sqlmesh__metrics_metrics__int_timeseries_metrics_by_artifact_developers__4060035978__temp
+ - name: sqlmesh__metrics_metrics__metrics_v0__885103174
description: ""
arguments: {}
- type: sqlmesh__metrics_metrics__int_timeseries_metrics_by_artifact_developers__4060035978__temp
+ type: sqlmesh__metrics_metrics__metrics_v0__885103174
uniqueness_constraints: {}
foreign_keys: {}
- - name: sqlmesh__metrics_metrics__int_timeseries_metrics_by_artifact_developers__4120769275
+ - name: sqlmesh__metrics_metrics__metrics_v0__885103174__temp
description: ""
arguments: {}
- type: sqlmesh__metrics_metrics__int_timeseries_metrics_by_artifact_developers__4120769275
+ type: sqlmesh__metrics_metrics__metrics_v0__885103174__temp
uniqueness_constraints: {}
foreign_keys: {}
- - name: sqlmesh__metrics_metrics__int_timeseries_metrics_by_artifact_developers__4120769275__temp
+ - name: sqlmesh__metrics_metrics__timeseries_code_metrics_by_artifact_over_30_days__7598012
description: ""
arguments: {}
- type: sqlmesh__metrics_metrics__int_timeseries_metrics_by_artifact_developers__4120769275__temp
+ type: sqlmesh__metrics_metrics__timeseries_code_metrics_by_artifact_over_30_days__7598012
uniqueness_constraints: {}
foreign_keys: {}
- - name: sqlmesh__metrics_metrics__testing_metrics__292628068__temp
+ - name: sqlmesh__metrics_metrics__timeseries_code_metrics_by_artifact_over_30_days__7598012__temp
description: ""
arguments: {}
- type: sqlmesh__metrics_metrics__testing_metrics__292628068__temp
+ type: sqlmesh__metrics_metrics__timeseries_code_metrics_by_artifact_over_30_days__7598012__temp
uniqueness_constraints: {}
foreign_keys: {}
- - name: sqlmesh__metrics_metrics__testing_metrics__638047893__temp
+ - name: sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_over_30_days__1052226158
description: ""
arguments: {}
- type: sqlmesh__metrics_metrics__testing_metrics__638047893__temp
+ type: sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_over_30_days__1052226158
uniqueness_constraints: {}
foreign_keys: {}
- - name: sqlmesh__metrics_metrics__testing_metrics__958077468__temp
+ - name: sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_over_30_days__1052226158__temp
description: ""
arguments: {}
- type: sqlmesh__metrics_metrics__testing_metrics__958077468__temp
+ type: sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_over_30_days__1052226158__temp
uniqueness_constraints: {}
foreign_keys: {}
- - name: timeseries_events_by_artifact_v0
+ - name: sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_over_30_days__1641497371
description: ""
arguments: {}
- type: timeseries_events_by_artifact_v0
+ type: sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_over_30_days__1641497371
+ uniqueness_constraints: {}
+ foreign_keys: {}
+ - name: sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_over_30_days__1641497371__temp
+ description: ""
+ arguments: {}
+ type: sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_over_30_days__1641497371__temp
+ uniqueness_constraints: {}
+ foreign_keys: {}
+ - name: sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_over_30_days__2141203280
+ description: ""
+ arguments: {}
+ type: sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_over_30_days__2141203280
+ uniqueness_constraints: {}
+ foreign_keys: {}
+ - name: sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_over_30_days__2141203280__temp
+ description: ""
+ arguments: {}
+ type: sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_over_30_days__2141203280__temp
+ uniqueness_constraints: {}
+ foreign_keys: {}
+ - name: sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_over_30_days__2202426059
+ description: ""
+ arguments: {}
+ type: sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_over_30_days__2202426059
+ uniqueness_constraints: {}
+ foreign_keys: {}
+ - name: sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_over_30_days__2202426059__temp
+ description: ""
+ arguments: {}
+ type: sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_over_30_days__2202426059__temp
+ uniqueness_constraints: {}
+ foreign_keys: {}
+ - name: sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_over_30_days__2705758559
+ description: ""
+ arguments: {}
+ type: sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_over_30_days__2705758559
+ uniqueness_constraints: {}
+ foreign_keys: {}
+ - name: sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_over_30_days__2705758559__temp
+ description: ""
+ arguments: {}
+ type: sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_over_30_days__2705758559__temp
+ uniqueness_constraints: {}
+ foreign_keys: {}
+ - name: sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_over_30_days__3060931431
+ description: ""
+ arguments: {}
+ type: sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_over_30_days__3060931431
+ uniqueness_constraints: {}
+ foreign_keys: {}
+ - name: sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_over_30_days__3060931431__temp
+ description: ""
+ arguments: {}
+ type: sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_over_30_days__3060931431__temp
+ uniqueness_constraints: {}
+ foreign_keys: {}
+ - name: sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_over_30_days__3629470274
+ description: ""
+ arguments: {}
+ type: sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_over_30_days__3629470274
+ uniqueness_constraints: {}
+ foreign_keys: {}
+ - name: sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_over_30_days__3629470274__temp
+ description: ""
+ arguments: {}
+ type: sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_over_30_days__3629470274__temp
+ uniqueness_constraints: {}
+ foreign_keys: {}
+ - name: sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_over_30_days__3716588191
+ description: ""
+ arguments: {}
+ type: sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_over_30_days__3716588191
+ uniqueness_constraints: {}
+ foreign_keys: {}
+ - name: sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_over_30_days__3716588191__temp
+ description: ""
+ arguments: {}
+ type: sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_over_30_days__3716588191__temp
+ uniqueness_constraints: {}
+ foreign_keys: {}
+ - name: sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_over_30_days__3782520343
+ description: ""
+ arguments: {}
+ type: sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_over_30_days__3782520343
+ uniqueness_constraints: {}
+ foreign_keys: {}
+ - name: sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_over_30_days__3782520343__temp
+ description: ""
+ arguments: {}
+ type: sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_over_30_days__3782520343__temp
+ uniqueness_constraints: {}
+ foreign_keys: {}
+ - name: sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_over_30_days__4007628622
+ description: ""
+ arguments: {}
+ type: sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_over_30_days__4007628622
+ uniqueness_constraints: {}
+ foreign_keys: {}
+ - name: sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_over_30_days__4007628622__temp
+ description: ""
+ arguments: {}
+ type: sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_over_30_days__4007628622__temp
+ uniqueness_constraints: {}
+ foreign_keys: {}
+ - name: sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_over_30_days__411625291
+ description: ""
+ arguments: {}
+ type: sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_over_30_days__411625291
+ uniqueness_constraints: {}
+ foreign_keys: {}
+ - name: sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_over_30_days__411625291__temp
+ description: ""
+ arguments: {}
+ type: sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_over_30_days__411625291__temp
+ uniqueness_constraints: {}
+ foreign_keys: {}
+ - name: sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_over_30_days__4285487256
+ description: ""
+ arguments: {}
+ type: sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_over_30_days__4285487256
+ uniqueness_constraints: {}
+ foreign_keys: {}
+ - name: sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_over_30_days__4285487256__temp
+ description: ""
+ arguments: {}
+ type: sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_over_30_days__4285487256__temp
+ uniqueness_constraints: {}
+ foreign_keys: {}
+ - name: sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_v0__1280450367
+ description: ""
+ arguments: {}
+ type: sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_v0__1280450367
+ uniqueness_constraints: {}
+ foreign_keys: {}
+ - name: sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_v0__1280450367__temp
+ description: ""
+ arguments: {}
+ type: sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_v0__1280450367__temp
+ uniqueness_constraints: {}
+ foreign_keys: {}
+ - name: sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_v0__1833626329
+ description: ""
+ arguments: {}
+ type: sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_v0__1833626329
+ uniqueness_constraints: {}
+ foreign_keys: {}
+ - name: sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_v0__1833626329__temp
+ description: ""
+ arguments: {}
+ type: sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_v0__1833626329__temp
+ uniqueness_constraints: {}
+ foreign_keys: {}
+ - name: sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_v0__2123659464
+ description: ""
+ arguments: {}
+ type: sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_v0__2123659464
+ uniqueness_constraints: {}
+ foreign_keys: {}
+ - name: sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_v0__2123659464__temp
+ description: ""
+ arguments: {}
+ type: sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_v0__2123659464__temp
+ uniqueness_constraints: {}
+ foreign_keys: {}
+ - name: sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_v0__2343650771
+ description: ""
+ arguments: {}
+ type: sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_v0__2343650771
+ uniqueness_constraints: {}
+ foreign_keys: {}
+ - name: sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_v0__2343650771__temp
+ description: ""
+ arguments: {}
+ type: sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_v0__2343650771__temp
+ uniqueness_constraints: {}
+ foreign_keys: {}
+ - name: sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_v0__2513542600
+ description: ""
+ arguments: {}
+ type: sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_v0__2513542600
+ uniqueness_constraints: {}
+ foreign_keys: {}
+ - name: sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_v0__2513542600__temp
+ description: ""
+ arguments: {}
+ type: sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_v0__2513542600__temp
+ uniqueness_constraints: {}
+ foreign_keys: {}
+ - name: sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_v0__274191541
+ description: ""
+ arguments: {}
+ type: sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_v0__274191541
+ uniqueness_constraints: {}
+ foreign_keys: {}
+ - name: sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_v0__274191541__temp
+ description: ""
+ arguments: {}
+ type: sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_v0__274191541__temp
+ uniqueness_constraints: {}
+ foreign_keys: {}
+ - name: sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_v0__2787405387
+ description: ""
+ arguments: {}
+ type: sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_v0__2787405387
+ uniqueness_constraints: {}
+ foreign_keys: {}
+ - name: sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_v0__2787405387__temp
+ description: ""
+ arguments: {}
+ type: sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_v0__2787405387__temp
+ uniqueness_constraints: {}
+ foreign_keys: {}
+ - name: sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_v0__4180627168
+ description: ""
+ arguments: {}
+ type: sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_v0__4180627168
+ uniqueness_constraints: {}
+ foreign_keys: {}
+ - name: sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_v0__4180627168__temp
+ description: ""
+ arguments: {}
+ type: sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_v0__4180627168__temp
+ uniqueness_constraints: {}
+ foreign_keys: {}
+ - name: sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_v0__4229608905
+ description: ""
+ arguments: {}
+ type: sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_v0__4229608905
+ uniqueness_constraints: {}
+ foreign_keys: {}
+ - name: sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_v0__4229608905__temp
+ description: ""
+ arguments: {}
+ type: sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_v0__4229608905__temp
+ uniqueness_constraints: {}
+ foreign_keys: {}
+ - name: sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_v0__594520992
+ description: ""
+ arguments: {}
+ type: sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_v0__594520992
+ uniqueness_constraints: {}
+ foreign_keys: {}
+ - name: sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_v0__594520992__temp
+ description: ""
+ arguments: {}
+ type: sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_v0__594520992__temp
+ uniqueness_constraints: {}
+ foreign_keys: {}
+ - name: sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_v0__635461998
+ description: ""
+ arguments: {}
+ type: sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_v0__635461998
+ uniqueness_constraints: {}
+ foreign_keys: {}
+ - name: sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_v0__635461998__temp
+ description: ""
+ arguments: {}
+ type: sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_v0__635461998__temp
+ uniqueness_constraints: {}
+ foreign_keys: {}
+ - name: sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_v0__661819154
+ description: ""
+ arguments: {}
+ type: sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_v0__661819154
uniqueness_constraints: {}
foreign_keys: {}
- - name: timeseries_metrics_by_artifact_v0
+ - name: sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_v0__661819154__temp
description: ""
arguments: {}
- type: timeseries_metrics_by_artifact_v0
+ type: sqlmesh__metrics_metrics__timeseries_metrics_by_artifact_v0__661819154__temp
uniqueness_constraints: {}
foreign_keys: {}
- - name: timeseries_metrics_by_project_v0
+ - name: timeseries_events_by_artifact_v0
description: ""
arguments: {}
- type: timeseries_metrics_by_project_v0
+ type: timeseries_events_by_artifact_v0
uniqueness_constraints: {}
foreign_keys: {}
- name: users_v1