Documentation
    Preparing search index...

    Type Alias RumVitalEvent

    RumVitalEvent: CommonProperties & ViewContainerSchema & {
        _dd?: {
            vital?: { computed_value?: boolean; [k: string]: unknown };
            [k: string]: unknown;
        };
        type: "vital";
        vital: | DurationProperties
        | AppLaunchProperties
        | FeatureOperationProperties;
        [k: string]: unknown;
    }

    Schema of all properties of a Vital event

    Type Declaration

    • [k: string]: unknown
    • Optional Readonly_dd?: {
          vital?: { computed_value?: boolean; [k: string]: unknown };
          [k: string]: unknown;
      }

      Internal properties

      • Optional Readonlyvital?: { computed_value?: boolean; [k: string]: unknown }

        Internal vital properties

        • Optional Readonlycomputed_value?: boolean

          Whether the value of the vital is computed by the SDK (as opposed to directly provided by the customer)

    • Readonlytype: "vital"

      RUM event type

    • Readonlyvital: DurationProperties | AppLaunchProperties | FeatureOperationProperties