6 stable releases

2.3.0 Jul 27, 2023
2.2.0 Feb 28, 2022
2.1.1 Feb 10, 2022
2.1.0 Jan 24, 2022
2.0.1 Jun 2, 2021

#120 in Testing

35 downloads per month

MIT license

83KB
1.5K SLoC

Clean Insights SDK

Clean Insights gives developers a way to plug into a secure, private measurement platform. It is focused on assisting in answering key questions about app usage patterns, and not on enabling invasive surveillance of all user habits. Our approach provides programmatic levers to pull to cater to specific use cases and privacy needs. It also provides methods for user interactions that are ultimately empowering instead of alienating.

Example


    // Instantiate with configuration:
    let mut ci: CleanInsights = CleanInsights::new_from_json_with_default_store(
        "example/cleaninsights.json", "tests");

    // Ask for consent:
    let period = match ci.can_ask_consent_for_campaign(campaign_id) {
        None => return,
        Some(period) => period
    };
    
    [Ask user for consent]
    
    if granted {
        ci.grant_campaign(campaign_id);
    }
    else {
        ci.deny_campaign(campaign_id);
    }

    // Measure a page visit:
    ci.measure_visit(&["Main"], "test");

    // Measure an event (e.g. a button press):
    ci.measure_simple_event("music", "play", "test");

    // Make sure to persist the locally cached data. E.g. when app is sent into background;
    ci.persist();

Please note: CleanInsights' core concept is a Campaign. Since we don't want you to record just anything, like all the others do, you need to configure, what your actually interested in and for how long. For a deeper understanding, please read the Concepts section below.

This project also contains an example app. Please refer to the GitLab repository for a full understanding on how to use this library.

Installation

CleanInsightsSDK is available through Cargo. To install it, simply add the following line to your Cargo.toml:

clean_insights_sdk = "2.0"

Further Documentation:

Rust version specifics:

This library currently is fully synchronous in order to not force any async runtime onto you.

Therefore, it's highly recommended to implement your own Store which makes use of asynchronous features, and an async HTTP client like hyper or make use of threading when calling measurement functions, in order to not get blocked, when the SDK decides to persist data to disk.

Alternatively, you might disable automatic persistence and call #persist yourself!

Concepts

Measurements

A measurement is a single call to the SDK to measure a visit or an event.

Measurements are always aggregated immediately and only stored in that aggregated form, in order to avoid a too high resolution and therefore unnecessary invasion into the users privacy.

All measurements are done for a specific campaign you need to configure.

Measurements done against an unconfigured campaign are ignored, as well as measurements done against a campaign which ran out or where the maximum length of days of data gathering is crossed.

This helps you avoid unwanted measurements with left-over measurement code of older campaigns.

Campaigns

A campaign has a period during which it is active and a maximum length of days during which data is gathered for a specific user after they consented to the measurements.

The specific start date of a campaign helps you coordinate campaigns across platforms. Measurements done before a campaign start are, of course, ignored.

The days during which measurements take place are defined by the aggregation period length in days and the number of periods.

After a user consented, measurements will start right away for as long as the current measurement period still goes on.

If you want to even further increase your users' anonymity guarantees and ensure that the first measured period is a full one, you can configure that with the strengthen_anonymity configuration option, which will enforce the beginning of measurements only at the next full aggregation period.

At the end of an aggregation period, the campaign data will be automatically sent to your insights server.

If you configure a higher numberOfPeriods than 1, the next aggregation period will begin immediately after the end of the first one and measurement will continue.

Events

In Contrast to visit measurements, event measurements support the complete Matomo Event API.

This means you can also record numeric values, like e.g. time something takes.

You can configure the aggregation method to use, when the same event is recorded multiple times: Event values can be summed up or an average can be calculated.

This can be configured per campaign.

Not a Matomo Campaign

Note the difference to Matomo: CleanInsights' concept of a campaign doesn't map to Matomo's concept of campaigns, which is mostly about finding out if a marketing campaign (like an advertisement or a landing page) sent any additional visitors to a website.

You need to ask your users for consent to your measurements.

There are 2 types of consent:

  • Campaign consents: Each measurement campaign needs to get consent by the user. You need to explain to the user what you want to measure, how long you want to measure it and why.

The SDK contains UI to help you with that.

  • Common feature consent: Some data is orthogonal to the visits or events you want to measure, like locale or device type used. Since these features are only ever recorded when doing measurements for a campaign, consent needs to be gathered only once per user per feature.

A user might want to actively withdraw consent. The SDK supports that. Please make sure that the user can actually do that.

The SDK provides UI to help you with that.

Configuration

To make sure your CleanInsights configuration is valid, you can use our JSON scheme to validate against.

Here's an online validator

A complete documentation is generated from that JSON scheme.

Supported Backends

CleanInsights SDK currently supports Matomo as a backend via CIMP.

Author

Benjamin Erhart, berhart@netzarchitekten.com for the Guardian Project

License

CleanInsightsSDK is available under the MIT license. See the LICENSE file for more info.

Dependencies

~9MB
~254K SLoC