-
Notifications
You must be signed in to change notification settings - Fork 12
/
mkdocs.yml
81 lines (81 loc) · 2.66 KB
/
mkdocs.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
site_name: Sergeant
site_url: https://intsights.github.io/sergeant/
repo_url: https://github.com/intsights/sergeant
site_author: Gal Ben David
copyright: Intsights (c) 2022
remote_branch: gh-pages
docs_dir: docs
site_dir: site
nav:
- Home: 'index.md'
- Worker:
- Config:
- 'worker/config/name.md'
- 'worker/config/connector.md'
- 'worker/config/max_tasks_per_run.md'
- 'worker/config/max_retries.md'
- 'worker/config/tasks_per_transaction.md'
- 'worker/config/encoder.md'
- 'worker/config/number_of_threads.md'
- 'worker/config/timeouts.md'
- 'worker/config/logging.md'
- 'worker/config/starvation.md'
- Handlers:
- 'worker/handlers/on_success.md'
- 'worker/handlers/on_failure.md'
- 'worker/handlers/on_timeout.md'
- 'worker/handlers/on_retry.md'
- 'worker/handlers/on_max_retries.md'
- 'worker/handlers/on_requeue.md'
- 'worker/handlers/on_starvation.md'
- Worker:
- 'worker/worker/generate_config.md'
- 'worker/worker/initialize.md'
- 'worker/worker/finalize.md'
- 'worker/worker/pre_work.md'
- 'worker/worker/post_work.md'
- 'worker/worker/work.md'
- Methods:
- 'worker/methods/retry.md'
- 'worker/methods/requeue.md'
- 'worker/methods/stop.md'
- 'worker/methods/respawn.md'
- 'worker/methods/push_task.md'
- 'worker/methods/push_tasks.md'
- 'worker/methods/get_next_tasks.md'
- 'worker/methods/number_of_enqueued_tasks.md'
- 'worker/methods/purge_tasks.md'
- 'worker/methods/lock.md'
- Lock:
- 'worker/lock/acquire.md'
- 'worker/lock/release.md'
- 'worker/lock/is_locked.md'
- 'worker/lock/get_ttl.md'
- 'worker/lock/set_ttl.md'
- Logging:
- 'worker/logging/logstash.md'
- Supervisor: 'supervisor.md'
- Examples:
- 'examples/single_producer_consumer.md'
- 'examples/worker_with_apm.md'
- 'examples/base_worker.md'
- 'examples/supervisor_with_custom_logger.md'
theme:
name: material
logo: images/logo_icon.png
favicon: images/favicon.ico
extra_javascript:
- https://cdnjs.cloudflare.com/ajax/libs/mermaid/8.14.0/mermaid.min.js
markdown_extensions:
- toc:
permalink: "#"
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_div_format
- pymdownx.highlight:
linenums: 1
- pymdownx.inlinehilite
- pymdownx.tabbed
- pymdownx.details