2022-01-24 20:35:46 +00:00
|
|
|
<div class="box is-sideless is-fullwidth is-marginless is-bottomless">
|
|
|
|
<p class="has-bottom-margin-s">
|
|
|
|
The below data is for the current month starting from the first day. For historical data, see the monthly history tab.
|
|
|
|
</p>
|
|
|
|
{{#if (eq @model.config.enabled "Off")}}
|
|
|
|
<EmptyState
|
|
|
|
@title="Tracking is disabled"
|
|
|
|
@message="Tracking is disabled and data is not being collected. To turn it on edit the configuration."
|
|
|
|
>
|
|
|
|
{{#if @model.config.configPath.canUpdate}}
|
|
|
|
<LinkTo @route="vault.cluster.clients.edit">
|
|
|
|
Go to configuration
|
|
|
|
</LinkTo>
|
|
|
|
{{/if}}
|
|
|
|
</EmptyState>
|
|
|
|
{{/if}}
|
|
|
|
|
|
|
|
{{#if @isLoading}}
|
|
|
|
<LayoutLoading />
|
|
|
|
{{else}}
|
2022-01-27 18:59:08 +00:00
|
|
|
<Clients::UsageStats @title={{date-format this.responseTimestamp "MMMM"}} @runningTotals={{this.runningTotals}} />
|
|
|
|
|
2022-01-25 22:06:56 +00:00
|
|
|
<Clients::Attribution
|
2022-01-27 18:59:08 +00:00
|
|
|
@chartLegend={{this.chartLegend}}
|
|
|
|
@topTenNamespaces={{this.topTenNamespaces}}
|
|
|
|
@runningTotals={{this.runningTotals}}
|
|
|
|
@selectedNamespace={{this.selectedNamespace}}
|
|
|
|
@startTimeDisplay={{date-format this.responseTimestamp "MMMM yyyy"}}
|
2022-01-25 22:06:56 +00:00
|
|
|
@isDateRange={{false}}
|
2022-01-27 18:59:08 +00:00
|
|
|
@timestamp={{this.responseTimestamp}}
|
2022-01-25 22:06:56 +00:00
|
|
|
/>
|
2022-01-24 20:35:46 +00:00
|
|
|
{{/if}}
|
|
|
|
</div>
|