Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Integrate tracing docs into the doc website #2795

Draft
wants to merge 6 commits into
base: latest
Choose a base branch
from
Draft
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: 6 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -74,3 +74,9 @@ locale/*
/doc/getting_started/getting_started_cxx.rst
/doc/getting_started/_includes/
/doc/book/connectors/cxx/

# tracing submodule: leaving only tracing_overview

/doc/reference/reference_rock/tracing/
/locale/en/reference/reference_rock/tracing/
/locale/ru/LC_MESSAGES/reference/reference_rock/tracing/
3 changes: 3 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,6 @@
[submodule "modules/tntcxx"]
path = modules/tntcxx
url = https://github.com/tarantool/tntcxx.git
[submodule "modules/tracing"]
path = modules/tracing
url = https://github.com/tarantool/tracing
20 changes: 20 additions & 0 deletions build_submodules.sh
Original file line number Diff line number Diff line change
Expand Up @@ -107,3 +107,23 @@ mkdir -p "${tntcxx_gs_dest}/_includes"
yes | cp -rf "${tntcxx_root}/doc/tntcxx_getting_started.rst" "${tntcxx_gs_dest}/getting_started_cxx.rst"
yes | cp -rf "${tntcxx_root}/examples/" "${tntcxx_gs_dest}/_includes/examples/"
yes | cp -rf "${tntcxx_root}/doc/tntcxx_api.rst" "${tntcxx_api_dest}/cxx/"


# Tracing module
tracing_root="${project_root}/modules/tracing"
tracing_dest="${project_root}/doc/reference/reference_rock/tracing"

# Generate tracing docs
cd "${tracing_root}"
ldoc --ext=rst --dir=rst --toctree="API" .

# Copy tracing docs to the right place
mkdir -p "${tracing_dest}/_includes/"
yes | cp -fa "${tracing_root}/rst/." "${tracing_dest}"
pandoc -f gfm -t rst -o "${tracing_dest}/_includes/readme.rst" "${tracing_root}/README.md"
yes | mv -f "${tracing_dest}/index.rst" "${tracing_dest}/_includes/api.rst"
# remove header from included README file
sed -i '1,3d' "${tracing_dest}/_includes/readme.rst"
# edit paths in the included API file
# Addressing in sphinx includes sometimes defies common logic
sed -i 's,modules,tracing\/modules,g' "${tracing_dest}/_includes/api.rst"
11 changes: 6 additions & 5 deletions doc/reference/reference_rock/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,13 @@ Rocks reference

This reference covers third-party Lua modules for Tarantool.

.. toctree::
:maxdepth: 2
.. toctree::
:maxdepth: 1

dbms
Module cartridge <https://www.tarantool.io/doc/latest/book/cartridge/>
expirationd
Module luatest <luatest/luatest_overview>
membership
Module tracing <tracing_overview>
vshard/index
../../book/cartridge/index
luatest/luatest_overview
dbms
8 changes: 4 additions & 4 deletions doc/reference/reference_rock/luatest/luatest_overview.rst
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
**********************
Luatest
**********************
Module luatest
==============

More about Luatest API see :ref:`below <luatest-api>`.

.. include:: README.rst

.. _luatest-api:

.. include:: _includes/index.rst
.. include:: _includes/index.rst

19 changes: 19 additions & 0 deletions doc/reference/reference_rock/tracing_overview.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
Module tracing
==============

More about ``tracing`` API see :ref:`below <tracing-api>`.

.. include:: tracing/_includes/readme.rst

.. _tracing-api:

.. include:: tracing/_includes/api.rst

.. toctree::
:maxdepth: 1

tracing/modules/opentracing
tracing/modules/opentracing.span
tracing/modules/opentracing.span_context
tracing/modules/opentracing.tracer
tracing/modules/zipkin.tracer
1 change: 1 addition & 0 deletions modules/tracing
Submodule tracing added at 0b5d7d