@aws-amplify/analytics
Version:
Analytics category of aws-amplify
44 lines (39 loc) • 1.24 kB
text/typescript
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
// SPDX-License-Identifier: Apache-2.0
import { AnalyticsAction } from '@aws-amplify/core/internals/utils';
import { ConsoleLogger } from '@aws-amplify/core';
import { resolveConfig } from '../utils/resolveConfig';
import {
getAnalyticsUserAgentString,
resolveCredentials,
} from '../../../utils';
import { getEventBuffer } from '../utils/getEventBuffer';
const logger = new ConsoleLogger('Kinesis');
/**
* Flushes all buffered Kinesis events to the service.
*
* @note
* This API will make a best-effort attempt to flush events from the buffer. Events recorded immediately after invoking
* this API may not be included in the flush.
*/
export const flushEvents = () => {
const { region, flushSize, flushInterval, bufferSize, resendLimit } =
resolveConfig();
resolveCredentials()
.then(({ credentials, identityId }) =>
getEventBuffer({
region,
flushSize,
flushInterval,
bufferSize,
credentials,
identityId,
resendLimit,
userAgentValue: getAnalyticsUserAgentString(AnalyticsAction.Record),
}),
)
.then(eventBuffer => eventBuffer.flushAll())
.catch(e => {
logger.warn('Failed to flush events.', e);
});
};