Insight.Category
- Common/All
- Android/JVM
-
Cmn
@ExperimentalInsightApi
class Insight.Category
Category represents general expectations that have been violated by an insight - e.g. JIT shouldn't take longer than XX ms, or trampoline activities shouldn't be used.
Every Insight that shares the same conceptual category must share an equal Category
so that macrobenchmark can group them when summarizing observed patterns across multiple iterations.
In Studio versions supporting web links, will produce an output like the following:
[JIT compiled methods](https://d.android.com/test#JIT_COMPILED_METHODS) (expected: < 65 count)
In the above example:
-
title
is"JIT compiled methods"
-
titleUrl
is"https://d.android.com/test#JIT_COMPILED_METHODS"
-
postTitleLabel
is " (expected: < 65 count)"
In Studio versions not supporting web links, titleUrl
is ignored.
Summary
Public properties
postTitleLabel
val postTitleLabel: String
Suffix after the title, generally specifying expected values.
For example, " (expected: < 65 count)"