UNPKG

@datadog/datadog-api-client

Version:

OpenAPI client for Datadog APIs

60 lines 1.43 kB
"use strict"; /** * Unless explicitly stated otherwise all files in this repository are licensed under the Apache-2.0 License. * This product includes software developed at Datadog (https://www.datadoghq.com/). * Copyright 2020-Present Datadog, Inc. */ Object.defineProperty(exports, "__esModule", { value: true }); exports.LogAttributes = void 0; /** * JSON object containing all log attributes and their associated values. */ class LogAttributes { constructor() { } /** * @ignore */ static getAttributeTypeMap() { return LogAttributes.attributeTypeMap; } } exports.LogAttributes = LogAttributes; /** * @ignore */ LogAttributes.attributeTypeMap = { attributes: { baseName: "attributes", type: "{ [key: string]: any; }", }, host: { baseName: "host", type: "string", }, message: { baseName: "message", type: "string", }, service: { baseName: "service", type: "string", }, status: { baseName: "status", type: "string", }, tags: { baseName: "tags", type: "Array<string>", }, timestamp: { baseName: "timestamp", type: "Date", format: "date-time", }, additionalProperties: { baseName: "additionalProperties", type: "{ [key: string]: any; }", }, }; //# sourceMappingURL=LogAttributes.js.map