From 50bb23c3c88ca4d811c8d5189119a76b857fec10 Mon Sep 17 00:00:00 2001 From: Jaqueline Andre Date: Tue, 18 Oct 2022 16:22:51 +0100 Subject: [PATCH 1/2] OPMAAS-2671 + INFOTAIN-30042: Added tf files for eml and vps services --- .../slo/VCIS_VPS_VehicleProfileResource.tf | 33 +++++++++++++ ...CIS_VPS_VehicleProfileResource_Requests.tf | 47 +++++++++++++++++++ .../slo/VCIS_EML_EmailAccountResourceV2.tf | 33 +++++++++++++ ...CIS_EML_EmailAccountResourceV2_Requests.tf | 47 +++++++++++++++++++ .../slo/VCIS_EML_EmailProvidersResource.tf | 33 +++++++++++++ ...CIS_EML_EmailProvidersResource_Requests.tf | 47 +++++++++++++++++++ EMEA_PROD/slo/VCIS_EML_EmailResource.tf | 33 +++++++++++++ .../slo/VCIS_EML_EmailResource_Requests.tf | 47 +++++++++++++++++++ .../slo/VCIS_EML_EmailTemplateResource.tf | 33 +++++++++++++ ...VCIS_EML_EmailTemplateResource_Requests.tf | 47 +++++++++++++++++++ EMEA_PROD/slo/VCIS_EML_OfficeServiceV1.tf | 33 +++++++++++++ .../slo/VCIS_EML_OfficeServiceV1_Requests.tf | 47 +++++++++++++++++++ .../VCIS_EML_PrivacyEmailAccountResource .tf | 33 +++++++++++++ ...ML_PrivacyEmailAccountResource_Requests.tf | 47 +++++++++++++++++++ .../slo/VCIS_VPS_VehicleProfileResource.tf | 33 +++++++++++++ ...CIS_VPS_VehicleProfileResource_Requests.tf | 47 +++++++++++++++++++ .../slo/VCIS_EML_EmailAccountResourceV2.tf | 33 +++++++++++++ ...CIS_EML_EmailAccountResourceV2_Requests.tf | 47 +++++++++++++++++++ .../slo/VCIS_EML_EmailProvidersResource.tf | 33 +++++++++++++ ...CIS_EML_EmailProvidersResource_Requests.tf | 47 +++++++++++++++++++ NA_PROD/slo/VCIS_EML_EmailResource.tf | 33 +++++++++++++ .../slo/VCIS_EML_EmailResource_Requests.tf | 47 +++++++++++++++++++ .../slo/VCIS_VPS_VehicleProfileResource.tf | 33 +++++++++++++ ...CIS_VPS_VehicleProfileResource_Requests.tf | 47 +++++++++++++++++++ 24 files changed, 960 insertions(+) create mode 100644 CN_PROD/slo/VCIS_VPS_VehicleProfileResource.tf create mode 100644 CN_PROD/slo/VCIS_VPS_VehicleProfileResource_Requests.tf create mode 100644 EMEA_PROD/slo/VCIS_EML_EmailAccountResourceV2.tf create mode 100644 EMEA_PROD/slo/VCIS_EML_EmailAccountResourceV2_Requests.tf create mode 100644 EMEA_PROD/slo/VCIS_EML_EmailProvidersResource.tf create mode 100644 EMEA_PROD/slo/VCIS_EML_EmailProvidersResource_Requests.tf create mode 100644 EMEA_PROD/slo/VCIS_EML_EmailResource.tf create mode 100644 EMEA_PROD/slo/VCIS_EML_EmailResource_Requests.tf create mode 100644 EMEA_PROD/slo/VCIS_EML_EmailTemplateResource.tf create mode 100644 EMEA_PROD/slo/VCIS_EML_EmailTemplateResource_Requests.tf create mode 100644 EMEA_PROD/slo/VCIS_EML_OfficeServiceV1.tf create mode 100644 EMEA_PROD/slo/VCIS_EML_OfficeServiceV1_Requests.tf create mode 100644 EMEA_PROD/slo/VCIS_EML_PrivacyEmailAccountResource .tf create mode 100644 EMEA_PROD/slo/VCIS_EML_PrivacyEmailAccountResource_Requests.tf create mode 100644 EMEA_PROD/slo/VCIS_VPS_VehicleProfileResource.tf create mode 100644 EMEA_PROD/slo/VCIS_VPS_VehicleProfileResource_Requests.tf create mode 100644 NA_PROD/slo/VCIS_EML_EmailAccountResourceV2.tf create mode 100644 NA_PROD/slo/VCIS_EML_EmailAccountResourceV2_Requests.tf create mode 100644 NA_PROD/slo/VCIS_EML_EmailProvidersResource.tf create mode 100644 NA_PROD/slo/VCIS_EML_EmailProvidersResource_Requests.tf create mode 100644 NA_PROD/slo/VCIS_EML_EmailResource.tf create mode 100644 NA_PROD/slo/VCIS_EML_EmailResource_Requests.tf create mode 100644 NA_PROD/slo/VCIS_VPS_VehicleProfileResource.tf create mode 100644 NA_PROD/slo/VCIS_VPS_VehicleProfileResource_Requests.tf diff --git a/CN_PROD/slo/VCIS_VPS_VehicleProfileResource.tf b/CN_PROD/slo/VCIS_VPS_VehicleProfileResource.tf new file mode 100644 index 0000000..ae5d19e --- /dev/null +++ b/CN_PROD/slo/VCIS_VPS_VehicleProfileResource.tf @@ -0,0 +1,33 @@ +module VCIS_VPS_VehicleProfileResource { + + source = "../../_dynatrace-base-modules/dynatrace-service-level-objective" + + + name = "VCIS - VehicleProfileResource" + + description = "VehicleProfileResource" + + + + #entity selector object + filter = "type(\"SERVICE\"),entityName(\"VehicleProfileResource - vcis-information - prod\"),tag(\"Environment:PROD\")" + + + #metric expression of the calculation as done in data explorer ui + metric_expression = "(100)*((1)-( builtin:service.errors.fivexx.rate:splitBy():avg:auto:sort(value(avg,descending)):limit(10))/( builtin:service.requestCount.total:splitBy():sum:auto:sort(value(sum,descending)):limit(10)))" + + + #if not set (removed) it's defaulted to "-1d" + timeframe = "-1d" + + + #currently the only possible value + evaluation = "AGGREGATE" + + #Target and warning percentage of the SLO as double + target = 98 + #if not set(removed) it's defaulted to 98 + warning = 99 + #if not set(removed) it's defaulted to 99 + +} \ No newline at end of file diff --git a/CN_PROD/slo/VCIS_VPS_VehicleProfileResource_Requests.tf b/CN_PROD/slo/VCIS_VPS_VehicleProfileResource_Requests.tf new file mode 100644 index 0000000..9f86a36 --- /dev/null +++ b/CN_PROD/slo/VCIS_VPS_VehicleProfileResource_Requests.tf @@ -0,0 +1,47 @@ +module VCIS_VPS_VehicleProfileResource_Requests { + + source = "../../_dynatrace-base-modules/dynatrace-service-level-objective" + + + name = "VCIS - VehicleProfileResource" + + description = "Success rate of VehicleProfileResource" + + + + #entity selector object + filter = "type(\"SERVICE\"),entityName(\"VehicleProfileResource - vcis-information - prod\"),tag(\"Environment:PROD\")" + + + #metric expression of the calculation as done in data explorer ui + metric_expression = <<-EOT + +(100) * ((1) - +(builtin:service.keyRequest.errors.fivexx.count:filter(and(or + (in("dt.entity.service_method",entitySelector("type(service_method),fromRelationship.isServiceMethodOfService(type(~"SERVICE~"), + entityName.in(~"VehicleProfileResource - vcis-information - prod~"), tag(~"Environment:PROD~")), + entityName.in(~"saveVehicleProfile~", ~"readVehicleProfile~", ~"deleteAll~")"))))) + :splitBy()) +/ +(builtin:service.keyRequest.count.server:filter(and(or + (in("dt.entity.service_method",entitySelector("type(service_method),fromRelationship.isServiceMethodOfService(type(~"SERVICE~"), + entityName.in(~"VehicleProfileResource - vcis-information - prod~"), tag(~"Environment:PROD~")), + entityName.in(~"saveVehicleProfile~", ~"readVehicleProfile~", ~"deleteAll~")"))))) + :splitBy())) + +EOT + + #if not set (removed) it's defaulted to "-1d" + timeframe = "-1d" + + + #currently the only possible value + evaluation = "AGGREGATE" + + #Target and warning percentage of the SLO as double + target = 98 + #if not set(removed) it's defaulted to 98 + warning = 99 + #if not set(removed) it's defaulted to 99 + +} \ No newline at end of file diff --git a/EMEA_PROD/slo/VCIS_EML_EmailAccountResourceV2.tf b/EMEA_PROD/slo/VCIS_EML_EmailAccountResourceV2.tf new file mode 100644 index 0000000..9db5c50 --- /dev/null +++ b/EMEA_PROD/slo/VCIS_EML_EmailAccountResourceV2.tf @@ -0,0 +1,33 @@ +module VCIS_EML_EmailAccountResourceV2 { + + source = "../../_dynatrace-base-modules/dynatrace-service-level-objective" + + + name = "VCIS - EmailAccountResourceV2" + + description = "EmailAccountResourceV2" + + + + #entity selector object + filter = "type(\"SERVICE\"),entityName(\"EmailAccountResourceV2 - vcis-information - prod\"),tag(\"Environment:PROD\")" + + + #metric expression of the calculation as done in data explorer ui + metric_expression = "(100)*((1)-( builtin:service.errors.fivexx.rate:splitBy():avg:auto:sort(value(avg,descending)):limit(10))/( builtin:service.requestCount.total:splitBy():sum:auto:sort(value(sum,descending)):limit(10)))" + + + #if not set (removed) it's defaulted to "-1d" + timeframe = "-1d" + + + #currently the only possible value + evaluation = "AGGREGATE" + + #Target and warning percentage of the SLO as double + target = 98 + #if not set(removed) it's defaulted to 98 + warning = 99 + #if not set(removed) it's defaulted to 99 + +} \ No newline at end of file diff --git a/EMEA_PROD/slo/VCIS_EML_EmailAccountResourceV2_Requests.tf b/EMEA_PROD/slo/VCIS_EML_EmailAccountResourceV2_Requests.tf new file mode 100644 index 0000000..d264ff7 --- /dev/null +++ b/EMEA_PROD/slo/VCIS_EML_EmailAccountResourceV2_Requests.tf @@ -0,0 +1,47 @@ +module VCIS_EML_EmailAccountResourceV2_Requests { + + source = "../../_dynatrace-base-modules/dynatrace-service-level-objective" + + + name = "VCIS - EmailAccountResourceV2" + + description = "Success rate of EmailAccountResourceV2" + + + + #entity selector object + filter = "type(\"SERVICE\"),entityName(\"EmailAccountResourceV2 - vcis-information - prod\"),tag(\"Environment:PROD\")" + + + #metric expression of the calculation as done in data explorer ui + metric_expression = <<-EOT + +(100) * ((1) - +(builtin:service.keyRequest.errors.fivexx.count:filter(and(or + (in("dt.entity.service_method",entitySelector("type(service_method),fromRelationship.isServiceMethodOfService(type(~"SERVICE~"), + entityName.in(~"EmailAccountResourceV2 - vcis-information - prod~"), tag(~"Environment:PROD~")), + entityName.in(~"validateInboxSettingV2~", ~"getEmailAccountsV2~", ~"createEmailAccountV2~", ~"updateEmailAccountByIdV2~", ~"deleteEmailAccountByIdV2~")"))))) + :splitBy()) +/ +(builtin:service.keyRequest.count.server:filter(and(or + (in("dt.entity.service_method",entitySelector("type(service_method),fromRelationship.isServiceMethodOfService(type(~"SERVICE~"), + entityName.in(~"EmailAccountResourceV2 - vcis-information - prod~"), tag(~"Environment:PROD~")), + entityName.in(~"validateInboxSettingV2~", ~"getEmailAccountsV2~", ~"createEmailAccountV2~", ~"updateEmailAccountByIdV2~", ~"deleteEmailAccountByIdV2~")"))))) + :splitBy())) + +EOT + + #if not set (removed) it's defaulted to "-1d" + timeframe = "-1d" + + + #currently the only possible value + evaluation = "AGGREGATE" + + #Target and warning percentage of the SLO as double + target = 98 + #if not set(removed) it's defaulted to 98 + warning = 99 + #if not set(removed) it's defaulted to 99 + +} \ No newline at end of file diff --git a/EMEA_PROD/slo/VCIS_EML_EmailProvidersResource.tf b/EMEA_PROD/slo/VCIS_EML_EmailProvidersResource.tf new file mode 100644 index 0000000..613a0f3 --- /dev/null +++ b/EMEA_PROD/slo/VCIS_EML_EmailProvidersResource.tf @@ -0,0 +1,33 @@ +module VCIS_EML_EmailProvidersResource { + + source = "../../_dynatrace-base-modules/dynatrace-service-level-objective" + + + name = "VCIS - EmailProvidersResource" + + description = "EmailProvidersResource" + + + + #entity selector object + filter = "type(\"SERVICE\"),entityName(\"EmailProvidersResource - vcis-information - prod\"),tag(\"Environment:PROD\")" + + + #metric expression of the calculation as done in data explorer ui + metric_expression = "(100)*((1)-( builtin:service.errors.fivexx.rate:splitBy():avg:auto:sort(value(avg,descending)):limit(10))/( builtin:service.requestCount.total:splitBy():sum:auto:sort(value(sum,descending)):limit(10)))" + + + #if not set (removed) it's defaulted to "-1d" + timeframe = "-1d" + + + #currently the only possible value + evaluation = "AGGREGATE" + + #Target and warning percentage of the SLO as double + target = 98 + #if not set(removed) it's defaulted to 98 + warning = 99 + #if not set(removed) it's defaulted to 99 + +} \ No newline at end of file diff --git a/EMEA_PROD/slo/VCIS_EML_EmailProvidersResource_Requests.tf b/EMEA_PROD/slo/VCIS_EML_EmailProvidersResource_Requests.tf new file mode 100644 index 0000000..93269f9 --- /dev/null +++ b/EMEA_PROD/slo/VCIS_EML_EmailProvidersResource_Requests.tf @@ -0,0 +1,47 @@ +module VCIS_EML_EmailProvidersResource_Requests { + + source = "../../_dynatrace-base-modules/dynatrace-service-level-objective" + + + name = "VCIS - EmailProvidersResource" + + description = "Success rate of EmailProvidersResource" + + + + #entity selector object + filter = "type(\"SERVICE\"),entityName(\"EmailProvidersResource - vcis-information - prod\"),tag(\"Environment:PROD\")" + + + #metric expression of the calculation as done in data explorer ui + metric_expression = <<-EOT + +(100) * ((1) - +(builtin:service.keyRequest.errors.fivexx.count:filter(and(or + (in("dt.entity.service_method",entitySelector("type(service_method),fromRelationship.isServiceMethodOfService(type(~"SERVICE~"), + entityName.in(~"EmailProvidersResource - vcis-information - prod~"), tag(~"Environment:PROD~")), + entityName.in(~"getEmailProvidersByGCID~", ~"getEmailProvidersByMarket~")"))))) + :splitBy()) +/ +(builtin:service.keyRequest.count.server:filter(and(or + (in("dt.entity.service_method",entitySelector("type(service_method),fromRelationship.isServiceMethodOfService(type(~"SERVICE~"), + entityName.in(~"EmailProvidersResource - vcis-information - prod~"), tag(~"Environment:PROD~")), + entityName.in(~"getEmailProvidersByGCID~", ~"getEmailProvidersByMarket~")"))))) + :splitBy())) + +EOT + + #if not set (removed) it's defaulted to "-1d" + timeframe = "-1d" + + + #currently the only possible value + evaluation = "AGGREGATE" + + #Target and warning percentage of the SLO as double + target = 98 + #if not set(removed) it's defaulted to 98 + warning = 99 + #if not set(removed) it's defaulted to 99 + +} \ No newline at end of file diff --git a/EMEA_PROD/slo/VCIS_EML_EmailResource.tf b/EMEA_PROD/slo/VCIS_EML_EmailResource.tf new file mode 100644 index 0000000..37e8309 --- /dev/null +++ b/EMEA_PROD/slo/VCIS_EML_EmailResource.tf @@ -0,0 +1,33 @@ +module VCIS_EML_EmailResource { + + source = "../../_dynatrace-base-modules/dynatrace-service-level-objective" + + + name = "VCIS - EmailResource" + + description = "EmailResource" + + + + #entity selector object + filter = "type(\"SERVICE\"),entityName(\"EmailResource - vcis-information - prod\"),tag(\"Environment:PROD\")" + + + #metric expression of the calculation as done in data explorer ui + metric_expression = "(100)*((1)-( builtin:service.errors.fivexx.rate:splitBy():avg:auto:sort(value(avg,descending)):limit(10))/( builtin:service.requestCount.total:splitBy():sum:auto:sort(value(sum,descending)):limit(10)))" + + + #if not set (removed) it's defaulted to "-1d" + timeframe = "-1d" + + + #currently the only possible value + evaluation = "AGGREGATE" + + #Target and warning percentage of the SLO as double + target = 98 + #if not set(removed) it's defaulted to 98 + warning = 99 + #if not set(removed) it's defaulted to 99 + +} \ No newline at end of file diff --git a/EMEA_PROD/slo/VCIS_EML_EmailResource_Requests.tf b/EMEA_PROD/slo/VCIS_EML_EmailResource_Requests.tf new file mode 100644 index 0000000..a23f14d --- /dev/null +++ b/EMEA_PROD/slo/VCIS_EML_EmailResource_Requests.tf @@ -0,0 +1,47 @@ +module VCIS_EML_EmailResource_Requests { + + source = "../../_dynatrace-base-modules/dynatrace-service-level-objective" + + + name = "VCIS - EmailResource" + + description = "Success rate of EmailResource" + + + + #entity selector object + filter = "type(\"SERVICE\"),entityName(\"EmailResource - vcis-information - prod\"),tag(\"Environment:PROD\")" + + + #metric expression of the calculation as done in data explorer ui + metric_expression = <<-EOT + +(100) * ((1) - +(builtin:service.keyRequest.errors.fivexx.count:filter(and(or + (in("dt.entity.service_method",entitySelector("type(service_method),fromRelationship.isServiceMethodOfService(type(~"SERVICE~"), + entityName.in(~"EmailResource - vcis-information - prod~"), tag(~"Environment:PROD~")), + entityName.in(~"validate~", ~"getInbox~", ~"sendMessage~", ~"getMessage~", ~"deleteMessage~")"))))) + :splitBy()) +/ +(builtin:service.keyRequest.count.server:filter(and(or + (in("dt.entity.service_method",entitySelector("type(service_method),fromRelationship.isServiceMethodOfService(type(~"SERVICE~"), + entityName.in(~"EmailResource - vcis-information - prod~"), tag(~"Environment:PROD~")), + entityName.in(~"validate~", ~"getInbox~", ~"sendMessage~", ~"getMessage~", ~"deleteMessage~")"))))) + :splitBy())) + +EOT + + #if not set (removed) it's defaulted to "-1d" + timeframe = "-1d" + + + #currently the only possible value + evaluation = "AGGREGATE" + + #Target and warning percentage of the SLO as double + target = 98 + #if not set(removed) it's defaulted to 98 + warning = 99 + #if not set(removed) it's defaulted to 99 + +} \ No newline at end of file diff --git a/EMEA_PROD/slo/VCIS_EML_EmailTemplateResource.tf b/EMEA_PROD/slo/VCIS_EML_EmailTemplateResource.tf new file mode 100644 index 0000000..aa2ce59 --- /dev/null +++ b/EMEA_PROD/slo/VCIS_EML_EmailTemplateResource.tf @@ -0,0 +1,33 @@ +module VCIS_EML_EmailTemplateResource { + + source = "../../_dynatrace-base-modules/dynatrace-service-level-objective" + + + name = "VCIS - EmailTemplateResource" + + description = "EmailTemplateResource" + + + + #entity selector object + filter = "type(\"SERVICE\"),entityName(\"EmailResource - vcis-information - prod\"),tag(\"Environment:PROD\")" + + + #metric expression of the calculation as done in data explorer ui + metric_expression = "(100)*((1)-( builtin:service.errors.fivexx.rate:splitBy():avg:auto:sort(value(avg,descending)):limit(10))/( builtin:service.requestCount.total:splitBy():sum:auto:sort(value(sum,descending)):limit(10)))" + + + #if not set (removed) it's defaulted to "-1d" + timeframe = "-1d" + + + #currently the only possible value + evaluation = "AGGREGATE" + + #Target and warning percentage of the SLO as double + target = 98 + #if not set(removed) it's defaulted to 98 + warning = 99 + #if not set(removed) it's defaulted to 99 + +} \ No newline at end of file diff --git a/EMEA_PROD/slo/VCIS_EML_EmailTemplateResource_Requests.tf b/EMEA_PROD/slo/VCIS_EML_EmailTemplateResource_Requests.tf new file mode 100644 index 0000000..ae5b2b4 --- /dev/null +++ b/EMEA_PROD/slo/VCIS_EML_EmailTemplateResource_Requests.tf @@ -0,0 +1,47 @@ +module VCIS_EML_EmailTemplateResource_Requests { + + source = "../../_dynatrace-base-modules/dynatrace-service-level-objective" + + + name = "VCIS - EmailTemplateResource" + + description = "Success rate of EmailTemplateResource" + + + + #entity selector object + filter = "type(\"SERVICE\"),entityName(\"EmailTemplateResource - vcis-information - prod\"),tag(\"Environment:PROD\")" + + + #metric expression of the calculation as done in data explorer ui + metric_expression = <<-EOT + +(100) * ((1) - +(builtin:service.keyRequest.errors.fivexx.count:filter(and(or + (in("dt.entity.service_method",entitySelector("type(service_method),fromRelationship.isServiceMethodOfService(type(~"SERVICE~"), + entityName.in(~"EmailTemplateResource - vcis-information - prod~"), tag(~"Environment:PROD~")), + entityName.in(~"getEmailTemplates~", ~"updateEmailTemplateById~", ~"createEmailTemplate~", ~"deleteEmailTemplateById~")"))))) + :splitBy()) +/ +(builtin:service.keyRequest.count.server:filter(and(or + (in("dt.entity.service_method",entitySelector("type(service_method),fromRelationship.isServiceMethodOfService(type(~"SERVICE~"), + entityName.in(~"EmailTemplateResource - vcis-information - prod~"), tag(~"Environment:PROD~")), + entityName.in(~"getEmailTemplates~", ~"updateEmailTemplateById~", ~"createEmailTemplate~", ~"deleteEmailTemplateById~")"))))) + :splitBy())) + +EOT + + #if not set (removed) it's defaulted to "-1d" + timeframe = "-1d" + + + #currently the only possible value + evaluation = "AGGREGATE" + + #Target and warning percentage of the SLO as double + target = 98 + #if not set(removed) it's defaulted to 98 + warning = 99 + #if not set(removed) it's defaulted to 99 + +} \ No newline at end of file diff --git a/EMEA_PROD/slo/VCIS_EML_OfficeServiceV1.tf b/EMEA_PROD/slo/VCIS_EML_OfficeServiceV1.tf new file mode 100644 index 0000000..751b3b3 --- /dev/null +++ b/EMEA_PROD/slo/VCIS_EML_OfficeServiceV1.tf @@ -0,0 +1,33 @@ +module VCIS_EML_OfficeServiceV1 { + + source = "../../_dynatrace-base-modules/dynatrace-service-level-objective" + + + name = "VCIS - OfficeServiceV1" + + description = "OfficeServiceV1" + + + + #entity selector object + filter = "type(\"SERVICE\"),entityName(\"OfficeServiceV1 - vcis-information - prod\"),tag(\"Environment:PROD\")" + + + #metric expression of the calculation as done in data explorer ui + metric_expression = "(100)*((1)-( builtin:service.errors.fivexx.rate:splitBy():avg:auto:sort(value(avg,descending)):limit(10))/( builtin:service.requestCount.total:splitBy():sum:auto:sort(value(sum,descending)):limit(10)))" + + + #if not set (removed) it's defaulted to "-1d" + timeframe = "-1d" + + + #currently the only possible value + evaluation = "AGGREGATE" + + #Target and warning percentage of the SLO as double + target = 98 + #if not set(removed) it's defaulted to 98 + warning = 99 + #if not set(removed) it's defaulted to 99 + +} \ No newline at end of file diff --git a/EMEA_PROD/slo/VCIS_EML_OfficeServiceV1_Requests.tf b/EMEA_PROD/slo/VCIS_EML_OfficeServiceV1_Requests.tf new file mode 100644 index 0000000..31a4f75 --- /dev/null +++ b/EMEA_PROD/slo/VCIS_EML_OfficeServiceV1_Requests.tf @@ -0,0 +1,47 @@ +module VCIS_EML_OfficeServiceV1_Requests { + + source = "../../_dynatrace-base-modules/dynatrace-service-level-objective" + + + name = "VCIS - OfficeServiceV1" + + description = "Success rate of OfficeServiceV1" + + + + #entity selector object + filter = "type(\"SERVICE\"),entityName(\"OfficeServiceV1 - vcis-information - prod\"),tag(\"Environment:PROD\")" + + + #metric expression of the calculation as done in data explorer ui + metric_expression = <<-EOT + +(100) * ((1) - +(builtin:service.keyRequest.errors.fivexx.count:filter(and(or + (in("dt.entity.service_method",entitySelector("type(service_method),fromRelationship.isServiceMethodOfService(type(~"SERVICE~"), + entityName.in(~"OfficeServiceV1 - vcis-information - prod~"), tag(~"Environment:PROD~")), + entityName.in(~"mailV1~", ~"maillistV1~", ~"configV1~", ~"mailboxesV1~", ~"providerListV1~", ~"sendV1~", ~"markreadV1~", ~"deleteV1~", ~"removeV1~")"))))) + :splitBy()) +/ +(builtin:service.keyRequest.count.server:filter(and(or + (in("dt.entity.service_method",entitySelector("type(service_method),fromRelationship.isServiceMethodOfService(type(~"SERVICE~"), + entityName.in(~"OfficeServiceV1 - vcis-information - prod~"), tag(~"Environment:PROD~")), + entityName.in(~"mailV1~", ~"maillistV1~", ~"configV1~", ~"mailboxesV1~", ~"providerListV1~", ~"sendV1~", ~"markreadV1~", ~"deleteV1~", ~"removeV1~")"))))) + :splitBy())) + +EOT + + #if not set (removed) it's defaulted to "-1d" + timeframe = "-1d" + + + #currently the only possible value + evaluation = "AGGREGATE" + + #Target and warning percentage of the SLO as double + target = 98 + #if not set(removed) it's defaulted to 98 + warning = 99 + #if not set(removed) it's defaulted to 99 + +} \ No newline at end of file diff --git a/EMEA_PROD/slo/VCIS_EML_PrivacyEmailAccountResource .tf b/EMEA_PROD/slo/VCIS_EML_PrivacyEmailAccountResource .tf new file mode 100644 index 0000000..1bf2158 --- /dev/null +++ b/EMEA_PROD/slo/VCIS_EML_PrivacyEmailAccountResource .tf @@ -0,0 +1,33 @@ +module VCIS_EML_PrivacyEmailAccountResource { + + source = "../../_dynatrace-base-modules/dynatrace-service-level-objective" + + + name = "VCIS - PrivacyEmailAccountResource " + + description = "PrivacyEmailAccountResource " + + + + #entity selector object + filter = "type(\"SERVICE\"),entityName(\"PrivacyEmailAccountResource - vcis-information - prod\"),tag(\"Environment:PROD\")" + + + #metric expression of the calculation as done in data explorer ui + metric_expression = "(100)*((1)-( builtin:service.errors.fivexx.rate:splitBy():avg:auto:sort(value(avg,descending)):limit(10))/( builtin:service.requestCount.total:splitBy():sum:auto:sort(value(sum,descending)):limit(10)))" + + + #if not set (removed) it's defaulted to "-1d" + timeframe = "-1d" + + + #currently the only possible value + evaluation = "AGGREGATE" + + #Target and warning percentage of the SLO as double + target = 98 + #if not set(removed) it's defaulted to 98 + warning = 99 + #if not set(removed) it's defaulted to 99 + +} \ No newline at end of file diff --git a/EMEA_PROD/slo/VCIS_EML_PrivacyEmailAccountResource_Requests.tf b/EMEA_PROD/slo/VCIS_EML_PrivacyEmailAccountResource_Requests.tf new file mode 100644 index 0000000..e26ff38 --- /dev/null +++ b/EMEA_PROD/slo/VCIS_EML_PrivacyEmailAccountResource_Requests.tf @@ -0,0 +1,47 @@ +module VCIS_EML_OfficeServiceV1_Requests { + + source = "../../_dynatrace-base-modules/dynatrace-service-level-objective" + + + name = "VCIS - PrivacyEmailAccountResource" + + description = "Success rate of PrivacyEmailAccountResource" + + + + #entity selector object + filter = "type(\"SERVICE\"),entityName(\"PrivacyEmailAccountResource - vcis-information - prod\"),tag(\"Environment:PROD\")" + + + #metric expression of the calculation as done in data explorer ui + metric_expression = <<-EOT + +(100) * ((1) - +(builtin:service.keyRequest.errors.fivexx.count:filter(and(or + (in("dt.entity.service_method",entitySelector("type(service_method),fromRelationship.isServiceMethodOfService(type(~"SERVICE~"), + entityName.in(~"PrivacyEmailAccountResource - vcis-information - prod~"), tag(~"Environment:PROD~")), + entityName.in(~"getEmailAccounts~")"))))) + :splitBy()) +/ +(builtin:service.keyRequest.count.server:filter(and(or + (in("dt.entity.service_method",entitySelector("type(service_method),fromRelationship.isServiceMethodOfService(type(~"SERVICE~"), + entityName.in(~"PrivacyEmailAccountResource - vcis-information - prod~"), tag(~"Environment:PROD~")), + entityName.in(~"getEmailAccounts~")"))))) + :splitBy())) + +EOT + + #if not set (removed) it's defaulted to "-1d" + timeframe = "-1d" + + + #currently the only possible value + evaluation = "AGGREGATE" + + #Target and warning percentage of the SLO as double + target = 98 + #if not set(removed) it's defaulted to 98 + warning = 99 + #if not set(removed) it's defaulted to 99 + +} \ No newline at end of file diff --git a/EMEA_PROD/slo/VCIS_VPS_VehicleProfileResource.tf b/EMEA_PROD/slo/VCIS_VPS_VehicleProfileResource.tf new file mode 100644 index 0000000..ae5d19e --- /dev/null +++ b/EMEA_PROD/slo/VCIS_VPS_VehicleProfileResource.tf @@ -0,0 +1,33 @@ +module VCIS_VPS_VehicleProfileResource { + + source = "../../_dynatrace-base-modules/dynatrace-service-level-objective" + + + name = "VCIS - VehicleProfileResource" + + description = "VehicleProfileResource" + + + + #entity selector object + filter = "type(\"SERVICE\"),entityName(\"VehicleProfileResource - vcis-information - prod\"),tag(\"Environment:PROD\")" + + + #metric expression of the calculation as done in data explorer ui + metric_expression = "(100)*((1)-( builtin:service.errors.fivexx.rate:splitBy():avg:auto:sort(value(avg,descending)):limit(10))/( builtin:service.requestCount.total:splitBy():sum:auto:sort(value(sum,descending)):limit(10)))" + + + #if not set (removed) it's defaulted to "-1d" + timeframe = "-1d" + + + #currently the only possible value + evaluation = "AGGREGATE" + + #Target and warning percentage of the SLO as double + target = 98 + #if not set(removed) it's defaulted to 98 + warning = 99 + #if not set(removed) it's defaulted to 99 + +} \ No newline at end of file diff --git a/EMEA_PROD/slo/VCIS_VPS_VehicleProfileResource_Requests.tf b/EMEA_PROD/slo/VCIS_VPS_VehicleProfileResource_Requests.tf new file mode 100644 index 0000000..9f86a36 --- /dev/null +++ b/EMEA_PROD/slo/VCIS_VPS_VehicleProfileResource_Requests.tf @@ -0,0 +1,47 @@ +module VCIS_VPS_VehicleProfileResource_Requests { + + source = "../../_dynatrace-base-modules/dynatrace-service-level-objective" + + + name = "VCIS - VehicleProfileResource" + + description = "Success rate of VehicleProfileResource" + + + + #entity selector object + filter = "type(\"SERVICE\"),entityName(\"VehicleProfileResource - vcis-information - prod\"),tag(\"Environment:PROD\")" + + + #metric expression of the calculation as done in data explorer ui + metric_expression = <<-EOT + +(100) * ((1) - +(builtin:service.keyRequest.errors.fivexx.count:filter(and(or + (in("dt.entity.service_method",entitySelector("type(service_method),fromRelationship.isServiceMethodOfService(type(~"SERVICE~"), + entityName.in(~"VehicleProfileResource - vcis-information - prod~"), tag(~"Environment:PROD~")), + entityName.in(~"saveVehicleProfile~", ~"readVehicleProfile~", ~"deleteAll~")"))))) + :splitBy()) +/ +(builtin:service.keyRequest.count.server:filter(and(or + (in("dt.entity.service_method",entitySelector("type(service_method),fromRelationship.isServiceMethodOfService(type(~"SERVICE~"), + entityName.in(~"VehicleProfileResource - vcis-information - prod~"), tag(~"Environment:PROD~")), + entityName.in(~"saveVehicleProfile~", ~"readVehicleProfile~", ~"deleteAll~")"))))) + :splitBy())) + +EOT + + #if not set (removed) it's defaulted to "-1d" + timeframe = "-1d" + + + #currently the only possible value + evaluation = "AGGREGATE" + + #Target and warning percentage of the SLO as double + target = 98 + #if not set(removed) it's defaulted to 98 + warning = 99 + #if not set(removed) it's defaulted to 99 + +} \ No newline at end of file diff --git a/NA_PROD/slo/VCIS_EML_EmailAccountResourceV2.tf b/NA_PROD/slo/VCIS_EML_EmailAccountResourceV2.tf new file mode 100644 index 0000000..9db5c50 --- /dev/null +++ b/NA_PROD/slo/VCIS_EML_EmailAccountResourceV2.tf @@ -0,0 +1,33 @@ +module VCIS_EML_EmailAccountResourceV2 { + + source = "../../_dynatrace-base-modules/dynatrace-service-level-objective" + + + name = "VCIS - EmailAccountResourceV2" + + description = "EmailAccountResourceV2" + + + + #entity selector object + filter = "type(\"SERVICE\"),entityName(\"EmailAccountResourceV2 - vcis-information - prod\"),tag(\"Environment:PROD\")" + + + #metric expression of the calculation as done in data explorer ui + metric_expression = "(100)*((1)-( builtin:service.errors.fivexx.rate:splitBy():avg:auto:sort(value(avg,descending)):limit(10))/( builtin:service.requestCount.total:splitBy():sum:auto:sort(value(sum,descending)):limit(10)))" + + + #if not set (removed) it's defaulted to "-1d" + timeframe = "-1d" + + + #currently the only possible value + evaluation = "AGGREGATE" + + #Target and warning percentage of the SLO as double + target = 98 + #if not set(removed) it's defaulted to 98 + warning = 99 + #if not set(removed) it's defaulted to 99 + +} \ No newline at end of file diff --git a/NA_PROD/slo/VCIS_EML_EmailAccountResourceV2_Requests.tf b/NA_PROD/slo/VCIS_EML_EmailAccountResourceV2_Requests.tf new file mode 100644 index 0000000..c72c5b1 --- /dev/null +++ b/NA_PROD/slo/VCIS_EML_EmailAccountResourceV2_Requests.tf @@ -0,0 +1,47 @@ +module VCIS_EML_EmailAccountResourceV2_Requests { + + source = "../../_dynatrace-base-modules/dynatrace-service-level-objective" + + + name = "VCIS - EmailAccountResourceV2" + + description = "Success rate of EmailAccountResourceV2" + + + + #entity selector object + filter = "type(\"SERVICE\"),entityName(\"EmailAccountResourceV2 - vcis-information - prod\"),tag(\"Environment:PROD\")" + + + #metric expression of the calculation as done in data explorer ui + metric_expression = <<-EOT + +(100) * ((1) - +(builtin:service.keyRequest.errors.fivexx.count:filter(and(or + (in("dt.entity.service_method",entitySelector("type(service_method),fromRelationship.isServiceMethodOfService(type(~"SERVICE~"), + entityName.in(~"EmailAccountResourceV2 - vcis-information - prod~"), tag(~"Environment:PROD~")), + entityName.in(~"getEmailAccountsV2~")"))))) + :splitBy()) +/ +(builtin:service.keyRequest.count.server:filter(and(or + (in("dt.entity.service_method",entitySelector("type(service_method),fromRelationship.isServiceMethodOfService(type(~"SERVICE~"), + entityName.in(~"EmailAccountResourceV2 - vcis-information - prod~"), tag(~"Environment:PROD~")), + entityName.in(~"getEmailAccountsV2~")"))))) + :splitBy())) + +EOT + + #if not set (removed) it's defaulted to "-1d" + timeframe = "-1d" + + + #currently the only possible value + evaluation = "AGGREGATE" + + #Target and warning percentage of the SLO as double + target = 98 + #if not set(removed) it's defaulted to 98 + warning = 99 + #if not set(removed) it's defaulted to 99 + +} \ No newline at end of file diff --git a/NA_PROD/slo/VCIS_EML_EmailProvidersResource.tf b/NA_PROD/slo/VCIS_EML_EmailProvidersResource.tf new file mode 100644 index 0000000..613a0f3 --- /dev/null +++ b/NA_PROD/slo/VCIS_EML_EmailProvidersResource.tf @@ -0,0 +1,33 @@ +module VCIS_EML_EmailProvidersResource { + + source = "../../_dynatrace-base-modules/dynatrace-service-level-objective" + + + name = "VCIS - EmailProvidersResource" + + description = "EmailProvidersResource" + + + + #entity selector object + filter = "type(\"SERVICE\"),entityName(\"EmailProvidersResource - vcis-information - prod\"),tag(\"Environment:PROD\")" + + + #metric expression of the calculation as done in data explorer ui + metric_expression = "(100)*((1)-( builtin:service.errors.fivexx.rate:splitBy():avg:auto:sort(value(avg,descending)):limit(10))/( builtin:service.requestCount.total:splitBy():sum:auto:sort(value(sum,descending)):limit(10)))" + + + #if not set (removed) it's defaulted to "-1d" + timeframe = "-1d" + + + #currently the only possible value + evaluation = "AGGREGATE" + + #Target and warning percentage of the SLO as double + target = 98 + #if not set(removed) it's defaulted to 98 + warning = 99 + #if not set(removed) it's defaulted to 99 + +} \ No newline at end of file diff --git a/NA_PROD/slo/VCIS_EML_EmailProvidersResource_Requests.tf b/NA_PROD/slo/VCIS_EML_EmailProvidersResource_Requests.tf new file mode 100644 index 0000000..d1d55b7 --- /dev/null +++ b/NA_PROD/slo/VCIS_EML_EmailProvidersResource_Requests.tf @@ -0,0 +1,47 @@ +module VCIS_EML_EmailProvidersResource_Requests { + + source = "../../_dynatrace-base-modules/dynatrace-service-level-objective" + + + name = "VCIS - EmailProvidersResource" + + description = "Success rate of EmailProvidersResource" + + + + #entity selector object + filter = "type(\"SERVICE\"),entityName(\"EmailProvidersResource - vcis-information - prod\"),tag(\"Environment:PROD\")" + + + #metric expression of the calculation as done in data explorer ui + metric_expression = <<-EOT + +(100) * ((1) - +(builtin:service.keyRequest.errors.fivexx.count:filter(and(or + (in("dt.entity.service_method",entitySelector("type(service_method),fromRelationship.isServiceMethodOfService(type(~"SERVICE~"), + entityName.in(~"EmailProvidersResource - vcis-information - prod~"), tag(~"Environment:PROD~")), + entityName.in(~"getEmailProvidersByMarket~")"))))) + :splitBy()) +/ +(builtin:service.keyRequest.count.server:filter(and(or + (in("dt.entity.service_method",entitySelector("type(service_method),fromRelationship.isServiceMethodOfService(type(~"SERVICE~"), + entityName.in(~"EmailProvidersResource - vcis-information - prod~"), tag(~"Environment:PROD~")), + entityName.in(~"getEmailProvidersByMarket~")"))))) + :splitBy())) + +EOT + + #if not set (removed) it's defaulted to "-1d" + timeframe = "-1d" + + + #currently the only possible value + evaluation = "AGGREGATE" + + #Target and warning percentage of the SLO as double + target = 98 + #if not set(removed) it's defaulted to 98 + warning = 99 + #if not set(removed) it's defaulted to 99 + +} \ No newline at end of file diff --git a/NA_PROD/slo/VCIS_EML_EmailResource.tf b/NA_PROD/slo/VCIS_EML_EmailResource.tf new file mode 100644 index 0000000..37e8309 --- /dev/null +++ b/NA_PROD/slo/VCIS_EML_EmailResource.tf @@ -0,0 +1,33 @@ +module VCIS_EML_EmailResource { + + source = "../../_dynatrace-base-modules/dynatrace-service-level-objective" + + + name = "VCIS - EmailResource" + + description = "EmailResource" + + + + #entity selector object + filter = "type(\"SERVICE\"),entityName(\"EmailResource - vcis-information - prod\"),tag(\"Environment:PROD\")" + + + #metric expression of the calculation as done in data explorer ui + metric_expression = "(100)*((1)-( builtin:service.errors.fivexx.rate:splitBy():avg:auto:sort(value(avg,descending)):limit(10))/( builtin:service.requestCount.total:splitBy():sum:auto:sort(value(sum,descending)):limit(10)))" + + + #if not set (removed) it's defaulted to "-1d" + timeframe = "-1d" + + + #currently the only possible value + evaluation = "AGGREGATE" + + #Target and warning percentage of the SLO as double + target = 98 + #if not set(removed) it's defaulted to 98 + warning = 99 + #if not set(removed) it's defaulted to 99 + +} \ No newline at end of file diff --git a/NA_PROD/slo/VCIS_EML_EmailResource_Requests.tf b/NA_PROD/slo/VCIS_EML_EmailResource_Requests.tf new file mode 100644 index 0000000..34da3b2 --- /dev/null +++ b/NA_PROD/slo/VCIS_EML_EmailResource_Requests.tf @@ -0,0 +1,47 @@ +module VCIS_EML_EmailResource_Requests { + + source = "../../_dynatrace-base-modules/dynatrace-service-level-objective" + + + name = "VCIS - EmailResource" + + description = "Success rate of EmailResource" + + + + #entity selector object + filter = "type(\"SERVICE\"),entityName(\"EmailResource - vcis-information - prod\"),tag(\"Environment:PROD\")" + + + #metric expression of the calculation as done in data explorer ui + metric_expression = <<-EOT + +(100) * ((1) - +(builtin:service.keyRequest.errors.fivexx.count:filter(and(or + (in("dt.entity.service_method",entitySelector("type(service_method),fromRelationship.isServiceMethodOfService(type(~"SERVICE~"), + entityName.in(~"EmailResource - vcis-information - prod~"), tag(~"Environment:PROD~")), + entityName.in(~"validate~")"))))) + :splitBy()) +/ +(builtin:service.keyRequest.count.server:filter(and(or + (in("dt.entity.service_method",entitySelector("type(service_method),fromRelationship.isServiceMethodOfService(type(~"SERVICE~"), + entityName.in(~"EmailResource - vcis-information - prod~"), tag(~"Environment:PROD~")), + entityName.in(~"validate~")"))))) + :splitBy())) + +EOT + + #if not set (removed) it's defaulted to "-1d" + timeframe = "-1d" + + + #currently the only possible value + evaluation = "AGGREGATE" + + #Target and warning percentage of the SLO as double + target = 98 + #if not set(removed) it's defaulted to 98 + warning = 99 + #if not set(removed) it's defaulted to 99 + +} \ No newline at end of file diff --git a/NA_PROD/slo/VCIS_VPS_VehicleProfileResource.tf b/NA_PROD/slo/VCIS_VPS_VehicleProfileResource.tf new file mode 100644 index 0000000..ae5d19e --- /dev/null +++ b/NA_PROD/slo/VCIS_VPS_VehicleProfileResource.tf @@ -0,0 +1,33 @@ +module VCIS_VPS_VehicleProfileResource { + + source = "../../_dynatrace-base-modules/dynatrace-service-level-objective" + + + name = "VCIS - VehicleProfileResource" + + description = "VehicleProfileResource" + + + + #entity selector object + filter = "type(\"SERVICE\"),entityName(\"VehicleProfileResource - vcis-information - prod\"),tag(\"Environment:PROD\")" + + + #metric expression of the calculation as done in data explorer ui + metric_expression = "(100)*((1)-( builtin:service.errors.fivexx.rate:splitBy():avg:auto:sort(value(avg,descending)):limit(10))/( builtin:service.requestCount.total:splitBy():sum:auto:sort(value(sum,descending)):limit(10)))" + + + #if not set (removed) it's defaulted to "-1d" + timeframe = "-1d" + + + #currently the only possible value + evaluation = "AGGREGATE" + + #Target and warning percentage of the SLO as double + target = 98 + #if not set(removed) it's defaulted to 98 + warning = 99 + #if not set(removed) it's defaulted to 99 + +} \ No newline at end of file diff --git a/NA_PROD/slo/VCIS_VPS_VehicleProfileResource_Requests.tf b/NA_PROD/slo/VCIS_VPS_VehicleProfileResource_Requests.tf new file mode 100644 index 0000000..9f86a36 --- /dev/null +++ b/NA_PROD/slo/VCIS_VPS_VehicleProfileResource_Requests.tf @@ -0,0 +1,47 @@ +module VCIS_VPS_VehicleProfileResource_Requests { + + source = "../../_dynatrace-base-modules/dynatrace-service-level-objective" + + + name = "VCIS - VehicleProfileResource" + + description = "Success rate of VehicleProfileResource" + + + + #entity selector object + filter = "type(\"SERVICE\"),entityName(\"VehicleProfileResource - vcis-information - prod\"),tag(\"Environment:PROD\")" + + + #metric expression of the calculation as done in data explorer ui + metric_expression = <<-EOT + +(100) * ((1) - +(builtin:service.keyRequest.errors.fivexx.count:filter(and(or + (in("dt.entity.service_method",entitySelector("type(service_method),fromRelationship.isServiceMethodOfService(type(~"SERVICE~"), + entityName.in(~"VehicleProfileResource - vcis-information - prod~"), tag(~"Environment:PROD~")), + entityName.in(~"saveVehicleProfile~", ~"readVehicleProfile~", ~"deleteAll~")"))))) + :splitBy()) +/ +(builtin:service.keyRequest.count.server:filter(and(or + (in("dt.entity.service_method",entitySelector("type(service_method),fromRelationship.isServiceMethodOfService(type(~"SERVICE~"), + entityName.in(~"VehicleProfileResource - vcis-information - prod~"), tag(~"Environment:PROD~")), + entityName.in(~"saveVehicleProfile~", ~"readVehicleProfile~", ~"deleteAll~")"))))) + :splitBy())) + +EOT + + #if not set (removed) it's defaulted to "-1d" + timeframe = "-1d" + + + #currently the only possible value + evaluation = "AGGREGATE" + + #Target and warning percentage of the SLO as double + target = 98 + #if not set(removed) it's defaulted to 98 + warning = 99 + #if not set(removed) it's defaulted to 99 + +} \ No newline at end of file From 549dd733a4871425b155c952102a411e882be310 Mon Sep 17 00:00:00 2001 From: Jaqueline Andre Date: Wed, 19 Oct 2022 14:47:07 +0100 Subject: [PATCH 2/2] INFOTAIN-30042: Fixed naming issues --- ...f => VCIS_VPS_VehicleProfileResource_-_information.tf} | 8 ++++---- ..._VPS_VehicleProfileResource_-_information_Requests.tf} | 6 +++--- EMEA_PROD/slo/VCIS_EML_EmailAccountResourceV2.tf | 2 +- EMEA_PROD/slo/VCIS_EML_EmailAccountResourceV2_Requests.tf | 2 +- EMEA_PROD/slo/VCIS_EML_EmailProvidersResource.tf | 2 +- EMEA_PROD/slo/VCIS_EML_EmailProvidersResource_Requests.tf | 2 +- EMEA_PROD/slo/VCIS_EML_EmailResource.tf | 2 +- EMEA_PROD/slo/VCIS_EML_EmailResource_Requests.tf | 2 +- EMEA_PROD/slo/VCIS_EML_EmailTemplateResource.tf | 2 +- EMEA_PROD/slo/VCIS_EML_EmailTemplateResource_Requests.tf | 2 +- EMEA_PROD/slo/VCIS_EML_OfficeServiceV1.tf | 2 +- EMEA_PROD/slo/VCIS_EML_OfficeServiceV1_Requests.tf | 2 +- EMEA_PROD/slo/VCIS_EML_PrivacyEmailAccountResource .tf | 2 +- .../slo/VCIS_EML_PrivacyEmailAccountResource_Requests.tf | 2 +- EMEA_PROD/slo/VCIS_VPS_VehicleProfileResource.tf | 2 +- EMEA_PROD/slo/VCIS_VPS_VehicleProfileResource_Requests.tf | 2 +- NA_PROD/slo/VCIS_EML_EmailAccountResourceV2.tf | 2 +- NA_PROD/slo/VCIS_EML_EmailAccountResourceV2_Requests.tf | 2 +- NA_PROD/slo/VCIS_EML_EmailProvidersResource.tf | 2 +- NA_PROD/slo/VCIS_EML_EmailProvidersResource_Requests.tf | 2 +- NA_PROD/slo/VCIS_EML_EmailResource.tf | 2 +- NA_PROD/slo/VCIS_EML_EmailResource_Requests.tf | 2 +- NA_PROD/slo/VCIS_VPS_VehicleProfileResource.tf | 2 +- NA_PROD/slo/VCIS_VPS_VehicleProfileResource_Requests.tf | 2 +- 24 files changed, 29 insertions(+), 29 deletions(-) rename CN_PROD/slo/{VCIS_VPS_VehicleProfileResource.tf => VCIS_VPS_VehicleProfileResource_-_information.tf} (75%) rename CN_PROD/slo/{VCIS_VPS_VehicleProfileResource_Requests.tf => VCIS_VPS_VehicleProfileResource_-_information_Requests.tf} (87%) diff --git a/CN_PROD/slo/VCIS_VPS_VehicleProfileResource.tf b/CN_PROD/slo/VCIS_VPS_VehicleProfileResource_-_information.tf similarity index 75% rename from CN_PROD/slo/VCIS_VPS_VehicleProfileResource.tf rename to CN_PROD/slo/VCIS_VPS_VehicleProfileResource_-_information.tf index ae5d19e..1b4bcd7 100644 --- a/CN_PROD/slo/VCIS_VPS_VehicleProfileResource.tf +++ b/CN_PROD/slo/VCIS_VPS_VehicleProfileResource_-_information.tf @@ -1,16 +1,16 @@ -module VCIS_VPS_VehicleProfileResource { +module VCIS_VPS_VehicleProfileResource_-_information { source = "../../_dynatrace-base-modules/dynatrace-service-level-objective" - name = "VCIS - VehicleProfileResource" + name = "VCIS-VPS - VehicleProfileResource - information" - description = "VehicleProfileResource" + description = "VehicleProfileResource - information" #entity selector object - filter = "type(\"SERVICE\"),entityName(\"VehicleProfileResource - vcis-information - prod\"),tag(\"Environment:PROD\")" + filter = "type(\"SERVICE\"),entityName(\"VehicleProfileResource - information\"),tag(\"Environment:PROD\")" #metric expression of the calculation as done in data explorer ui diff --git a/CN_PROD/slo/VCIS_VPS_VehicleProfileResource_Requests.tf b/CN_PROD/slo/VCIS_VPS_VehicleProfileResource_-_information_Requests.tf similarity index 87% rename from CN_PROD/slo/VCIS_VPS_VehicleProfileResource_Requests.tf rename to CN_PROD/slo/VCIS_VPS_VehicleProfileResource_-_information_Requests.tf index 9f86a36..57d617a 100644 --- a/CN_PROD/slo/VCIS_VPS_VehicleProfileResource_Requests.tf +++ b/CN_PROD/slo/VCIS_VPS_VehicleProfileResource_-_information_Requests.tf @@ -1,16 +1,16 @@ -module VCIS_VPS_VehicleProfileResource_Requests { +module VCIS_VPS_VehicleProfileResource_-_information_Requests { source = "../../_dynatrace-base-modules/dynatrace-service-level-objective" - name = "VCIS - VehicleProfileResource" + name = "VCIS-VPS - VehicleProfileResource - information - Requests" description = "Success rate of VehicleProfileResource" #entity selector object - filter = "type(\"SERVICE\"),entityName(\"VehicleProfileResource - vcis-information - prod\"),tag(\"Environment:PROD\")" + filter = "type(\"SERVICE\"),entityName(\"VehicleProfileResource - information\"),tag(\"Environment:PROD\")" #metric expression of the calculation as done in data explorer ui diff --git a/EMEA_PROD/slo/VCIS_EML_EmailAccountResourceV2.tf b/EMEA_PROD/slo/VCIS_EML_EmailAccountResourceV2.tf index 9db5c50..e26dbc6 100644 --- a/EMEA_PROD/slo/VCIS_EML_EmailAccountResourceV2.tf +++ b/EMEA_PROD/slo/VCIS_EML_EmailAccountResourceV2.tf @@ -3,7 +3,7 @@ module VCIS_EML_EmailAccountResourceV2 { source = "../../_dynatrace-base-modules/dynatrace-service-level-objective" - name = "VCIS - EmailAccountResourceV2" + name = "VCIS-EML - EmailAccountResourceV2" description = "EmailAccountResourceV2" diff --git a/EMEA_PROD/slo/VCIS_EML_EmailAccountResourceV2_Requests.tf b/EMEA_PROD/slo/VCIS_EML_EmailAccountResourceV2_Requests.tf index d264ff7..1001d99 100644 --- a/EMEA_PROD/slo/VCIS_EML_EmailAccountResourceV2_Requests.tf +++ b/EMEA_PROD/slo/VCIS_EML_EmailAccountResourceV2_Requests.tf @@ -3,7 +3,7 @@ module VCIS_EML_EmailAccountResourceV2_Requests { source = "../../_dynatrace-base-modules/dynatrace-service-level-objective" - name = "VCIS - EmailAccountResourceV2" + name = "VCIS-EML - EmailAccountResourceV2 - Requests" description = "Success rate of EmailAccountResourceV2" diff --git a/EMEA_PROD/slo/VCIS_EML_EmailProvidersResource.tf b/EMEA_PROD/slo/VCIS_EML_EmailProvidersResource.tf index 613a0f3..59c84bf 100644 --- a/EMEA_PROD/slo/VCIS_EML_EmailProvidersResource.tf +++ b/EMEA_PROD/slo/VCIS_EML_EmailProvidersResource.tf @@ -3,7 +3,7 @@ module VCIS_EML_EmailProvidersResource { source = "../../_dynatrace-base-modules/dynatrace-service-level-objective" - name = "VCIS - EmailProvidersResource" + name = "VCIS-EML - EmailProvidersResource" description = "EmailProvidersResource" diff --git a/EMEA_PROD/slo/VCIS_EML_EmailProvidersResource_Requests.tf b/EMEA_PROD/slo/VCIS_EML_EmailProvidersResource_Requests.tf index 93269f9..d504421 100644 --- a/EMEA_PROD/slo/VCIS_EML_EmailProvidersResource_Requests.tf +++ b/EMEA_PROD/slo/VCIS_EML_EmailProvidersResource_Requests.tf @@ -3,7 +3,7 @@ module VCIS_EML_EmailProvidersResource_Requests { source = "../../_dynatrace-base-modules/dynatrace-service-level-objective" - name = "VCIS - EmailProvidersResource" + name = "VCIS-EML - EmailProvidersResource - Requests" description = "Success rate of EmailProvidersResource" diff --git a/EMEA_PROD/slo/VCIS_EML_EmailResource.tf b/EMEA_PROD/slo/VCIS_EML_EmailResource.tf index 37e8309..78643f7 100644 --- a/EMEA_PROD/slo/VCIS_EML_EmailResource.tf +++ b/EMEA_PROD/slo/VCIS_EML_EmailResource.tf @@ -3,7 +3,7 @@ module VCIS_EML_EmailResource { source = "../../_dynatrace-base-modules/dynatrace-service-level-objective" - name = "VCIS - EmailResource" + name = "VCIS-EML - EmailResource" description = "EmailResource" diff --git a/EMEA_PROD/slo/VCIS_EML_EmailResource_Requests.tf b/EMEA_PROD/slo/VCIS_EML_EmailResource_Requests.tf index a23f14d..d94ab45 100644 --- a/EMEA_PROD/slo/VCIS_EML_EmailResource_Requests.tf +++ b/EMEA_PROD/slo/VCIS_EML_EmailResource_Requests.tf @@ -3,7 +3,7 @@ module VCIS_EML_EmailResource_Requests { source = "../../_dynatrace-base-modules/dynatrace-service-level-objective" - name = "VCIS - EmailResource" + name = "VCIS-EML - EmailResource - Requests" description = "Success rate of EmailResource" diff --git a/EMEA_PROD/slo/VCIS_EML_EmailTemplateResource.tf b/EMEA_PROD/slo/VCIS_EML_EmailTemplateResource.tf index aa2ce59..f0e6708 100644 --- a/EMEA_PROD/slo/VCIS_EML_EmailTemplateResource.tf +++ b/EMEA_PROD/slo/VCIS_EML_EmailTemplateResource.tf @@ -10,7 +10,7 @@ module VCIS_EML_EmailTemplateResource { #entity selector object - filter = "type(\"SERVICE\"),entityName(\"EmailResource - vcis-information - prod\"),tag(\"Environment:PROD\")" + filter = "type(\"SERVICE\"),entityName(\"EmailTemplateResource - vcis-information - prod\"),tag(\"Environment:PROD\")" #metric expression of the calculation as done in data explorer ui diff --git a/EMEA_PROD/slo/VCIS_EML_EmailTemplateResource_Requests.tf b/EMEA_PROD/slo/VCIS_EML_EmailTemplateResource_Requests.tf index ae5b2b4..be083f7 100644 --- a/EMEA_PROD/slo/VCIS_EML_EmailTemplateResource_Requests.tf +++ b/EMEA_PROD/slo/VCIS_EML_EmailTemplateResource_Requests.tf @@ -3,7 +3,7 @@ module VCIS_EML_EmailTemplateResource_Requests { source = "../../_dynatrace-base-modules/dynatrace-service-level-objective" - name = "VCIS - EmailTemplateResource" + name = "VCIS-EML - EmailTemplateResource - Requests" description = "Success rate of EmailTemplateResource" diff --git a/EMEA_PROD/slo/VCIS_EML_OfficeServiceV1.tf b/EMEA_PROD/slo/VCIS_EML_OfficeServiceV1.tf index 751b3b3..8b11edd 100644 --- a/EMEA_PROD/slo/VCIS_EML_OfficeServiceV1.tf +++ b/EMEA_PROD/slo/VCIS_EML_OfficeServiceV1.tf @@ -3,7 +3,7 @@ module VCIS_EML_OfficeServiceV1 { source = "../../_dynatrace-base-modules/dynatrace-service-level-objective" - name = "VCIS - OfficeServiceV1" + name = "VCIS-EML - OfficeServiceV1" description = "OfficeServiceV1" diff --git a/EMEA_PROD/slo/VCIS_EML_OfficeServiceV1_Requests.tf b/EMEA_PROD/slo/VCIS_EML_OfficeServiceV1_Requests.tf index 31a4f75..df40037 100644 --- a/EMEA_PROD/slo/VCIS_EML_OfficeServiceV1_Requests.tf +++ b/EMEA_PROD/slo/VCIS_EML_OfficeServiceV1_Requests.tf @@ -3,7 +3,7 @@ module VCIS_EML_OfficeServiceV1_Requests { source = "../../_dynatrace-base-modules/dynatrace-service-level-objective" - name = "VCIS - OfficeServiceV1" + name = "VCIS-EML - OfficeServiceV1 - Requests" description = "Success rate of OfficeServiceV1" diff --git a/EMEA_PROD/slo/VCIS_EML_PrivacyEmailAccountResource .tf b/EMEA_PROD/slo/VCIS_EML_PrivacyEmailAccountResource .tf index 1bf2158..ac009d5 100644 --- a/EMEA_PROD/slo/VCIS_EML_PrivacyEmailAccountResource .tf +++ b/EMEA_PROD/slo/VCIS_EML_PrivacyEmailAccountResource .tf @@ -3,7 +3,7 @@ module VCIS_EML_PrivacyEmailAccountResource { source = "../../_dynatrace-base-modules/dynatrace-service-level-objective" - name = "VCIS - PrivacyEmailAccountResource " + name = "VCIS-EML - PrivacyEmailAccountResource " description = "PrivacyEmailAccountResource " diff --git a/EMEA_PROD/slo/VCIS_EML_PrivacyEmailAccountResource_Requests.tf b/EMEA_PROD/slo/VCIS_EML_PrivacyEmailAccountResource_Requests.tf index e26ff38..72a319f 100644 --- a/EMEA_PROD/slo/VCIS_EML_PrivacyEmailAccountResource_Requests.tf +++ b/EMEA_PROD/slo/VCIS_EML_PrivacyEmailAccountResource_Requests.tf @@ -3,7 +3,7 @@ module VCIS_EML_OfficeServiceV1_Requests { source = "../../_dynatrace-base-modules/dynatrace-service-level-objective" - name = "VCIS - PrivacyEmailAccountResource" + name = "VCIS-EML - PrivacyEmailAccountResource - Requests" description = "Success rate of PrivacyEmailAccountResource" diff --git a/EMEA_PROD/slo/VCIS_VPS_VehicleProfileResource.tf b/EMEA_PROD/slo/VCIS_VPS_VehicleProfileResource.tf index ae5d19e..89c14c6 100644 --- a/EMEA_PROD/slo/VCIS_VPS_VehicleProfileResource.tf +++ b/EMEA_PROD/slo/VCIS_VPS_VehicleProfileResource.tf @@ -3,7 +3,7 @@ module VCIS_VPS_VehicleProfileResource { source = "../../_dynatrace-base-modules/dynatrace-service-level-objective" - name = "VCIS - VehicleProfileResource" + name = "VCIS-VPS - VehicleProfileResource" description = "VehicleProfileResource" diff --git a/EMEA_PROD/slo/VCIS_VPS_VehicleProfileResource_Requests.tf b/EMEA_PROD/slo/VCIS_VPS_VehicleProfileResource_Requests.tf index 9f86a36..6da3131 100644 --- a/EMEA_PROD/slo/VCIS_VPS_VehicleProfileResource_Requests.tf +++ b/EMEA_PROD/slo/VCIS_VPS_VehicleProfileResource_Requests.tf @@ -3,7 +3,7 @@ module VCIS_VPS_VehicleProfileResource_Requests { source = "../../_dynatrace-base-modules/dynatrace-service-level-objective" - name = "VCIS - VehicleProfileResource" + name = "VCIS-VPS - VehicleProfileResource - Requests" description = "Success rate of VehicleProfileResource" diff --git a/NA_PROD/slo/VCIS_EML_EmailAccountResourceV2.tf b/NA_PROD/slo/VCIS_EML_EmailAccountResourceV2.tf index 9db5c50..e26dbc6 100644 --- a/NA_PROD/slo/VCIS_EML_EmailAccountResourceV2.tf +++ b/NA_PROD/slo/VCIS_EML_EmailAccountResourceV2.tf @@ -3,7 +3,7 @@ module VCIS_EML_EmailAccountResourceV2 { source = "../../_dynatrace-base-modules/dynatrace-service-level-objective" - name = "VCIS - EmailAccountResourceV2" + name = "VCIS-EML - EmailAccountResourceV2" description = "EmailAccountResourceV2" diff --git a/NA_PROD/slo/VCIS_EML_EmailAccountResourceV2_Requests.tf b/NA_PROD/slo/VCIS_EML_EmailAccountResourceV2_Requests.tf index c72c5b1..02f3295 100644 --- a/NA_PROD/slo/VCIS_EML_EmailAccountResourceV2_Requests.tf +++ b/NA_PROD/slo/VCIS_EML_EmailAccountResourceV2_Requests.tf @@ -3,7 +3,7 @@ module VCIS_EML_EmailAccountResourceV2_Requests { source = "../../_dynatrace-base-modules/dynatrace-service-level-objective" - name = "VCIS - EmailAccountResourceV2" + name = "VCIS-EML - EmailAccountResourceV2 - Requests" description = "Success rate of EmailAccountResourceV2" diff --git a/NA_PROD/slo/VCIS_EML_EmailProvidersResource.tf b/NA_PROD/slo/VCIS_EML_EmailProvidersResource.tf index 613a0f3..59c84bf 100644 --- a/NA_PROD/slo/VCIS_EML_EmailProvidersResource.tf +++ b/NA_PROD/slo/VCIS_EML_EmailProvidersResource.tf @@ -3,7 +3,7 @@ module VCIS_EML_EmailProvidersResource { source = "../../_dynatrace-base-modules/dynatrace-service-level-objective" - name = "VCIS - EmailProvidersResource" + name = "VCIS-EML - EmailProvidersResource" description = "EmailProvidersResource" diff --git a/NA_PROD/slo/VCIS_EML_EmailProvidersResource_Requests.tf b/NA_PROD/slo/VCIS_EML_EmailProvidersResource_Requests.tf index d1d55b7..2e09cd5 100644 --- a/NA_PROD/slo/VCIS_EML_EmailProvidersResource_Requests.tf +++ b/NA_PROD/slo/VCIS_EML_EmailProvidersResource_Requests.tf @@ -3,7 +3,7 @@ module VCIS_EML_EmailProvidersResource_Requests { source = "../../_dynatrace-base-modules/dynatrace-service-level-objective" - name = "VCIS - EmailProvidersResource" + name = "VCIS-EML - EmailProvidersResource - Requests" description = "Success rate of EmailProvidersResource" diff --git a/NA_PROD/slo/VCIS_EML_EmailResource.tf b/NA_PROD/slo/VCIS_EML_EmailResource.tf index 37e8309..78643f7 100644 --- a/NA_PROD/slo/VCIS_EML_EmailResource.tf +++ b/NA_PROD/slo/VCIS_EML_EmailResource.tf @@ -3,7 +3,7 @@ module VCIS_EML_EmailResource { source = "../../_dynatrace-base-modules/dynatrace-service-level-objective" - name = "VCIS - EmailResource" + name = "VCIS-EML - EmailResource" description = "EmailResource" diff --git a/NA_PROD/slo/VCIS_EML_EmailResource_Requests.tf b/NA_PROD/slo/VCIS_EML_EmailResource_Requests.tf index 34da3b2..5382f7b 100644 --- a/NA_PROD/slo/VCIS_EML_EmailResource_Requests.tf +++ b/NA_PROD/slo/VCIS_EML_EmailResource_Requests.tf @@ -3,7 +3,7 @@ module VCIS_EML_EmailResource_Requests { source = "../../_dynatrace-base-modules/dynatrace-service-level-objective" - name = "VCIS - EmailResource" + name = "VCIS-EML - EmailResource - Requests" description = "Success rate of EmailResource" diff --git a/NA_PROD/slo/VCIS_VPS_VehicleProfileResource.tf b/NA_PROD/slo/VCIS_VPS_VehicleProfileResource.tf index ae5d19e..89c14c6 100644 --- a/NA_PROD/slo/VCIS_VPS_VehicleProfileResource.tf +++ b/NA_PROD/slo/VCIS_VPS_VehicleProfileResource.tf @@ -3,7 +3,7 @@ module VCIS_VPS_VehicleProfileResource { source = "../../_dynatrace-base-modules/dynatrace-service-level-objective" - name = "VCIS - VehicleProfileResource" + name = "VCIS-VPS - VehicleProfileResource" description = "VehicleProfileResource" diff --git a/NA_PROD/slo/VCIS_VPS_VehicleProfileResource_Requests.tf b/NA_PROD/slo/VCIS_VPS_VehicleProfileResource_Requests.tf index 9f86a36..6da3131 100644 --- a/NA_PROD/slo/VCIS_VPS_VehicleProfileResource_Requests.tf +++ b/NA_PROD/slo/VCIS_VPS_VehicleProfileResource_Requests.tf @@ -3,7 +3,7 @@ module VCIS_VPS_VehicleProfileResource_Requests { source = "../../_dynatrace-base-modules/dynatrace-service-level-objective" - name = "VCIS - VehicleProfileResource" + name = "VCIS-VPS - VehicleProfileResource - Requests" description = "Success rate of VehicleProfileResource"