2023-11-30 14:59:33 +05:30
|
|
|
package monitoringService
|
|
|
|
|
|
2023-12-05 15:49:13 +05:30
|
|
|
import (
|
|
|
|
|
service "houston/service/response"
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
type MonitoringServiceActions interface {
|
|
|
|
|
GetGrafanaImages(incidents []string, requestId string,
|
2023-12-12 11:08:19 +05:30
|
|
|
responseChannel chan service.MonitoringServiceClientResponse)
|
2023-12-13 16:54:34 +05:30
|
|
|
GetImpactedCustomersCSV(incidents []string, requestId string,
|
|
|
|
|
responseChannel chan service.MonitoringServiceClientResponse)
|
2023-11-30 14:59:33 +05:30
|
|
|
}
|