@dvelop-sdk
    Preparing search index...

    Interface DbRequest

    Information about outbound db requests.

    interface DbRequest {
        duration?: number;
        name?: string;
        operation?: string;
        statement?: string;
    }
    Index

    Properties

    duration?: number

    measures the duration of the db request in milliseconds.

    name?: string

    This attribute is used to report the name of the database being accessed. For example customers oder main.

    operation?: string

    The name of the operation being executed, e.g. the MongoDB command name such as findAndModify, or the SQL keyword. For example findAndModify; HMSET; SELECT.

    statement?: string

    The database statement being executed. Must be sanitized to exclude sensitive information. For example SELECT * FROM wuser_table; SET mykey "WuValue".