Sampling

Adding Sentry to your app gives you a great deal of very valuable information about errors and performance you wouldn't otherwise get. And lots of information is good -- as long as it's the right information, at a reasonable volume.

To send a representative sample of your errors to Sentry, set the sampleRate option in your SDK configuration to a number between 0 (0% of errors sent) and 1 (100% of errors sent). This is a static rate, which will apply equally to all errors. For example, to sample 25% of your errors:

Copied
<meta-data android:name="io.sentry.sample-rate" android:value="0.25" />

Or, if you are manually instrumenting Sentry:

Copied
import io.sentry.android.core.SentryAndroid;

SentryAndroid.init(this, options -> {
  options.setSampleRate(0.25);
});

The error sample rate defaults to 1, meaning all errors are sent to Sentry.

We recommend sampling your transactions for two reasons:

  1. Capturing a single trace involves minimal overhead, but capturing traces for every page load or every API request may add an undesirable load to your system.
  2. Enabling sampling allows you to better manage the number of events sent to Sentry, so you can tailor your volume to your organization's needs.

Choose a sampling rate with the goal of finding a balance between performance and volume concerns with data accuracy. You don't want to collect too much data, but you want to collect sufficient data from which to draw meaningful conclusions. If you’re not sure what rate to choose, start with a low value and gradually increase it as you learn more about your traffic patterns and volume.

The Sentry SDKs have two configuration options to control the volume of transactions sent to Sentry, allowing you to take a representative sample:

  1. Uniform sample rate (tracesSampleRate):

    • Provides an even cross-section of transactions, no matter where in your app or under what circumstances they occur.
    • Uses default inheritance and precedence behavior
  2. Sampling function (tracesSampler) which:

By default, none of these options are set, meaning no transactions will be sent to Sentry. You must set either one of the options to start sending transactions.

To do this, set the tracesSampleRate option in your SentryAndroid.init() to a number between 0 and 1. With this option set, every transaction created will have that percentage chance of being sent to Sentry. (So, for example, if you set tracesSampleRate to 0.2, approximately 20% of your transactions will get recorded and sent.) That looks like this:

AndroidManifest.xml
Copied
<application>
  <meta-data android:name="io.sentry.traces.sample-rate" android:value="0.2" />
</application>

Or, if you are manually instrumenting Sentry:

Copied
import io.sentry.android.core.SentryAndroid;

SentryAndroid.init(this, options -> {
  ...
  options.setTracesSampleRate(0.2);
});

To use the sampling function, set the tracesSampler option in your SentryAndroid.init() to a function that will accept a samplingContext dictionary and return a sample rate between 0 and 1. For example:

Copied
import io.sentry.CustomSamplingContext;
import io.sentry.android.core.SentryAndroid;

SentryAndroid.init(this, options -> {
  options.setDsn("https://examplePublicKey@o0.ingest.sentry.io/0");
  // To set a uniform sample rate
  options.setTracesSampleRate(1.0);
  // OR: Determine traces sample rate based on the sampling context
  options.setTracesSampler(context -> {
    if (context.getTransactionContext().isForNextAppStart()) {
      // These refer to app start (if app start profiling is enabled), and are important - take a big sample
      return 0.7;
    }
    CustomSamplingContext ctx = context.getCustomSamplingContext();
    if (ctx != null) {
      if ("LoginActivity".equals(ctx.get("ActivityName"))) {
        // These are important - take a big sample
        return 0.5;
      } else if ("SearchActivity".equals(ctx.get("ActivityName"))) {
        // Search is less important and happen much more frequently - only take 1%
        return 0.01;
      } else if ("HealthCheckActivity".equals(ctx.get("ActivityName"))) {
        // The health check is just noise - drop all transactions
        return 0.0;
      } else {
        // Default sample rate
        return 0.1;
      }
    } else {
      return 0.1;
    }
  });
});

The information contained in the samplingContext object passed to the tracesSampler when a transaction is created varies by platform and integration.

For Java-based SDKs, it includes a Transaction Context and a Custom Sampling Context.

When using custom instrumentation to create a transaction, you can add data to the samplingContext by passing it as an optional second argument to startTransaction. This is useful if there's data to which you want the sampler to have access but which you don't want to attach to the transaction as tags or data, such as information that's sensitive or that’s too large to send with the transaction. For example:

Copied
import io.sentry.CustomSamplingContext;
import io.sentry.ITransaction;
import io.sentry.Sentry;
import io.sentry.TransactionOptions;

// sampling context - won't be recorded
CustomSamplingContext context = new CustomSamplingContext();
context.set("user_id", 12312012);
context.set("search_results", searchResults);

TransactionOptions txOptions = new TransactionOptions();
txOptions.setCustomSamplingContext(context);
ITransaction transaction = Sentry.startTransaction("GET /search", "http.server", txOptions);
// transaction context - will be recorded on transaction
transaction.setDescription("search results");

Whatever a transaction's sampling decision, that decision will be passed to its child spans and from there to any transactions they subsequently cause in other services.

(See Distributed Tracing for more about how that propagation is done.)

If the transaction currently being created is one of those subsequent transactions (in other words, if it has a parent transaction), the upstream (parent) sampling decision will be included in the sampling context data. Your tracesSampler can use this information to choose whether to inherit that decision. In most cases, inheritance is the right choice, to avoid breaking distributed traces. A broken trace will not include all your services.

Copied
import io.sentry.SentryOptions;

SentryOptions.TracesSamplerCallback tracesSampler = samplingContext -> {
  Boolean parentSampled = samplingContext.getTransactionContext().getParentSampled();
  if (parentSampled != null) {
    return parentSampled ? 1.0 : 0.0;
  }
  // the rest of sampling logic
};

If you're using a tracesSampleRate rather than a tracesSampler, the decision will always be inherited.

If you know at transaction creation time whether or not you want the transaction sent to Sentry, you also have the option of passing a sampling decision directly to the transaction constructor (note, not in the customSamplingContext object). If you do that, the transaction won't be subject to the tracesSampleRate, nor will tracesSampler be run, so you can count on the decision that's passed not to be overwritten.

Copied
import io.sentry.ITransaction;
import io.sentry.Sentry;
import io.sentry.TransactionContext;
import io.sentry.TracesSamplingDecision;

TracesSamplingDecision samplingDecision = new TracesSamplingDecision(true);
TransactionContext transactionContext = new TransactionContext("GET /search", "http.server", samplingDecision);
ITransaction transaction = Sentry.startTransaction(transactionContext);

There are multiple ways for a transaction to end up with a sampling decision.

  • Random sampling according to a static sample rate set in tracesSampleRate
  • Random sampling according to a sample function rate returned by tracesSampler
  • Absolute decision (100% chance or 0% chance) returned by tracesSampler
  • If the transaction has a parent, inheriting its parent's sampling decision
  • Absolute decision passed to startTransaction

When there's the potential for more than one of these to come into play, the following precedence rules apply:

  1. If a sampling decision is passed to startTransaction, that decision will be used, overriding everything else.
  2. If tracesSampler is defined, its decision will be used. It can choose to keep or ignore any parent sampling decision, use the sampling context data to make its own decision, or choose a sample rate for the transaction. We advise against overriding the parent sampling decision because it will break distributed traces)
  3. If tracesSampler is not defined, but there's a parent sampling decision, the parent sampling decision will be used.
  4. If tracesSampler is not defined and there's no parent sampling decision, tracesSampleRate will be used.
Help improve this content
Our documentation is open source and available on GitHub. Your contributions are welcome, whether fixing a typo (drat!) or suggesting an update ("yeah, this would be better").