Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[2201.10.x] Rearrange observability bbe menus and fix content #5660

Merged
merged 2 commits into from
Sep 19, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion examples/gauge-metrics/gauge_metrics.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Gauge-based metrics

Ballerina supports Observability out of the box and Metrics is one of the three important aspects of the bservability. To observe Ballerina code, the build time flag `--observability-included` should be given along with the `Config.toml` file when starting the service. The `Config.toml` file contains the required runtime configurations related to observability.
Ballerina supports observability out of the box and metrics is one of the three key components of observability. To observe Ballerina code, the build time flag `--observability-included` should be given along with the `Config.toml` file when starting the service. The `Config.toml` file should contain the required runtime configurations related to observability.

The developers can define and use metrics to measure their own logic. A gauge is one type of the metrics that is supported by default in Ballerina, and it represents a single numerical value that can arbitrarily go up and down, and also based on the statistics configurations provided to the Gauge, it can also report the statistics such as max, min, mean, percentiles, etc.

Expand Down
18 changes: 9 additions & 9 deletions examples/index.json
Original file line number Diff line number Diff line change
Expand Up @@ -4917,15 +4917,6 @@
"disableVerificationReason": "Includes ballerinax components",
"disablePlayground": true,
"isLearnByExample": false
},
{
"name": "Counter-based metrics",
"url": "counter-metrics",
"verifyBuild": false,
"verifyOutput": false,
"disableVerificationReason": "Includes ballerinax components",
"disablePlayground": true,
"isLearnByExample": false
}
]
},
Expand All @@ -4942,6 +4933,15 @@
"disableVerificationReason": "Includes ballerinax components",
"disablePlayground": true,
"isLearnByExample": false
},
{
"name": "Counter-based metrics",
"url": "counter-metrics",
"verifyBuild": false,
"verifyOutput": false,
"disableVerificationReason": "Includes ballerinax components",
"disablePlayground": true,
"isLearnByExample": false
}
]
}
Expand Down
Loading