mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-23 15:41:07 +02:00
* use model returned by route model hook for ts declaration * remove hasActivity helper * refactor mirage so namespace totals are summed from monthly data * add charts to acme tab * add controller, update counts test * add test for acme page * selector cleanup * update empty state handling for cc charts * cleanup conditional logic * add acme acceptance tests for filtering * wrap up util updates * finish acceptance tests * update usage stats * wrap up number updates from latest stubbed response
16 lines
456 B
TypeScript
16 lines
456 B
TypeScript
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: BUSL-1.1
|
|
*/
|
|
|
|
import ActivityComponent from '../activity';
|
|
|
|
export default class ClientsAcmePageComponent extends ActivityComponent {
|
|
title = 'ACME usage';
|
|
get description() {
|
|
return `This data can be used to understand how many ACME clients have been used for the queried ${
|
|
this.isDateRange ? 'date range' : 'month'
|
|
}. Each ACME request is counted as one client.`;
|
|
}
|
|
}
|