Skip to content

Commit

Permalink
Improvement (#121)
Browse files Browse the repository at this point in the history
  • Loading branch information
Zornicaster authored Nov 22, 2024
1 parent 3ac1e92 commit 6d196d3
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 3 deletions.
7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ Table of Contents
* [Scripting](#scripting)
* [Automation Pilot](#automation-pilot)
* [Utility Commands](#utility-commands)
* [Availability Check](#availability-check)
* [Resources](#resources)
* [Known Issues](#known-issues)
* [How to obtain support](#how-to-obtain-support)
Expand Down Expand Up @@ -127,6 +128,12 @@ After importing, you'll see a new catalog tile - **Automation Pilot Examples**.
| [Trigger and Collect Outputs Batching](trigger-and-collect-outputs-batching) | Trigger Multiple Executions in Batches and Collect their Outputs |
| [Pretty Print XML](pretty-print-xml) | Pretty Print XML Data |

### Availability Check

| Example | Description |
|---------|-------------|
| [Advanced Availability Check](advanced-availability-check) | Enables comprehensive monitoring, tracking of Service Level Agreements (SLAs) and data visualization within the Dynatrace platform. |

## Resources

Check out the following resources if you want to get familiar with Automation Pilot:
Expand Down
2 changes: 1 addition & 1 deletion advanced-availability-check/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Table of Contents

## Description

**Advanced Availability Check** is designed to assess the availability of a given service and subsequently report the results to Dynatrace. This enables comprehensive monitoring, tracking of Service Level Agreements (SLAs), and data visualization within the Dynatrace platform.
**Advanced Availability Check** is designed to assess the availability of a given service and subsequently report the results to Dynatrace. This enables comprehensive monitoring, tracking of Service Level Agreements (SLAs) and data visualization within the Dynatrace platform.

For demonstration and testing purposes, this example utilizes the HTTP Bin service. It is a simple HTTP request and response service, which allows for easy testing and exploration of HTTP requests and responses. However, this example can be readily adapted to fit specific customer requirements and use cases with different services.

Expand Down
4 changes: 2 additions & 2 deletions advanced-availability-check/catalog.json
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@
"listeners": [
{
"status": "FAILED",
"execute": "dynatrace-<<<TENANT_ID>>>:PushDynatraceMetric:1",
"execute": "dynatrace-sapcp:PushDynatraceMetric:1",
"input": {
"apiToken": "$(.execution.input.dynatraceApiToken)",
"dataPoints": "$(.execution.inut.dynatraceDataPoints)",
Expand All @@ -101,7 +101,7 @@
},
{
"status": "FINISHED",
"execute": "dynatrace-<<<TENANT_ID>>>:PushDynatraceMetric:1",
"execute": "dynatrace-sapcp:PushDynatraceMetric:1",
"input": {
"apiToken": "$(.execution.input.dynatraceApiToken)",
"dataPoints": "$(.execution.inut.dynatraceDataPoints)",
Expand Down

0 comments on commit 6d196d3

Please sign in to comment.