mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-31 11:31:07 +02:00
32 lines
1.0 KiB
Handlebars
32 lines
1.0 KiB
Handlebars
{{!
|
|
Copyright (c) HashiCorp, Inc.
|
|
SPDX-License-Identifier: BUSL-1.1
|
|
~}}
|
|
|
|
<Clients::RunningTotal
|
|
@isSecretsSyncActivated={{this.flags.secretsSyncIsActivated}}
|
|
@byMonthActivityData={{this.byMonthActivityData}}
|
|
@isHistoricalMonth={{and (not this.isCurrentMonth) (not this.isDateRange)}}
|
|
@isCurrentMonth={{this.isCurrentMonth}}
|
|
@runningTotals={{this.totalUsageCounts}}
|
|
@upgradeData={{this.upgradesDuringActivity}}
|
|
@responseTimestamp={{@activity.responseTimestamp}}
|
|
@mountPath={{@mountPath}}
|
|
/>
|
|
|
|
{{#if this.hasAttributionData}}
|
|
<Clients::Attribution
|
|
@noun="namespace"
|
|
@attribution={{@activity.byNamespace}}
|
|
@responseTimestamp={{@activity.responseTimestamp}}
|
|
@isSecretsSyncActivated={{this.flags.secretsSyncIsActivated}}
|
|
/>
|
|
{{#if this.namespaceMountAttribution}}
|
|
<Clients::Attribution
|
|
@noun="mount"
|
|
@attribution={{this.namespaceMountAttribution}}
|
|
@responseTimestamp={{@activity.responseTimestamp}}
|
|
@isSecretsSyncActivated={{this.flags.secretsSyncIsActivated}}
|
|
/>
|
|
{{/if}}
|
|
{{/if}} |