Skip to content

Commit f9a9198

Browse files
committed
docs: Minor tweaks
1 parent 3717982 commit f9a9198

File tree

5 files changed

+8
-11
lines changed

5 files changed

+8
-11
lines changed

docs/Project.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
11
[deps]
22
Dagger = "d58978e5-989f-55fb-8d15-ea34adc7bf54"
33
DaggerWebDash = "cfc5aa84-1a2a-41ab-b391-ede92ecae40c"
4+
DataFrames = "a93c6f00-e57d-5684-b7b6-d8193f3e46c0"
45
Documenter = "e30172f5-a6a5-5a46-863b-614d45cd2de4"
6+
GraphViz = "f526b714-d49f-11e8-06ff-31ed36ee7ee0"
7+
Plots = "91a5bcdd-55d7-5caf-9e0b-520d859cae80"
58
TimespanLogging = "a526e669-04d3-4846-9525-c66122c55f63"
69

710
[compat]

docs/make.jl

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
1-
using Dagger, TimespanLogging, DaggerWebDash
1+
using Dagger, TimespanLogging, DaggerWebDash, GraphViz, Plots, DataFrames
2+
const GraphVizExt = something(Base.get_extension(Dagger, :GraphVizExt))
3+
const PlotsExt = something(Base.get_extension(Dagger, :PlotsExt))
24
using Documenter
35
import Documenter.Remotes: GitHub
46

57
makedocs(;
6-
modules = [Dagger, TimespanLogging, DaggerWebDash],
8+
modules = [Dagger, TimespanLogging, DaggerWebDash, GraphVizExt, PlotsExt],
79
authors = "JuliaParallel and contributors",
810
repo = GitHub("JuliaParallel", "Dagger.jl"),
911
sitename = "Dagger.jl",

docs/src/api-timespanlogging/functions.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ Pages = ["functions.md"]
1212
timespan_start
1313
timespan_finish
1414
get_logs!
15-
make_timespan
1615
```
1716

1817
## Logging Metric Functions

docs/src/api-timespanlogging/types.md

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,6 @@ LocalEventLog
1414
NoOpLog
1515
```
1616

17-
## Event Types
18-
```@docs
19-
Event
20-
```
21-
2217
## Built-in Event Types
2318
```@docs
2419
Events.CoreMetrics
@@ -31,4 +26,3 @@ Events.EventSaturation
3126
Events.DebugMetrics
3227
Events.LogWindow
3328
```
34-
```

docs/src/logging-visualization.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,7 @@ by libraries or directly by the user, using multiple dispatch on
1515
identifying the rendering mode to use. From the user's perspective, `show_logs`
1616
and `render_logs` take not a `Val` but a raw `Symbol`, which will be internally
1717
converted to a `Val` for dispatch purposes
18-
(i.e. `render_logs(logs::Dict, :myrenderer)` ->
19-
`render_logs(logs, Val{:myrenderer}())`).
18+
(i.e. `render_logs(logs::Dict, :myrenderer)` -> `render_logs(logs, Val{:myrenderer}())`).
2019

2120
Built-in rendering support exists for:
2221
- `render_logs(logs, :graphviz)` to generate a graph diagram of executed tasks and their dependencies

0 commit comments

Comments
 (0)