aboutsummaryrefslogblamecommitdiffhomepage
path: root/client/src/app/shared/shared-instance/instance-statistics.component.ts
blob: 40aa8a4c086e0cdd1bff440216d36132390e74a6 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
                                                 
                                                   
                                         






                                                            


                                 
                                        



               

                                                 

   
import { Component, OnInit } from '@angular/core'
import { ServerStats } from '@shared/models/server'
import { ServerService } from '@app/core'

@Component({
  selector: 'my-instance-statistics',
  templateUrl: './instance-statistics.component.html',
  styleUrls: [ './instance-statistics.component.scss' ]
})
export class InstanceStatisticsComponent implements OnInit {
  serverStats: ServerStats = null

  constructor (
    private serverService: ServerService
  ) {
  }

  ngOnInit () {
    this.serverService.getServerStats()
        .subscribe(res => this.serverStats = res)
  }
}