Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

LogType

import type { LogType } from "https://aws-api.deno.dev/v0.3/services/opensearch.ts?docs=full";

Type of log file. Can be one of the following:

  • INDEX_SLOW_LOGS: Index slow logs contain insert requests that took more time than configured index query log threshold to execute.
  • SEARCH_SLOW_LOGS: Search slow logs contain search queries that took more time than configured search query log threshold to execute.
  • ES_APPLICATION_LOGS: OpenSearch application logs contain information about errors and warnings raised during the operation of the service and can be useful for troubleshooting.
  • AUDIT_LOGS: Audit logs contain records of user requests for access from the domain.
type LogType =
| "INDEX_SLOW_LOGS"
| "SEARCH_SLOW_LOGS"
| "ES_APPLICATION_LOGS"
| "AUDIT_LOGS"

§Type

§
"INDEX_SLOW_LOGS" | "SEARCH_SLOW_LOGS" | "ES_APPLICATION_LOGS" | "AUDIT_LOGS" | cmnP.UnexpectedEnumValue
[src]