Interface DatastoreParameters.SlowQueryWithInputParameter

    • Method Detail

      • slowQueryWithInput

        <T> DatastoreParameters.Build slowQueryWithInput​(java.lang.String inputQueryLabel,
                                                         T rawInputQuery,
                                                         QueryConverter<T> rawInputQueryConverter)
        Set an input query and converter to be used when reporting this call as a slow query. The input query could be anything from "Hibernate HQL" to a custom query language that gets converted into SQL.
        Type Parameters:
        T - The type of the input query
        Parameters:
        inputQueryLabel - The label used to display this input query in the UI.
        rawInputQuery - The raw input query object used for transforming into a raw and obfuscated input query string
        rawInputQueryConverter - A converter to transform the rawInputQuery into a raw and obfuscated input query string
        Returns:
        the next builder interface