| /* |
| * Licensed to the Apache Software Foundation (ASF) under one |
| * or more contributor license agreements. See the NOTICE file |
| * distributed with this work for additional information |
| * regarding copyright ownership. The ASF licenses this file |
| * to you under the Apache License, Version 2.0 (the |
| * "License"); you may not use this file except in compliance |
| * with the License. You may obtain a copy of the License at |
| * |
| * http://www.apache.org/licenses/LICENSE-2.0 |
| * |
| * Unless required by applicable law or agreed to in writing, |
| * software distributed under the License is distributed on an |
| * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
| * KIND, either express or implied. See the License for the |
| * specific language governing permissions and limitations |
| * under the License. |
| */ |
| |
| import { HttpClient, HttpParams, HttpResponse } from '@angular/common/http'; |
| import { Injectable } from '@angular/core'; |
| import { Observable } from 'rxjs'; |
| |
| import { Message } from '../pojo/Message'; |
| import { Monitor } from '../pojo/Monitor'; |
| import { Page } from '../pojo/Page'; |
| |
| const monitor_uri = '/monitor'; |
| const monitors_uri = '/monitors'; |
| const detect_monitor_uri = '/monitor/detect'; |
| const manage_monitors_uri = '/monitors/manage'; |
| const export_monitors_uri = '/monitors/export'; |
| const export_all_monitors_uri = '/monitors/export/all'; |
| const summary_uri = '/summary'; |
| const warehouse_storage_status_uri = '/warehouse/storage/status'; |
| const grafana_dashboard_uri = '/grafana/dashboard'; |
| const metrics_favorite_uri = '/metrics/favorite'; |
| |
| @Injectable({ |
| providedIn: 'root' |
| }) |
| export class MonitorService { |
| constructor(private http: HttpClient) {} |
| |
| public newMonitor(body: any): Observable<Message<any>> { |
| return this.http.post<Message<any>>(monitor_uri, body); |
| } |
| |
| public editMonitor(body: any): Observable<Message<any>> { |
| return this.http.put<Message<any>>(monitor_uri, body); |
| } |
| |
| public deleteMonitors(monitorIds: Set<number>): Observable<Message<any>> { |
| let httpParams = new HttpParams(); |
| monitorIds.forEach(monitorId => { |
| // HttpParams is unmodifiable, so we need to save the return value of append/set |
| // Method append can append same key, set will replace the previous value |
| httpParams = httpParams.append('ids', monitorId); |
| }); |
| const options = { params: httpParams }; |
| return this.http.delete<Message<any>>(monitors_uri, options); |
| } |
| |
| public exportMonitors(monitorIds: Set<number>, type: string): Observable<HttpResponse<Blob>> { |
| let httpParams = new HttpParams(); |
| monitorIds.forEach(monitorId => { |
| // HttpParams is unmodifiable, so we need to save the return value of append/set |
| // Method append can append same key, set will replace the previous value |
| httpParams = httpParams.append('ids', monitorId); |
| }); |
| httpParams = httpParams.append('type', type); |
| return this.http.get(export_monitors_uri, { |
| params: httpParams, |
| observe: 'response', |
| responseType: 'blob' |
| }); |
| } |
| |
| public exportAllMonitors(type: string): Observable<HttpResponse<Blob>> { |
| let httpParams = new HttpParams(); |
| httpParams = httpParams.append('type', type); |
| return this.http.get(export_all_monitors_uri, { |
| params: httpParams, |
| observe: 'response', |
| responseType: 'blob' |
| }); |
| } |
| |
| public cancelManageMonitors(monitorIds: Set<number>): Observable<Message<any>> { |
| let httpParams = new HttpParams(); |
| monitorIds.forEach(monitorId => { |
| // HttpParams is unmodifiable, so we need to save the return value of append/set |
| // Method append can append same key, set will replace the previous value |
| httpParams = httpParams.append('ids', monitorId); |
| httpParams = httpParams.append('type', 'JSON'); |
| }); |
| const options = { params: httpParams }; |
| return this.http.delete<Message<any>>(manage_monitors_uri, options); |
| } |
| |
| public enableManageMonitors(monitorIds: Set<number>): Observable<Message<any>> { |
| let httpParams = new HttpParams(); |
| monitorIds.forEach(monitorId => { |
| httpParams = httpParams.append('ids', monitorId); |
| }); |
| const options = { params: httpParams }; |
| return this.http.get<Message<any>>(manage_monitors_uri, options); |
| } |
| |
| public detectMonitor(body: any): Observable<Message<any>> { |
| return this.http.post<Message<any>>(detect_monitor_uri, body); |
| } |
| |
| public getMonitor(monitorId: number): Observable<Message<any>> { |
| return this.http.get<Message<any>>(`${monitor_uri}/${monitorId}`); |
| } |
| |
| public getMonitorsByApp(app: string): Observable<Message<Monitor[]>> { |
| return this.http.get<Message<Monitor[]>>(`${monitors_uri}/${app}`); |
| } |
| |
| public searchMonitors( |
| app: string | undefined, |
| labels: string | undefined, |
| search: string, |
| status: number, |
| pageIndex: number, |
| pageSize: number, |
| sortField?: string | null, |
| sortOrder?: string | null |
| ): Observable<Message<Page<Monitor>>> { |
| pageIndex = pageIndex ? pageIndex : 0; |
| pageSize = pageSize ? pageSize : 8; |
| // HttpParams is unmodifiable, so we need to save the return value of append/set |
| let httpParams = new HttpParams(); |
| httpParams = httpParams.appendAll({ |
| pageIndex: pageIndex, |
| pageSize: pageSize |
| }); |
| if (labels != undefined) { |
| httpParams = httpParams.append('labels', labels); |
| } |
| if (status != undefined && status != 9) { |
| httpParams = httpParams.append('status', status); |
| } |
| if (app != undefined) { |
| httpParams = httpParams.append('app', app); |
| } |
| if (sortField != null && sortOrder != null) { |
| httpParams = httpParams.appendAll({ |
| sort: sortField, |
| order: sortOrder == 'ascend' ? 'asc' : 'desc' |
| }); |
| } |
| if (search != undefined && search != '' && search.trim() != '') { |
| httpParams = httpParams.append('search', search); |
| } |
| const options = { params: httpParams }; |
| return this.http.get<Message<Page<Monitor>>>(monitors_uri, options); |
| } |
| |
| public getMonitorMetricsData(monitorId: number, metrics: string): Observable<Message<any>> { |
| return this.http.get<Message<any>>(`/monitor/${monitorId}/metrics/${metrics}`); |
| } |
| |
| public getMonitorMetricHistoryData( |
| monitorId: number, |
| app: string, |
| metrics: string, |
| metric: string, |
| history: string, |
| interval: boolean |
| ): Observable<Message<any>> { |
| let metricFull = `${app}.${metrics}.${metric}`; |
| let httpParams = new HttpParams(); |
| httpParams = httpParams.appendAll({ |
| history: history, |
| interval: interval |
| }); |
| const options = { params: httpParams }; |
| return this.http.get<Message<any>>(`${monitor_uri}/${monitorId}/metric/${metricFull}`, options); |
| } |
| |
| public getAppsMonitorSummary(): Observable<Message<any>> { |
| return this.http.get<Message<any>>(summary_uri); |
| } |
| |
| public getWarehouseStorageServerStatus(): Observable<Message<any>> { |
| return this.http.get<Message<any>>(warehouse_storage_status_uri); |
| } |
| |
| public getGrafanaDashboard(monitorId: number): Observable<Message<any>> { |
| return this.http.get<Message<any>>(`${grafana_dashboard_uri}?monitorId=${monitorId}`); |
| } |
| |
| public deleteGrafanaDashboard(monitorId: number): Observable<Message<any>> { |
| return this.http.delete<Message<any>>(`${grafana_dashboard_uri}?monitorId=${monitorId}`); |
| } |
| |
| copyMonitor(id: number): Observable<any> { |
| return this.http.post<Message<any>>(`${monitor_uri}/copy/${id}`, null); |
| } |
| |
| public addMetricsFavorite(monitorId: number, metricsName: string): Observable<Message<any>> { |
| return this.http.post<Message<any>>(`${metrics_favorite_uri}/${monitorId}/${metricsName}`, null); |
| } |
| |
| public removeMetricsFavorite(monitorId: number, metricsName: string): Observable<Message<any>> { |
| return this.http.delete<Message<any>>(`${metrics_favorite_uri}/${monitorId}/${metricsName}`); |
| } |
| |
| public getUserFavoritedMetrics(monitorId: number): Observable<Message<Set<string>>> { |
| return this.http.get<Message<Set<string>>>(`${metrics_favorite_uri}/${monitorId}`); |
| } |
| } |