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
  • Which event schema or event specification to calculate it from
  • 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 needs events to calculate from, and an aggregation to calculate. 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 type to calculate the attribute from.

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.

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

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.

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.

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 fromlist 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
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
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
)