Skip to content

Commit

Permalink
Update articles/azure-monitor/app/api-filtering-sampling.md
Browse files Browse the repository at this point in the history
Co-Authored-By: Mark Wolff <mrw00010@gmail.com>
  • Loading branch information
ramthi and markwolff authored Nov 7, 2019
1 parent 935f7e0 commit 173ff59
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion articles/azure-monitor/app/api-filtering-sampling.md
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ public void Process(ITelemetry item)

```JS
var filteringFunction = (envelope) => {
if (envelope.data.someField == 'tobefilteredout') {
if (envelope.data.someField === 'tobefilteredout') {
return false;
}

Expand Down

0 comments on commit 173ff59

Please sign in to comment.