modul name fix
parent
92d32b8a3f
commit
4b66f9a8d7
|
|
@ -11,50 +11,20 @@ module TP_Mobile_Login {
|
|||
filter = ""
|
||||
|
||||
#metric expression of the calculation as done in data explorer ui
|
||||
metric_expression = <<-EOT
|
||||
(100)*
|
||||
((builtin:service.keyRequest.errors.server.successCount:filter(
|
||||
and(
|
||||
or(
|
||||
in(
|
||||
"dt.entity.service_method",
|
||||
entitySelector(
|
||||
"type(service_method),
|
||||
metric_expression = <<EOT
|
||||
(100)-(builtin:service.keyRequest.errors.fivexx.rate:filter(and(or(in("dt.entity.service_method",entitySelector("type(service_method),
|
||||
fromRelationship.isServiceMethodOfService(
|
||||
type(~"SERVICE~"),entityName.in(
|
||||
~"btc-user-composite-service - PROD~",
|
||||
~"btc-connected-oauth-service - PROD~"
|
||||
)
|
||||
)
|
||||
,entityName.in(
|
||||
~"GET /api/v1/presentation/oauth/config~",
|
||||
~"GET /api/v1/presentation/profile-tab~",
|
||||
~"POST /api/v1/oauth/token/identifier~"
|
||||
)")
|
||||
)
|
||||
))):splitBy())
|
||||
/
|
||||
(builtin:service.keyRequest.count.server:filter(
|
||||
and(
|
||||
or(
|
||||
in(
|
||||
"dt.entity.service_method",
|
||||
entitySelector(
|
||||
"type(service_method),
|
||||
fromRelationship.isServiceMethodOfService(
|
||||
type(~"SERVICE~"),entityName.in(
|
||||
~"btc-user-composite-service - PROD~",
|
||||
~"btc-connected-oauth-service - PROD~"
|
||||
)
|
||||
)
|
||||
,entityName.in(
|
||||
~"GET /api/v1/presentation/oauth/config~",
|
||||
~"GET /api/v1/presentation/profile-tab~",
|
||||
~"POST /api/v1/oauth/token/identifier~"
|
||||
)")
|
||||
)
|
||||
))):splitBy()))
|
||||
EOT
|
||||
,entityName.in(
|
||||
~"GET /api/v1/presentation/oauth/config~",
|
||||
~"GET /api/v1/presentation/profile-tab~",
|
||||
~"POST /api/v1/oauth/token/identifier~"
|
||||
)"))))):splitBy())
|
||||
EOT
|
||||
|
||||
#if not set (removed) it's defaulted to "-1d"
|
||||
timeframe = "-1d"
|
||||
|
|
|
|||
|
|
@ -30,9 +30,15 @@ module TP_Mobile_Mapping {
|
|||
~"GET /api/v2/presentation/users/validate~",
|
||||
~"POST /api/v2/vehicles/<VIN>/primary~",
|
||||
~"POST /api/v2/vehicles/<VIN>/primary/map~",
|
||||
~"POST /api/v1/vehicles/<VIN>/validate-security-code~",
|
||||
~"POST /api/v1/vehicles/<VIN>/resend-security-code~",
|
||||
~"DELETE /api/v1/vehicles/<VIN>~"
|
||||
~"POST /api/v1/vehicles/<VIN>/validate-security-code~",
|
||||
~"POST /api/v1/vehicles/<VIN>/resend-security-code~",
|
||||
~"DELETE /api/v1/vehicles/<VIN>~",
|
||||
~"POST /api/v3/mappings/create~",
|
||||
~"POST /api/v3/mappings/continue~",
|
||||
~"POST /api/v3/mappings/validate-security-code~",
|
||||
~"POST /api/v3/mappings/resend-security-code~",
|
||||
~"GET /api/v3/images/<image>~",
|
||||
~"DELETE /api/v3/mappings~"
|
||||
)")
|
||||
)
|
||||
))):splitBy())
|
||||
|
|
@ -54,9 +60,15 @@ module TP_Mobile_Mapping {
|
|||
~"GET /api/v2/presentation/users/validate~",
|
||||
~"POST /api/v2/vehicles/<VIN>/primary~",
|
||||
~"POST /api/v2/vehicles/<VIN>/primary/map~",
|
||||
~"POST /api/v1/vehicles/<VIN>/validate-security-code~",
|
||||
~"POST /api/v1/vehicles/<VIN>/resend-security-code~",
|
||||
~"DELETE /api/v1/vehicles/<VIN>~"
|
||||
~"POST /api/v1/vehicles/<VIN>/validate-security-code~",
|
||||
~"POST /api/v1/vehicles/<VIN>/resend-security-code~",
|
||||
~"DELETE /api/v1/vehicles/<VIN>~",
|
||||
~"POST /api/v3/mappings/create~",
|
||||
~"POST /api/v3/mappings/continue~",
|
||||
~"POST /api/v3/mappings/validate-security-code~",
|
||||
~"POST /api/v3/mappings/resend-security-code~",
|
||||
~"GET /api/v3/images/<image>~",
|
||||
~"DELETE /api/v3/mappings~"
|
||||
)")
|
||||
)
|
||||
))):splitBy()))
|
||||
|
|
|
|||
|
|
@ -0,0 +1,33 @@
|
|||
module TP_NEW_NAME_nocheinmal {
|
||||
|
||||
source = "../../_dynatrace-base-modules/dynatrace-service-level-objective"
|
||||
|
||||
|
||||
name = "TP_NEW NAME nocheinmal"
|
||||
|
||||
description = "qx05588 Ulrich Blecha"
|
||||
|
||||
|
||||
|
||||
#entity selector object
|
||||
filter = "type(\"SERVICE_METHOD\")"
|
||||
|
||||
|
||||
#metric expression of the calculation as done in data explorer ui
|
||||
metric_expression = "(100)-(builtin:service.keyRequest.errors.server.rate:filter(and(in(\"dt.entity.service_method\",entitySelector(\"type(service_method),entityId(~\"SERVICE_METHOD-A77E2B0BA1B488DB~\")\")))):splitBy():avg:auto)"
|
||||
|
||||
|
||||
#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 = 90
|
||||
#if not set(removed) it's defaulted to 98
|
||||
warning = 95
|
||||
#if not set(removed) it's defaulted to 99
|
||||
|
||||
}
|
||||
|
|
@ -1,4 +1,4 @@
|
|||
module Wirkkette__Personal_eSIM__-_Reliability_of_key_requests {
|
||||
module TP_Vehicle_eSIM {
|
||||
|
||||
source = "../../_dynatrace-base-modules/dynatrace-service-level-objective"
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue