Skip to content

Commit fec9ae9

Browse files
committed
fix build errors
1 parent 8a8297d commit fec9ae9

File tree

6 files changed

+8
-9
lines changed

6 files changed

+8
-9
lines changed

docs/asl/ref/call.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ This takes the list `(a)` and executes it as a program, pushing `a` onto the sta
2929
Executing a program to square the top stack item:
3030

3131
@@@ atlas-example { hilite=:call }
32-
Before: /api/v1/graph?w=200&h=125&s=e-3h&e=2014-02-20T15:01&tz=US/Pacific&q=name,sps,:eq,:sum,(,:dup,:mul,)
32+
Before: /api/v1/graph?w=200&h=125&s=e-3h&e=2014-02-20T15:01&tz=US/Pacific&q=name,sps,:eq,:sum
3333
After: /api/v1/graph?w=200&h=125&s=e-3h&e=2014-02-20T15:01&tz=US/Pacific&q=name,sps,:eq,:sum,(,:dup,:mul,),:call
3434
@@@
3535

docs/asl/ref/fcall.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,8 +48,8 @@ This example:
4848
Executing a stored function to square the top stack item:
4949

5050
@@@ atlas-example { hilite=:fcall }
51-
Before: /api/v1/graph?w=200&h=125&s=e-3h&e=2014-02-20T15:01&tz=US/Pacific&q=square,(,dup,:mul,),:set,name,sps,:eq,:sum
52-
After: /api/v1/graph?w=200&h=125&s=e-3h&e=2014-02-20T15:01&tz=US/Pacific&q=square,(,dup,:mul,),:set,name,sps,:eq,:sum,square,:fcall
51+
Before: /api/v1/graph?w=200&h=125&s=e-3h&e=2014-02-20T15:01&tz=US/Pacific&q=square,(,:dup,:mul,),:set,name,sps,:eq,:sum
52+
After: /api/v1/graph?w=200&h=125&s=e-3h&e=2014-02-20T15:01&tz=US/Pacific&q=square,(,:dup,:mul,),:set,name,sps,:eq,:sum,square,:fcall
5353
@@@
5454

5555
This stores the squaring program `(,:dup,:mul,)` in variable `square`, then calls it using

docs/asl/ref/head.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@ This takes all the series grouped by cluster and keeps only the first 2 series i
2828
## Related Operations
2929

3030
* [:limit](limit.md) - Equivalent operation (`:head` is an alias for `:limit`)
31-
* [:tail](tail.md) - Take the last N series instead of the first N
3231
* [:sort](sort.md) - Order series before limiting (often used together)
3332
* [:by](by.md) - Group series (commonly used before limiting)
34-
* [:top-k](top-k.md) - Select top N based on values rather than position
33+
* [:topk](topk.md) - Select top N based on values rather than position

docs/asl/ref/median.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,4 +53,4 @@ name,requestLatency,:eq,(,50,),:percentiles
5353

5454
[spectator]: ../../spectator/index.md
5555
[PercentileTimer]: ../../spectator/patterns/percentile-timer.md
56-
[PercentileDistributionSummary]: ../../spectator/patterns/percentile-dist-summary.md
56+
[PercentileDistributionSummary]: ../../spectator/core/meters/dist-summary.md

docs/asl/ref/percentiles-heatmap.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,6 @@ Default: /api/v1/graph?w=200&h=125&s=e-3h&e=2014-02-20T15:01&tz=US/Pacific&q=nam
5757

5858
[spectator]: ../../spectator/index.md
5959
[PercentileTimer]: ../../spectator/patterns/percentile-timer.md
60-
[PercentileDistributionSummary]: ../../spectator/patterns/percentile-dist-summary.md
60+
[PercentileDistributionSummary]: ../../spectator/core/meters/dist-summary.md
6161

6262
Since: 1.8

docs/asl/ref/sample-count.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ The metrics must be instrumented using percentile timers or distribution summari
3535
collect histogram information:
3636

3737
* **[PercentileTimer](../../spectator/patterns/percentile-timer.md)** - For timing measurements
38-
* **[PercentileDistributionSummary](../../spectator/patterns/percentile-dist-summary.md)** - For distribution measurements
38+
* **[PercentileDistributionSummary](../../spectator/core/meters/dist-summary.md)** - For distribution measurements
3939

4040
## Examples
4141

@@ -61,4 +61,4 @@ name,requestLatency,:eq,1,10,:sample-count
6161
## See Also
6262

6363
* [Percentile Timer Pattern](../../spectator/patterns/percentile-timer.md) - Instrumentation for timing with histograms
64-
* [Percentile Distribution Summary Pattern](../../spectator/patterns/percentile-dist-summary.md) - Distribution measurement patterns
64+
* [Percentile Distribution Summary Pattern](../../spectator/core/meters/dist-summary.md) - Distribution measurement patterns

0 commit comments

Comments
 (0)