Skip to content

Commit aa63992

Browse files
authored
fix list rendering (#232)
Fix some lists that aren't rendering correctly on a few pages.
1 parent 5aa3949 commit aa63992

File tree

12 files changed

+15
-0
lines changed

12 files changed

+15
-0
lines changed

docs/asl/ref/clamp-max.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ and handling occasional data spikes.
2424
## Problem and Solution
2525

2626
The axis parameters for controlling [axis bounds](../../api/graph/axis-bounds.md) have limitations:
27+
2728
- They apply to everything on the axis and cannot target specific lines
2829
- For data with occasional spikes, they can hide important details in the rest of the data
2930

docs/asl/ref/cq.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ Apply a common application filter to an expression with multiple queries:
2626
@@@
2727

2828
This transforms:
29+
2930
- `name,ssCpuUser,:eq` becomes `name,ssCpuUser,:eq,nf.app,alerttest,:eq,:and`
3031
- `name,DiscoveryStatus_UP,:eq` becomes `name,DiscoveryStatus_UP,:eq,nf.app,alerttest,:eq,:and`
3132

docs/asl/ref/derivative.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ converting cumulative values back to rates or identifying trends in the data.
1515
## Behavior
1616

1717
Each output value represents the difference between consecutive datapoints:
18+
1819
- `derivative[i] = input[i] - input[i-1]`
1920
- The first datapoint will typically be NaN since there's no previous value
2021
- Missing values (NaN) are handled as 0 for the calculation
@@ -32,11 +33,13 @@ Integral Then Derivative: /api/v1/graph?w=200&h=125&s=e-3h&e=2012-01-01T07:00&tz
3233
## Relationship with Integral
3334

3435
`:derivative` and `:integral` have an asymmetric relationship:
36+
3537
- Applying `:integral` then `:derivative` approximates the original signal
3638
- Applying `:derivative` then `:integral` does NOT restore the original signal
3739

3840
The derivative operation loses information that cannot be recovered with integral. For example,
3941
with a constant input like `1`:
42+
4043
- `1,:derivative` produces `0` (derivative of constant is zero)
4144
- `0,:integral` produces `0` (integral of zero stays zero)
4245
- The original constant value `1` is permanently lost

docs/asl/ref/des-simple.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ the default values may not be optimal for all use cases.
2020
## Default Configuration
2121

2222
This operator is equivalent to calling `:des` with these default parameters:
23+
2324
- **Training**: 10 data points
2425
- **Alpha**: 0.1 (level smoothing factor)
2526
- **Beta**: 0.5 (trend smoothing factor)

docs/asl/ref/div.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ Compute a new time series where each interval has the value `(a / b)` where `a`
99
and `b` are the corresponding intervals in the input time series.
1010

1111
Special handling for division by zero:
12+
1213
- If both `a` and `b` are 0, the result is 0 (instead of NaN)
1314
- If only `b` (divisor) is 0, the result is NaN
1415

docs/asl/ref/eureka-avg.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ through Eureka.
2323
## When to Use
2424

2525
This operator is specifically designed for scenarios where:
26+
2627
- Metrics represent incoming traffic routed through Eureka service discovery
2728
- You want average per active instance, not per total deployed instance
2829
- The goal is to measure per-node load for traffic-bearing services
@@ -47,6 +48,7 @@ Computing average requests per second per active instance:
4748
## Infrastructure Tag Scoping
4849

4950
The operator automatically uses common tags to ensure the denominator matches the numerator scope:
51+
5052
- `nf.app` - Application name
5153
- `nf.cluster` - Cluster identifier
5254
- `nf.region` - AWS region

docs/asl/ref/limit.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ when dealing with large result sets.
1818
## Selection Behavior
1919

2020
The limit operation selects the first N series based on the current ordering:
21+
2122
- If no sort is specified, series are ordered by legend text (alphabetical)
2223
- If [:sort](sort.md) is used, series are ordered by the specified statistic
2324
- The [:order](order.md) operation controls ascending vs. descending sort direction

docs/asl/ref/percentiles-heatmap.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ name,requestLatency,:eq,(,percentile,),:by,:heatmap
3131
```
3232

3333
The resulting heatmap shows:
34+
3435
- **X-axis**: Time progression
3536
- **Y-axis**: Percentile levels (P50, P90, P95, P99, etc.)
3637
- **Color intensity**: Magnitude of values at each percentile/time combination

docs/asl/ref/sdes-simple.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ stability than the standard [:des-simple](des-simple.md) operator.
1515
## Default Configuration
1616

1717
This operator is equivalent to calling `:sdes` with these default parameters:
18+
1819
- **Training**: 10 data points
1920
- **Alpha**: 0.1 (level smoothing factor)
2021
- **Beta**: 0.5 (trend smoothing factor)

docs/asl/ref/sdes.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ Result:
3737
```
3838

3939
Where:
40+
4041
- **A**: Both functions wait for training window boundary
4142
- **T1/T2**: Training phases for each function
4243
- **P1/P2**: Prediction phases alternating between functions

0 commit comments

Comments
 (0)