mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-25 00:21:07 +02:00
* Revert "hide sync billing related details" This reverts commit 26d24d9e789dc2378be5845f0e835978676fc9e6. * Revert "add beta tags" This reverts commit a9837bce0b2123ad3eb47f261f127fa166ddb1bc. * final cleanup from remaining SYNC BETA comments * fix line chart scale * update sync copy * update test
13 lines
436 B
TypeScript
13 lines
436 B
TypeScript
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: BUSL-1.1
|
|
*/
|
|
|
|
import ActivityComponent from '../activity';
|
|
|
|
export default class SyncComponent extends ActivityComponent {
|
|
title = 'Secrets sync usage';
|
|
description =
|
|
'This data can be used to understand how many secrets sync clients have been used for this date range. Each Vault secret that is synced to at least one destination counts as one Vault client.';
|
|
}
|