I’d like to use fingerprints but the documentation is a bit scant and what’s there is a little confusing. I know fingerprints takes in a string array but what exactly are those strings supposed to be? The example has:
I would assume the strings would be additional data points used to further split apart what would otherwise be equal groupings but the example has ‘my-view-function’ as an example. Are the strings supposed to be the names of some functions to invoke? If so where would I define the functions?
Let’s say the strings are just extra data points. Isn’t configureScope a global thing? If I wanted to differentiate one event from another wouldn’t I want to use withScope instead?
Yes your example looks exactly how I would implement it. I was just thrown off because if we were to use configureScope (as shown in the docs) and two errors took place, both errors would get grouped under that same group. However by using withScope I might group the first exception under group1 and the second exception under group2. Is my understanding of that correct? If so, what would be a valid use case for using configureScope alongside setFingerprint?