35c188fba7
* Client count updates - Added Current month tab which leverages partial monthly activity api - Refactored Vault usage to Monthly history - New client count history component based on StatText and BarChart component - Restrict bar chart to showcase only top 10 namespaces - Removed config route, as config and history component will be rendered based on query param - Updated all metrics reference to clients - Removed old tests and added integration test for current month * Fixed navbar permission - Added changelog * Updated the model for current month data * Fixed current month tests * Fixed indentation and chart label
12 lines
296 B
JavaScript
12 lines
296 B
JavaScript
import Model, { attr } from '@ember-data/model';
|
|
|
|
export default Model.extend({
|
|
total: attr('object'),
|
|
byNamespace: attr('array'),
|
|
endTime: attr('string'),
|
|
startTime: attr('string'),
|
|
clients: attr('number'),
|
|
distinct_entities: attr('number'),
|
|
non_entity_tokens: attr('number'),
|
|
});
|