Skip to content

Commit

Permalink
Docs-> deploy test app
Browse files Browse the repository at this point in the history
  • Loading branch information
asalan316 committed Mar 20, 2024
1 parent a26b4f0 commit 44d02ff
Show file tree
Hide file tree
Showing 2 changed files with 83 additions and 0 deletions.
61 changes: 61 additions & 0 deletions src/acceptance/assets/app/go_app/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,61 @@
# Deploy Test Application with Custom Metrics

## Sample Autoscaling Policy

Autoscaling policy is available at [test-policy.json](example/test-policy.json)

```json
{
"instance_min_count": 1,
"instance_max_count": 2,
"scaling_rules": [
{
"metric_type": "review_count",
"breach_duration_secs": 60,
"threshold": 200,
"operator": ">=",
"cool_down_secs": 60,
"adjustment": "+1"
},
{
"metric_type": "review_count",
"breach_duration_secs": 60,
"threshold": 100,
"operator": "<=",
"cool_down_secs": 60,
"adjustment": "-1"
}
]
}
```

## Deploy Test Application

Prepare acceptance_config.json. Example [acceptance_config.json](../../../example_config/acceptance_config.json)

```bash
CONFIG=$PWD/acceptance_config.json make deploy-test-app && \
#attach autoscaling policy (as defined above)
cf attach-autoscaling-policy test_app test-policy.json && \
# show autoscaling policy using autoscaler cli plugin
cf asp test_app
```

## Send Custom Metrics

```bash
# scale out
curl https://test_app.cf.stagingazure.hanavlab.ondemand.com/custom-metrics/mtls/review_count/201

# scale In
curl https://test_app.cf.stagingazure.hanavlab.ondemand.com/custom-metrics/mtls/review_count/78
```


## View Metrics in Log Cache

Metrics are ingested into log-cache and can be viewed using [CF Log Cache CLI Plugin](https://github.com/cloudfoundry/log-cache-cli)

```bash
cf tail --name-filter="review_count" test_app --follow
```
22 changes: 22 additions & 0 deletions src/acceptance/assets/app/go_app/example/test-policy.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
{
"instance_min_count": 1,
"instance_max_count": 2,
"scaling_rules": [
{
"metric_type": "review_count",
"breach_duration_secs": 60,
"threshold": 200,
"operator": ">=",
"cool_down_secs": 60,
"adjustment": "+1"
},
{
"metric_type": "review_count",
"breach_duration_secs": 60,
"threshold": 100,
"operator": "<=",
"cool_down_secs": 60,
"adjustment": "-1"
}
]
}

0 comments on commit 44d02ff

Please sign in to comment.