custom_metrics
Schema: public
Description
The custom_metrics
table holds custom data that is extracted from transactions. These require
custom metric definitions to be setup beforehand to extract protocol/domain-specific information
from each transaction, contract log, etc. This allows greater insight into the domain-specific
details about what is occurring on-chain.
Columns
Column Name | Data Type | Description |
---|---|---|
id | uuid | The unique identifier for the sanctioned address. |
updated_time | timestamptz | The timestamp when the custom metric was last updated. |
chain | text | The blockchain this sanctioned address belongs to. |
dimensions | jsonb | Attributes of a custom metric useful for filtering, grouping, etc. See this page for more details |
val | numeric | The value associated with the custom metric. |
string_val | text | The string value associated with the custom metric. |
custom_metric_definition_id | text | The id of the custom metric definition was used to generate this metric. The definition includes the blueprint for the custom metric (e.g. whether to trigger on a log or transaction, contract functions to invoke, which metrics to generate, etc.) |
owner | text | Who owns this custom metric definition. |