Skip to main content

Define attributes

Attributes are defined as part of attribute groups. To create an attribute, you'll need to set:

  • A name that describes the attribute
  • Optionally, which event schema or event specification to calculate it from (leave empty to include all events)
  • What property in the schema to consider for the calculation
  • What kind of aggregation you want to calculate over time, e.g. mean or last

Attribute calculation starts when the definitions are published, and values are not backdated.

Configure the attribute

Every attribute requires an aggregation to calculate. You can optionally restrict which events are included — leave the event filter empty to include all event types. Most aggregations also operate on a property of those events. The time period and criteria settings are optional refinements.

In Console, open your attribute group and use the attribute configuration interface to fill in the fields. The time period and criteria settings are within More options.

Attribute configuration interface showing name, event filter, and aggregation options

With the Python SDK, these settings are arguments to the Attribute class, listed in all attribute options.

Select events

Use the event filter to choose which event types to calculate the attribute from. The event filter is optional — leaving it empty means the attribute is calculated from all event types.

Event filter dropdown showing available event specifications, Snowplow, and custom event schemas

Click the dropdown to see the available events, listed by name and vendor:

  • Event Specifications: select any event specification from an existing tracking plan.
  • Snowplow events: select any built-in Snowplow or Iglu Central schema. For legacy reasons, to calculate an attribute from structured events find event (com.google.analytics.measurement-protocol).
  • Custom events: select any schema or data structure available within your pipeline.
Searching for events

The search finds direct matches only, so use the exact name of the event, schema, or vendor.

Matching all events

To calculate an attribute across all event types — for example, a total event counter or the first value of an atomic field seen across your entire pipeline — leave the event filter empty. The attribute will then update for every event Signals processes, regardless of schema.

Once you've selected an event and version, click Confirm to add the attribute to your attribute group.

Choose an aggregation

Signals supports the following aggregation types:

AggregationDescriptionRequired property type in schemaNotes
CounterCount eventsNo property used for this aggregation
SumSum of property valuesNumeric
MinMinimum property valueNumeric
MaxMaximum property valueNumeric
MeanAverage of property valuesNumeric
FirstFirst property value seenString, Numeric, BooleanEarliest by derived_tstamp, not by arrival order
LastLast property value seenString, Numeric, BooleanLatest by derived_tstamp, not by arrival order
Most FrequentMost frequent property value seenString, Numeric, BooleanTracks up to 100 distinct values; ties are broken arbitrarily
Least FrequentLeast frequent property value seenString, Numeric, BooleanTracks up to 100 distinct values; ties are broken arbitrarily
Approx Count DistinctApproximate distinct count (HyperLogLog)String, Numeric, BooleanApproximate, with a typical error around 1%. Don't use where an exact count matters
Category CountDictionary of unique values and their countsString, Numeric, BooleanKeeps the 100 highest-count values; lower-count values are dropped
Unique ListList of unique property valuesString, Numeric, BooleanOrdered oldest to newest by derived_tstamp, capped at 100 values. See below
Time Since LastDuration since the most recent matching eventAlways uses derived_tstampRequires time_unit. Result type must be float or double. See below
Time Since FirstDuration since the earliest matching eventAlways uses derived_tstampRequires time_unit. Result type must be float or double. See below

A property isn't used for counter aggregation. To only count events with a specific property value, use a criteria filter.

Attributes calculated over high-cardinality properties, such as a product ID or a search term, can exceed the 100-value limits noted above. Consider a criteria filter to narrow the set of events, or a lower-cardinality property.

Unique list ordering

A unique list is ordered by when each value was most recently seen, oldest first. Seeing a value again doesn't add a second entry: it moves the existing entry to the end of the list. For example, viewing pages /home, /products, then /home again produces ["/products", "/home"].

This also determines which values are dropped once the list reaches 100 entries: the least recently seen value is removed first, so a frequently repeated value is retained even if it was first seen long ago.

Time since aggregations

The time_since_last and time_since_first aggregations measure how long ago the most recent or earliest matching event occurred. The result is a fractional duration in the unit you choose with the time_unit argument: s (seconds), min (minutes), h (hours), or d (days).

These aggregations always operate on the event's derived_tstamp property. You don't need to set a property - it defaults to derived_tstamp, and no other property is accepted. The result type must be float or double.

The value is recomputed at read time, so it reflects the elapsed time between the stored event timestamp and the moment the attribute is retrieved. The result is never negative - if the stored event timestamp is later than the retrieval time (which can happen with out-of-order events), the value is clamped at 0.

Select the aggregation type from the dropdown in the attribute configuration interface.

Select a property

You can calculate attributes based on properties in any part of your events:

  • Atomic properties: available for all events
  • Event schema properties: properties within your chosen event
  • Entity properties: properties from schemas tracked as entities with your chosen event

Property selection interface with atomic, event schema, and entity property tabs

Click Confirm to specify the property for this attribute.

Apply a date part

When a property holds a date-time value, you can apply an optional date_part modifier to transform the timestamp before aggregation. This is useful for seasonality analysis (busiest hour of day, most active day of week) and active-period tracking (distinct active days or months).

There are two families of date part:

FamilyDate partsOutputExample
Extracthour_of_day, day_of_week, month_of_yearInteger (cyclical component)hour_of_day on 2024-03-15T14:30:00 returns 14
Truncateactive_day, active_week, active_monthDate string (truncated to boundary)active_day on 2024-03-15T14:30:00 returns 2024-03-15

For day_of_week, values follow ISO 8601: 1 = Monday through 7 = Sunday.

Date parts are only valid on date-time properties. For atomic properties, this means the timestamp fields (derived_tstamp, collector_tstamp, dvce_created_tstamp, dvce_sent_tstamp, refr_dvce_tstamp, etl_tstamp, true_tstamp). For event and entity properties, the property's schema must declare format: date-time at the target path.

Not all aggregations support date parts. The following aggregations work with date_part:

AggregationExample use
Most FrequentBusiest hour of day, most common active day
Least FrequentQuietest hour, rarest weekday
FirstHour of day of the earliest event
LastDay of week of the most recent event
Unique ListList of distinct active days
Category CountHour-of-day histogram
Approx Count DistinctApproximate number of distinct active days

The declared attribute type must match the date part family's output:

  • Extract date parts (hour_of_day, day_of_week, month_of_year) require int32 or int64 (or int32_list/int64_list for unique_list)
  • Truncate date parts (active_day, active_week, active_month) require string (or string_list for unique_list)

Select a date part from the dropdown that appears when you choose a date-time property. Leave it unset to use the raw timestamp value.

Set the period

Every stream attribute has a period that controls the time window for the calculation. Choose a rolling time window (for example, 7 days or 15 minutes) to aggregate over recent events, or select Lifetime to aggregate over all available data.

Select the period when creating or editing an attribute.

When you select a rolling time window, Signals only includes events within that window in the calculation:

Period configuration set to a rolling time window

When you select Lifetime, a Time to live (TTL) field appears. TTL controls how long a stale value is retained in the Profiles Store before it is deleted. The default is 7 days. If Signals processes a new event that updates the attribute, the TTL timer resets.

Period set to Lifetime with TTL configuration

Filter with criteria

Use criteria to filter the events used to calculate an attribute. They allow you to be specific about which subsets of events should trigger attribute updates. For example, instead of counting all page views in a user's session, you may wish to calculate only views for the homepage, or a login page.

Find the criteria option within More options.

Defining criteria has three steps:

  1. Select which property to filter on, similarly to the property selection for the attribute
  2. Choose which logical operator to use
  3. Enter the value to filter on

If you enter multiple criteria, you will have the option to require all or any of them to be met for the attribute to update.

Criteria filter configuration with property selection, operator, and value fields

Click Done to save the criteria when you're finished.

All attribute options

The table below lists all available arguments for a Python SDK Attribute. The same options are available in the Console attribute configuration interface.

ArgumentDescriptionTypeRequired?
nameThe name of the attributestring
descriptionThe description of the attributestring
eventsList of Snowplow Events to calculate the attribute from. Pass an empty list or omit to match all event types.list of Event
aggregationThe calculation to performone of: counter, sum, min, max, mean, first, last, most_frequent, least_frequent, approx_count_distinct, category_count, unique_list, time_since_last, time_since_first
typeThe type of the aggregation resultone of: bytes, string, int32, int64, double, float, bool, dict, unix_timestamp, bytes_list, string_list, int32_list, int64_list, double_list, float_list, bool_list, unix_timestamp_list
criteriaFilters to apply to eventsCriteria
propertyThe property of the event or entity to use in the aggregationstring
periodThe time window over which to calculate the aggregation, or Lifetime to aggregate over all available datatimedelta
ttlTime-to-live for lifetime attributes (no period). Falls back to the attribute group TTL if not set. Cannot be used together with period.timedelta
time_unitThe unit for time_since_last/time_since_first resultsone of: s, min, h, dRequired for time_since_last/time_since_first
default_valueDefault value if aggregation returns no results

Examples

The following examples show complete attribute configurations, using the Python SDK.

Minimal example

This is the minimum configuration needed to create an attribute:

python
from snowplow_signals import Attribute, Event

my_attribute = Attribute(
name="button_click_counter",
type="int32",
events=[
Event(
vendor="com.snowplowanalytics.snowplow",
name="button_click",
version="1-0-0",
)
],
aggregation="counter"
)

Once applied and active, this definition triggers every time Signals processes an event with the schema iglu:com.snowplowanalytics.snowplow/button_click/jsonschema/1-0-0. The stored attribute starts at 0 and increases by 1 with every button_click event.

Filtered counter with a time window

Count button_click events only where the button id is generate_emoji_btn, over a rolling 10-minute window.

python
from snowplow_signals import Attribute, Event, Criteria, Criterion, EventProperty
from datetime import timedelta

button_click_counter_attribute = Attribute(
name="emoji_button_click_counter",
description="The number of clicks for the 'generate emoji' button",
type="int32",
events=[
Event(
vendor="com.snowplowanalytics.snowplow",
name="button_click",
version="1-0-0",
)
],
aggregation="counter",
criteria=Criteria(
all=[
Criterion.eq(
EventProperty(
vendor="com.snowplowanalytics.snowplow",
name="button_click",
major_version=1,
path="id"
),
"generate_emoji_btn"
)
]
),
period=timedelta(minutes=10),
default_value=0
)

Last atomic property value

Track the most recent referrer source using the mkt_medium atomic property, calculated from either a page view or a custom event.

python
from snowplow_signals import Attribute, Event, AtomicProperty

referrer_source_attribute = Attribute(
name="referrer_source",
description="Referrer",
type="string",
events=[
Event(name="page_view", vendor="com.snowplowanalytics.snowplow", version="1-0-0"),
Event(name="login_landing", vendor="com.business.example", version="1-0-0"),
],
aggregation="last",
property=AtomicProperty(name="mkt_medium"),
)

Sum of an entity property

Sum the price of product entities in ecommerce events, counting only transaction events.

python
from snowplow_signals import Attribute, Event, Criteria, Criterion, EntityProperty, EventProperty

my_new_attribute = Attribute(
name="products_total_purchase_value",
description="Total purchase value for all products",
type="double",
events=[
Event(
vendor="com.snowplowanalytics.snowplow.ecommerce",
name="snowplow_ecommerce_action",
version="1-0-2",
)
],
aggregation="sum",
criteria=Criteria(
all=[
Criterion.eq(
EventProperty(
vendor="com.snowplowanalytics.snowplow.ecommerce",
name="snowplow_ecommerce_action",
major_version=1,
path="type"
),
"transaction"
)
]
),
property=EntityProperty(
vendor="com.snowplowanalytics.snowplow.ecommerce",
name="product",
major_version=1,
path="price",
),
default_value=0
)

Time since last event

Track how many minutes have passed since the user's most recent page view.

python
from snowplow_signals import Attribute, Event

recency = Attribute(
name="minutes_since_last_page_view",
description="Minutes since the user's most recent page view",
type="double",
events=[
Event(
vendor="com.snowplowanalytics.snowplow",
name="page_view",
version="1-0-0",
)
],
aggregation="time_since_last",
time_unit="min",
)

Global event counter

Count all events over a 30-day rolling window, regardless of event type. This is useful for overall engagement scoring - no event enumeration required.

python
from snowplow_signals import Attribute
from datetime import timedelta

n_events_30d = Attribute(
name="n_events_30d",
description="Total number of events in the last 30 days across all event types",
type="int32",
events=[],
aggregation="counter",
period=timedelta(days=30),
default_value=0
)

Because events is empty, this attribute updates for every event Signals processes - page views, page pings, custom events, and any future event types are all included automatically.

First UTM medium across all events

Capture the first marketing medium seen for a user, checking all events that carry the mkt_medium atomic property.

python
from snowplow_signals import Attribute, AtomicProperty

first_utm_medium = Attribute(
name="first_utm_medium",
description="First marketing medium seen across all events",
type="string",
events=[],
aggregation="first",
property=AtomicProperty(name="mkt_medium"),
)

Without an event filter, this attribute captures mkt_medium from any event that includes it, so you don't need to enumerate every event schema that might carry UTM parameters.

Most frequent hour of day

Find the hour of the day when a user most commonly views pages, using a date_part modifier on derived_tstamp.

python
from snowplow_signals import Attribute, Event, AtomicProperty

peak_hour = Attribute(
name="peak_page_view_hour",
description="Hour of the day with the most page views",
type="int32",
events=[
Event(
vendor="com.snowplowanalytics.snowplow",
name="page_view",
version="1-0-0",
)
],
aggregation="most_frequent",
property=AtomicProperty(name="derived_tstamp", date_part="hour_of_day"),
)

The hour_of_day date part extracts the hour (0-23) from each event's timestamp before aggregation. Because most_frequent is used, the result is the single hour with the highest event count. Use category_count instead to get a full hour-by-hour histogram.