diff --git a/README.md b/README.md index 0537690..ef8189d 100644 --- a/README.md +++ b/README.md @@ -6,8 +6,8 @@ Terraform module to interact with NewRelic. ```hcl data "newrelic_entity" "app_grpc" { - name = "app_grpc" # Replace with your service name. + name = "app_grpc" domain = "APM" type = "APPLICATION" } @@ -16,16 +16,16 @@ module "grpc_dashboard" { source = "git::https://github.com/rizalgowandy/terraform-peractio-newrelic?ref=v0.0.2" # Replace with your service name. - service_name = "app_grpc" + service_name = "app_grpc" # Replace with your application id. application_id = data.newrelic_entity.app_grpc.application_id - # Replace with your metric name. - event_name = "grpc_performance" + # Replace with your metric name. + event_name = "grpc_performance" - # Replace with your metric method name. - event_methods = [ + # Replace with your metric method name. + event_methods = [ "/inventory.v1.Inventory/GetProducts", "/inventory.v1.Inventory/CheckStocks", ]