UNPKG

applicationinsights

Version:
33 lines (32 loc) 1.3 kB
import Contracts = require("../Declarations/Contracts"); import Config = require("./Config"); import Context = require("./Context"); /** * Manages the logic of creating envelopes from Telemetry objects */ declare class EnvelopeFactory { /** * Creates envelope ready to be sent by Channel * @param telemetry Telemetry data * @param telemetryType Type of telemetry * @param commonProperties Bag of custom common properties to be added to the envelope * @param context Client context * @param config Client configuration */ static createEnvelope(telemetry: Contracts.Telemetry, telemetryType: Contracts.TelemetryType, commonProperties?: { [key: string]: string; }, context?: Context, config?: Config): Contracts.Envelope; private static addAzureFunctionsCorrelationProperties; private static truncateProperties; private static createTraceData; private static createDependencyData; private static createEventData; private static createExceptionData; private static createRequestData; private static createMetricData; private static createAvailabilityData; private static createPageViewData; private static getTags; private static parseStack; } export = EnvelopeFactory;