Skip to content
Open
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
6 changes: 4 additions & 2 deletions practices/observability.md
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,8 @@ The [Site Reliability Workbook](https://landing.google.com/sre/workbook/chapters

The [SRE book](https://landing.google.com/sre/sre-book/chapters/monitoring-distributed-systems/) discusses two types of monitoring:

**Clear-box monitoring**<br/>
### Clear-box monitoring

> Monitoring based on metrics exposed by the internals of the system, including logs, interfaces like the Java Virtual Machine Profiling Interface, or an HTTP handler that emits internal statistics.

Examples include:
Expand All @@ -189,7 +190,8 @@ Examples include:
- Publishing internal metrics from a component as CloudWatch [custom metrics](https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/publishingMetrics.html), either by pushing them to CloudWatch using the SDK or by using [metric filters](https://docs.aws.amazon.com/AmazonCloudWatch/latest/logs/MonitoringLogData.html#search-filter-concepts) to extract metrics from application logs in [CloudWatch Logs](https://docs.aws.amazon.com/AmazonCloudWatch/latest/logs/WhatIsCloudWatchLogs.html).
- Using [Java Management Extensions](https://en.wikipedia.org/wiki/Java_Management_Extensions) (JMX) to collect internal metrics from an instrumented Java component.

**Opaque-box monitoring**<br/>
### Opaque-box monitoring

> Testing externally-visible behaviour as a user would see it.

Examples include:
Expand Down
4 changes: 2 additions & 2 deletions scripts/markdown-check-format.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@

files=$((git diff --diff-filter=ACMRT --name-only origin/${BRANCH_NAME:-main}.. "*.md"; git diff --name-only "*.md") | sort | uniq)
if [ -n "$files" ]; then
image=ghcr.io/igorshubovych/markdownlint-cli@sha256:df7ce7cdcdb525d52a89d7aab17c507d49adceaddf2b767d3ed799c9537ded80 # v0.32.2
image=ghcr.io/igorshubovych/markdownlint-cli@sha256:905baf9f6bd11da2ede8c394882c616509385f24b8b8d54fff6e111be88f39de # v0.49.1
docker run --rm \
-v $PWD:/workdir \
$image \
$files \
--disable MD013 MD033
--disable MD013 MD033 MD055 MD056 MD058 MD059 MD060
fi