Interface: VocabularyServiceStats
Operational statistics for a running VocabularyService.
Example
const stats: VocabularyServiceStats = {
loadedDomains: ['procurement', 'sales'],
totalTerms: 142,
cacheHits: 37,
cacheMisses: 5,
};
Properties
cacheHits
readonlycacheHits:number
Number of search cache hits since service creation.
cacheMisses
readonlycacheMisses:number
Number of search cache misses since service creation.
loadedDomains
readonlyloadedDomains:SAPDomain[]
Domains that have been loaded into memory.
totalTerms
readonlytotalTerms:number
Total number of vocabulary terms across all loaded domains.