interface RegistryOptions {
    clusterUpdateInterval?: number;
    includeStack?: boolean;
    instanceId: string;
    isCluster?: boolean;
    logger?: LoggerInstance;
    maxSize?: number;
    name: string;
}

Properties

clusterUpdateInterval?: number

Cluster polling interval

includeStack?: boolean

Include stack trace in the error

instanceId: string

Service instance unique identification within the scope of the service identification

`085f47e9-7fad-4da1-b5e5-31fc6eed9f94`
isCluster?: boolean

Is the service running in cluster mode

Logger instance

maxSize?: number

Max size of the registry

name: string

Service name

`myOwnService`