mirror of
https://github.com/hashicorp/vault.git
synced 2025-11-22 11:11:26 +01:00
113 lines
3.8 KiB
Handlebars
113 lines
3.8 KiB
Handlebars
{{!
|
||
Copyright (c) HashiCorp, Inc.
|
||
SPDX-License-Identifier: BUSL-1.1
|
||
~}}
|
||
|
||
{{#if (and this.byMonthActivityData this.isDateRange)}}
|
||
<Clients::ChartContainer
|
||
@title="Entity/Non-entity clients usage"
|
||
@description="This data can be used to understand how many entity and non-entity clients are using Vault each month for this date range. Each client is counted once per month."
|
||
@timestamp={{@activity.responseTimestamp}}
|
||
@legend={{this.legend}}
|
||
@hasChartData={{true}}
|
||
>
|
||
<:subTitle>
|
||
<StatText
|
||
@label="Total clients"
|
||
@subText="The total number of entity and non-entity clients for this date range."
|
||
@value={{this.tokenStats.total}}
|
||
@tooltipText="This number is the total for the queried date range. The chart displays a monthly breakdown of total clients per month."
|
||
@size="l"
|
||
/>
|
||
</:subTitle>
|
||
|
||
<:chart>
|
||
<Clients::Charts::VerticalBarStacked
|
||
@chartTitle="Entity/Non-entity clients usage"
|
||
@data={{this.byMonthActivityData}}
|
||
@chartLegend={{this.legend}}
|
||
@chartHeight={{250}}
|
||
/>
|
||
</:chart>
|
||
</Clients::ChartContainer>
|
||
|
||
<Clients::ChartContainer
|
||
@title="Monthly new"
|
||
@description="Entity or non-entity clients which interacted with Vault for the first time during this date range. Each bar represents the total new clients for that month."
|
||
@timestamp={{@activity.responseTimestamp}}
|
||
@legend={{this.legend}}
|
||
@hasChartData={{this.hasNewClients}}
|
||
class={{unless this.hasNewClients "no-legend"}}
|
||
>
|
||
<:stats>
|
||
<StatText
|
||
@label="Average new entity clients per month"
|
||
@value={{this.average this.byMonthNewClients "entity_clients"}}
|
||
@size="m"
|
||
class="chart-subTitle has-top-padding-l"
|
||
/>
|
||
|
||
<StatText
|
||
@label="Average new non-entity clients per month"
|
||
@value={{this.average this.byMonthNewClients "non_entity_clients"}}
|
||
@size="m"
|
||
class="data-details-top has-top-padding-l"
|
||
/>
|
||
</:stats>
|
||
|
||
<:chart>
|
||
<Clients::Charts::VerticalBarStacked
|
||
@chartTitle="Monthly new"
|
||
@data={{this.byMonthNewClients}}
|
||
@chartLegend={{this.legend}}
|
||
@chartHeight={{250}}
|
||
/>
|
||
</:chart>
|
||
|
||
<:emptyState>
|
||
<EmptyState
|
||
@title="No new clients"
|
||
@subTitle="There is no new client data available for this {{if
|
||
this.countsController.mountPath
|
||
'auth method'
|
||
'namespace'
|
||
}} in this date range."
|
||
@bottomBorder={{true}}
|
||
class="is-shadowless"
|
||
/>
|
||
</:emptyState>
|
||
</Clients::ChartContainer>
|
||
{{else}}
|
||
{{! Renders when viewing a single month or activity log data that predates the monthly breakdown added in 1.11 }}
|
||
<Clients::UsageStats
|
||
@title="Entity/Non-entity usage"
|
||
@description="Client counts for this
|
||
{{if @mountPath 'mount' 'namespace and all its children'}}.
|
||
{{if
|
||
this.isCurrentMonth
|
||
"Only totals are available when viewing the current month. To see a breakdown of new and total clients for this month, select the 'Current Billing Period' filter."
|
||
}}"
|
||
>
|
||
<StatText
|
||
class="column"
|
||
@label="Total clients"
|
||
@value={{this.tokenStats.total}}
|
||
@size="l"
|
||
@subText="The number of clients which interacted with Vault during this month. This is Vault’s primary billing metric."
|
||
/>
|
||
<StatText
|
||
class="column"
|
||
@label="Entity"
|
||
@value={{this.tokenStats.entity_clients}}
|
||
@size="l"
|
||
@subText="Representations of a particular user, client, or application that created a token via login."
|
||
/>
|
||
<StatText
|
||
class="column"
|
||
@label="Non-entity"
|
||
@value={{this.tokenStats.non_entity_clients}}
|
||
@size="l"
|
||
@subText="Clients created with a shared set of permissions, but not associated with an entity."
|
||
/>
|
||
</Clients::UsageStats>
|
||
{{/if}} |