|
1 | 1 | #!/bin/bash
|
2 | 2 | ACT_VERSION="v0.4.0"
|
3 |
| -ACT_LAST_COMMIT="2552f1fb18d9c714f3aeb8c51342eff87ddd418d" |
| 3 | +ACT_LAST_COMMIT="765cefbe0ecc88542b08cc2ec8f02fc69846aa2c" |
4 | 4 | USER_CONFIG="$HOME/.appdynamics/act/config.sh"
|
5 | 5 | GLOBAL_CONFIG="/etc/appdynamics/act/config.sh"
|
6 | 6 | CONFIG_CONTROLLER_COOKIE_LOCATION="/tmp/appdynamics-controller-cookie.txt"
|
@@ -1049,14 +1049,14 @@ describe node_markhistorical << EOF
|
1049 | 1049 | Mark Nodes as Historical. Provide a comma separated list of node ids.
|
1050 | 1050 | EOF
|
1051 | 1051 | function node_get {
|
1052 |
| - apiCall -X GET "/controller/rest/applications/\{{a}}/nodes/\{{n}}" "$@" |
| 1052 | + apiCall -X GET '/controller/rest/applications/{{a}}/nodes/{{n}}' "$@" |
1053 | 1053 | }
|
1054 | 1054 | register node_get Retrieve Node Information by Node Name
|
1055 | 1055 | describe node_get << EOF
|
1056 | 1056 | Retrieve Node Information by Node Name. Provide the application and the node as parameters
|
1057 | 1057 | EOF
|
1058 | 1058 | function node_list {
|
1059 |
| - apiCall -X GET "/controller/rest/applications/\{{a}}/nodes" "$@" |
| 1059 | + apiCall -X GET '/controller/rest/applications/{{a}}/nodes' "$@" |
1060 | 1060 | }
|
1061 | 1061 | register node_list Retrieve Node Information for All Nodes in a Business Application
|
1062 | 1062 | describe node_list << EOF
|
@@ -1290,7 +1290,7 @@ Copy healthrules from one application to another. Provide the source application
|
1290 | 1290 | If you provide ("-n") only the named health rule will be copied.
|
1291 | 1291 | EOF
|
1292 | 1292 | function event_create {
|
1293 |
| - apiCall -X POST "/controller/rest/applications/\{{a}}/events?summary=\{{s}}&comment=\{{c?}}&eventtype=\{{e}}&severity=\{{l}}&bt=&\{{b?}}node=\{{n?}}&tier=\{{t?}}" "$@" |
| 1293 | + apiCall -X POST "/controller/rest/applications/{{a}}/events?summary={{s}}&comment={{c?}}&eventtype={{e}}&severity={{l}}&bt=&{{b?}}node={{n?}}&tier={{t?}}" "$@" |
1294 | 1294 | }
|
1295 | 1295 | register event_create Create a custom event for a given application
|
1296 | 1296 | describe event_create << EOF
|
@@ -1398,21 +1398,21 @@ describe bizjourney_list << EOF
|
1398 | 1398 | List all business journeys. This command requires no further arguments.
|
1399 | 1399 | EOF
|
1400 | 1400 | function tier_nodes {
|
1401 |
| - apiCall -X GET "/controller/rest/applications/\{{a}}/tiers/\{{t}}/nodes" "$@" |
| 1401 | + apiCall -X GET '/controller/rest/applications/{{a}}/tiers/{{t}}/nodes' "$@" |
1402 | 1402 | }
|
1403 | 1403 | register tier_nodes" Retrieve Node Information for All Nodes in a Tier"
|
1404 | 1404 | describe tier_nodes << EOF
|
1405 | 1405 | Retrieve Node Information for All Nodes in a Tier. Provide the application and the tier as parameters
|
1406 | 1406 | EOF
|
1407 | 1407 | function tier_get {
|
1408 |
| - apiCall -X GET "/controller/rest/applications/\{{a}}/tiers/\{{t}}" "$@" |
| 1408 | + apiCall -X GET '/controller/rest/applications/{{a}}/tiers/{{t}}' "$@" |
1409 | 1409 | }
|
1410 | 1410 | register tier_get Retrieve Tier Information by Tier Name
|
1411 | 1411 | describe tier_get << EOF
|
1412 | 1412 | Retrieve Tier Information by Tier Name. Provide the application and the tier as parameters
|
1413 | 1413 | EOF
|
1414 | 1414 | function tier_list {
|
1415 |
| - apiCall -X GET "/controller/rest/applications/\{{a}}/tiers" "$@" |
| 1415 | + apiCall -X GET '/controller/rest/applications/{{a}}/tiers' "$@" |
1416 | 1416 | }
|
1417 | 1417 | register tier_list List all tiers for a given application
|
1418 | 1418 | describe tier_list << EOF
|
|
0 commit comments