setSamplingRules: function setSamplingRules()

in packages/core/lib/middleware/mw_utils.js [142:148]


  setSamplingRules: function setSamplingRules(source) {
    if (!source || source instanceof String || !(typeof source === 'string' || (source instanceof Object))) {
      throw new Error('Please specify a path to the local sampling rules file, or supply an object containing the rules.');
    }

    this.sampler.setLocalRules(source);
  },