Snowplow Micro 1.4.0 and 1.5.0 + new getting started guide

Snowplow Micro has long lived in the shadow of its bigger cousin, Snowplow Mini. But it’s a very handy tool, and we think more people should use it!

If you haven’t heard of Micro before, check out the brand new getting started guide: Setting up Snowplow Micro locally | Snowplow Documentation. Even if you are a seasoned Micro user, you might discover some tips and tricks.

In the last two releases we’ve added a few useful features.


New in 1.5.0. Easily connect to a custom Iglu registry with just 2 environment variables

docker run -p 9090:9090 \
  -e MICRO_IGLU_REGISTRY_URL \
  -e MICRO_IGLU_API_KEY \
  snowplow/snowplow-micro:1.5.0

No need for configuration files. (Docs)


New in 1.4.0. When running Micro on the command line, easily see basic event details in the logs

[INFO] EventLog - GOOD id:4bfd5b32-d02a-4f83-a731-4339898437e1 app_id:test type:page_view (iglu:com.snowplowanalytics.snowplow/page_view/jsonschema/1-0-0)
[INFO] EventLog - GOOD id:e7a5c64d-d0f7-48d9-9a50-be044db7d2f6 app_id:test type:page_ping (iglu:com.snowplowanalytics.snowplow/page_ping/jsonschema/1-0-0)
[INFO] EventLog - GOOD id:1608ca85-f5f9-4948-898a-728aa8f1131b app_id:test type:page_ping (iglu:com.snowplowanalytics.snowplow/page_ping/jsonschema/1-0-0)

New in 1.4.0. With --output-tsv , Micro can print events in Snowplow TSV format

This is useful for testing tools and flows based on our Analytics SDKs or Snowbridge. (Docs)

7 Likes