Added Dashboard table item for Rate Limits
This commit is contained in:
parent
29473ef356
commit
6a50a6fd5a
5 changed files with 113 additions and 0 deletions
|
@ -13,6 +13,7 @@ import { ProvidersComponent } from './components/providers/providers.component';
|
||||||
import { LetDirective } from './directives/let.directive';
|
import { LetDirective } from './directives/let.directive';
|
||||||
import { BackendFilterPipe } from './pipes/backend.filter.pipe';
|
import { BackendFilterPipe } from './pipes/backend.filter.pipe';
|
||||||
import { FrontendFilterPipe } from './pipes/frontend.filter.pipe';
|
import { FrontendFilterPipe } from './pipes/frontend.filter.pipe';
|
||||||
|
import { HumanReadableFilterPipe } from './pipes/humanreadable.filter.pipe';
|
||||||
import { KeysPipe } from './pipes/keys.pipe';
|
import { KeysPipe } from './pipes/keys.pipe';
|
||||||
import { ApiService } from './services/api.service';
|
import { ApiService } from './services/api.service';
|
||||||
import { WindowService } from './services/window.service';
|
import { WindowService } from './services/window.service';
|
||||||
|
@ -28,6 +29,7 @@ import { WindowService } from './services/window.service';
|
||||||
KeysPipe,
|
KeysPipe,
|
||||||
FrontendFilterPipe,
|
FrontendFilterPipe,
|
||||||
BackendFilterPipe,
|
BackendFilterPipe,
|
||||||
|
HumanReadableFilterPipe,
|
||||||
LetDirective
|
LetDirective
|
||||||
],
|
],
|
||||||
imports: [
|
imports: [
|
||||||
|
|
|
@ -435,6 +435,41 @@
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<!-- details.ratelimit-->
|
||||||
|
<div *ngIf="p.ratelimit">
|
||||||
|
<hr>
|
||||||
|
<div class="section-line">
|
||||||
|
<div class="columns">
|
||||||
|
<div class="column is-3">
|
||||||
|
<h2 class="section-line-header">Rate Limiting</h2>
|
||||||
|
</div>
|
||||||
|
<div class="column is-9">
|
||||||
|
<div class="control">
|
||||||
|
<div class="tags has-addons">
|
||||||
|
<span class="tag is-light">Extractor Function</span>
|
||||||
|
<span class="tag is-info">{{ p.ratelimit.extractorFunc }}</span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<table class="table is-fullwidth is-hoverable table-fixed">
|
||||||
|
<thead>
|
||||||
|
<td>Rateset</td>
|
||||||
|
<td>Period</td>
|
||||||
|
<td>Average</td>
|
||||||
|
<td>Burst</td>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr *ngFor="let rateset of p.ratelimit.rateset">
|
||||||
|
<td>{{rateset.id}}</td>
|
||||||
|
<td>{{rateset.period | humanreadable}}</td>
|
||||||
|
<td>{{rateset.average}}</td>
|
||||||
|
<td>{{rateset.burst}}</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
46
webui/src/app/pipes/humanreadable.filter.pipe.spec.ts
Normal file
46
webui/src/app/pipes/humanreadable.filter.pipe.spec.ts
Normal file
|
@ -0,0 +1,46 @@
|
||||||
|
import { HumanReadableFilterPipe } from './humanreadable.filter.pipe';
|
||||||
|
|
||||||
|
describe('HumanReadableFilterPipe', () => {
|
||||||
|
const pipe = new HumanReadableFilterPipe();
|
||||||
|
|
||||||
|
const datatable = [{
|
||||||
|
'given': '180000000000',
|
||||||
|
'expected': '180s'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
'given': '4096.0',
|
||||||
|
'expected': '4096ns'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
'given': '7200000000000',
|
||||||
|
'expected': '120m'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
'given': '1337',
|
||||||
|
'expected': '1337ns'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
'given': 'traefik',
|
||||||
|
'expected': 'traefik',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
'given': '-23',
|
||||||
|
'expected': '-23',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
'given': '0',
|
||||||
|
'expected': '0',
|
||||||
|
},
|
||||||
|
];
|
||||||
|
|
||||||
|
datatable.forEach(item => {
|
||||||
|
it((item.given + ' should be transformed to ' + item.expected ), () => {
|
||||||
|
expect(pipe.transform(item.given)).toEqual(item.expected);
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
it('create an instance', () => {
|
||||||
|
expect(pipe).toBeTruthy();
|
||||||
|
});
|
||||||
|
|
||||||
|
});
|
27
webui/src/app/pipes/humanreadable.filter.pipe.ts
Normal file
27
webui/src/app/pipes/humanreadable.filter.pipe.ts
Normal file
|
@ -0,0 +1,27 @@
|
||||||
|
import { Pipe, PipeTransform } from '@angular/core';
|
||||||
|
|
||||||
|
/**
|
||||||
|
* HumanReadableFilterPipe converts a time period in nanoseconds to a human-readable
|
||||||
|
* string.
|
||||||
|
*/
|
||||||
|
@Pipe({name: 'humanreadable'})
|
||||||
|
export class HumanReadableFilterPipe implements PipeTransform {
|
||||||
|
transform(value): any {
|
||||||
|
let result = '';
|
||||||
|
const powerOf10 = Math.floor(Math.log10(value));
|
||||||
|
|
||||||
|
if (powerOf10 > 11) {
|
||||||
|
result = value / (60 * Math.pow(10, 9)) + 'm';
|
||||||
|
} else if (powerOf10 > 9) {
|
||||||
|
result = value / Math.pow(10, 9) + 's';
|
||||||
|
} else if (powerOf10 > 6) {
|
||||||
|
result = value / Math.pow(10, 6) + 'ms';
|
||||||
|
} else if (value > 0) {
|
||||||
|
result = Math.floor(value) + 'ns';
|
||||||
|
} else {
|
||||||
|
result = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
}
|
|
@ -67,6 +67,9 @@ export class ApiService {
|
||||||
frontend.headers.customResponseHeaders = this.toHeaderArray(frontend.headers.customResponseHeaders);
|
frontend.headers.customResponseHeaders = this.toHeaderArray(frontend.headers.customResponseHeaders);
|
||||||
frontend.headers.sslProxyHeaders = this.toHeaderArray(frontend.headers.sslProxyHeaders);
|
frontend.headers.sslProxyHeaders = this.toHeaderArray(frontend.headers.sslProxyHeaders);
|
||||||
}
|
}
|
||||||
|
if (frontend.ratelimit && frontend.ratelimit.rateset) {
|
||||||
|
frontend.ratelimit.rateset = this.toArray(frontend.ratelimit.rateset, 'id');
|
||||||
|
}
|
||||||
return frontend;
|
return frontend;
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue