mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-24 08:01:07 +02:00
* only generate 2 mounts per client type * add acme_clients to attribution chart * add acme clients to running total * cleanup selectors * add stat box to single historical month running total, update tests * update filter subtext * add mountpath to usage stat description, change tags from h to p * cleanup extra divs * remove extra clients text from cluttered stats * update attribution test * fix some a11y tests and update attribution counts * fix a11y violations * move to beforeEach?
20 lines
614 B
TypeScript
20 lines
614 B
TypeScript
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: BUSL-1.1
|
|
*/
|
|
|
|
import Component from '@glimmer/component';
|
|
|
|
interface Args {
|
|
isSecretsSyncActivated: boolean;
|
|
}
|
|
|
|
export default class RunningTotal extends Component<Args> {
|
|
get chartContainerText() {
|
|
const { isSecretsSyncActivated } = this.args;
|
|
return `The total clients in the specified date range, displayed per month. This includes entity, non-entity${
|
|
isSecretsSyncActivated ? ', ACME and secrets sync clients' : ' and ACME clients'
|
|
}. The total client count number is an important consideration for Vault billing.`;
|
|
}
|
|
}
|