Skip to content

Wellness Index

The Wellness Index value is sent as part of the final results.

The application can receive the Wellness Index result by implementing the OnFinalResults callback interface:

TypeScript
import { 
    VitalSigns,
    VitalSignsResults,
    WellnessIndexSign,
} from '@biosensesignal/web-sdk';

const onFinalResults = useCallback((vitalSignsResults: VitalSignsResults) => {
    const results = vitalSignsResults.results as VitalSigns;
    const wellnessIndex = results.wellnessIndex as WellnessIndexSign;
    if (wellnessIndex?.value != null) {
        console.log(`Wellness Index: ${wellnessIndex.value}}`);
    }
}, []);

For general information about vital signs see the Vital Signs and Health Indicators Information Document.

For additional information regarding the supported indicators see the Indicators Technical Information page.