LogUploadServerInfo

Configuration information of the log server.

export class LogUploadServerInfo {
  serverDomain?: string;
  serverPath?: string;
  serverPort?: number;
  serverHttps?: boolean;
}

Properties

serverDomain
Domain name of the log server.
serverPath
Storage path of logs on the server.
serverPort
Port of the log server.
serverHttps
Whether the log server uses HTTPS protocol:
  • true: Uses HTTPS protocol.
  • false: Uses HTTP protocol.