COMFY-1087: Add VDM Standard Dashboard Terraform module and first dashboard using it
parent
72c2a1d298
commit
4260cd44f9
|
|
@ -0,0 +1,41 @@
|
||||||
|
# ID e1b3882b-a54c-4e92-aa81-fc4d0e6486da
|
||||||
|
module CD_nots_vdm_standard_E2E {
|
||||||
|
|
||||||
|
source = "../../_custom_modules/vdm_standard_dashboard"
|
||||||
|
|
||||||
|
dashboardName = "CD_NOTS - EMEA E2E - VDM Standard Dashboard"
|
||||||
|
tag = "b2v-nots"
|
||||||
|
environment = "E2E"
|
||||||
|
managementZoneName = "CD_provisioning"
|
||||||
|
sloName = "VDM - NOTS - EMEA E2E"
|
||||||
|
appId = "APP-17840"
|
||||||
|
reliabilityLink = "https://atc.bmwgroup.net/confluence/x/xzB-VQ#ReliabilityMeasurement-Provisioning(NOTS)"
|
||||||
|
|
||||||
|
reliabilityOverTime = <<EOT
|
||||||
|
(100)-(builtin:service.keyRequest.errors.server.rate:filter(and(or(in("dt.entity.service_method",entitySelector("type(service_method),
|
||||||
|
fromRelationship.isServiceMethodOfService(
|
||||||
|
type(~"SERVICE~"),entityName.in(
|
||||||
|
~"server (/nots) - provisioning - e2e~",
|
||||||
|
~"NotificationApiResource - provisioning - e2e~"
|
||||||
|
)
|
||||||
|
)
|
||||||
|
,entityName.in(
|
||||||
|
~"/nots/poll~",
|
||||||
|
~"notifyVehicles~"
|
||||||
|
)"))))):splitBy():avg:auto:sort(value(avg,ascending)):limit(1))
|
||||||
|
EOT
|
||||||
|
|
||||||
|
reliabilityPerKeyRequest = <<EOT
|
||||||
|
(100)-(builtin:service.keyRequest.errors.server.rate:filter(and(or(in("dt.entity.service_method",entitySelector("type(service_method),
|
||||||
|
fromRelationship.isServiceMethodOfService(
|
||||||
|
type(~"SERVICE~"),entityName.in(
|
||||||
|
~"server (/nots) - provisioning - e2e~",
|
||||||
|
~"NotificationApiResource - provisioning - e2e~"
|
||||||
|
)
|
||||||
|
)
|
||||||
|
,entityName.in(
|
||||||
|
~"/nots/poll~",
|
||||||
|
~"notifyVehicles~"
|
||||||
|
)"))))):splitBy("dt.entity.service_method"):avg:auto:sort(value(avg,ascending)):limit(1))
|
||||||
|
EOT
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,17 @@
|
||||||
|
variable "dashboardName" { default = "VDM Standard Dashboard" }
|
||||||
|
|
||||||
|
variable "tag" { default = "" }
|
||||||
|
|
||||||
|
variable "environment" { default = "" }
|
||||||
|
|
||||||
|
variable "managementZoneName" { default = "" }
|
||||||
|
|
||||||
|
variable "sloName" { default = null }
|
||||||
|
|
||||||
|
variable "appId" { default = "" }
|
||||||
|
|
||||||
|
variable "reliabilityLink" { default = "https://atc.bmwgroup.net/confluence/x/xzB-VQ" }
|
||||||
|
|
||||||
|
variable "reliabilityOverTime" { default = "" }
|
||||||
|
|
||||||
|
variable "reliabilityPerKeyRequest" { default = "" }
|
||||||
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue