Compare commits
1 Commits
230624-050
...
230601-155
| Author | SHA1 | Date |
|---|---|---|
|
|
d222c3b064 |
|
|
@ -0,0 +1,11 @@
|
|||
terraform {
|
||||
required_providers {
|
||||
dynatrace = {
|
||||
source = "dynatrace-oss/dynatrace"
|
||||
version = "1.30.2"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
provider "dynatrace" {
|
||||
}
|
||||
|
|
@ -0,0 +1,32 @@
|
|||
# ID calc:service.apigw2storesubmit_requestcount
|
||||
# ATTENTION FLAWED SETTINGS The metric needs to either get limited by specifying a Management Zone or by specifying one or more conditions related to SERVICE_DISPLAY_NAME, SERVICE_PUBLIC_DOMAIN_NAME, SERVICE_WEB_APPLICATION_ID, SERVICE_WEB_CONTEXT_ROOT, SERVICE_WEB_SERVER_NAME, SERVICE_WEB_SERVICE_NAME, SERVICE_WEB_SERVICE_NAMESPACE, REMOTE_SERVICE_NAME, REMOTE_ENDPOINT, AZURE_FUNCTIONS_SITE_NAME, AZURE_FUNCTIONS_FUNCTION_NAME, CTG_GATEWAY_URL, CTG_SERVER_NAME, ACTOR_SYSTEM, ESB_APPLICATION_NAME, SERVICE_TAG, SERVICE_TYPE, PROCESS_GROUP_TAG or PROCESS_GROUP_NAME
|
||||
resource "dynatrace_calculated_service_metric" "APIGW2StoreSubmit_RequestCount" {
|
||||
name = "APIGW2StoreSubmit_RequestCount"
|
||||
enabled = true
|
||||
entity_id = "SERVICE-1F5932B3E7271305"
|
||||
metric_key = "calc:service.apigw2storesubmit_requestcount"
|
||||
unit = "COUNT"
|
||||
conditions {
|
||||
condition {
|
||||
attribute = "SERVICE_REQUEST_ATTRIBUTE"
|
||||
comparison {
|
||||
negate = false
|
||||
number_request_attribute {
|
||||
match_on_child_calls = false
|
||||
operator = "EXISTS"
|
||||
request_attribute = "APIGW2AmStore"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
dimension_definition {
|
||||
name = "Dimension"
|
||||
dimension = "{Request:Name}"
|
||||
top_x = 10
|
||||
top_x_aggregation = "SINGLE_VALUE"
|
||||
top_x_direction = "DESCENDING"
|
||||
}
|
||||
metric_definition {
|
||||
metric = "REQUEST_COUNT"
|
||||
}
|
||||
}
|
||||
File diff suppressed because one or more lines are too long
|
|
@ -0,0 +1,11 @@
|
|||
terraform {
|
||||
required_providers {
|
||||
dynatrace = {
|
||||
source = "dynatrace-oss/dynatrace"
|
||||
version = "1.30.2"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
provider "dynatrace" {
|
||||
}
|
||||
|
|
@ -0,0 +1,9 @@
|
|||
|
||||
terraform {
|
||||
required_providers {
|
||||
dynatrace = {
|
||||
source = "dynatrace-oss/dynatrace"
|
||||
version = "1.30.2"
|
||||
}
|
||||
}
|
||||
}
|
||||
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue