Skip to content

Commit

Permalink
Update README
Browse files Browse the repository at this point in the history
  • Loading branch information
Rizal Widyarta Gowandy committed Jan 31, 2021
1 parent e473602 commit 1e32e63
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
Expand All @@ -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",
]
Expand Down

0 comments on commit 1e32e63

Please sign in to comment.