Skip to content

Commit a04d66b

Browse files
committed
init commit from gitlab
1 parent 6c56f18 commit a04d66b

File tree

241 files changed

+25611
-3
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

241 files changed

+25611
-3
lines changed

.gitignore

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,19 @@
1-
*.yml
1+
_build
2+
support
3+
4+
.vscode/
5+
env
6+
venv
7+
_image-source-files
8+
9+
*.ignoreme
10+
*.rstignoreme
11+
*.pyc
12+
*.idlk
13+
*.worksheet
14+
*.bbprojectdata
15+
*.bbprojectsettings
16+
17+
.idea
18+
.DS_Store
19+
product-docs.iml

.gitlab-ci.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# Author: Peng Yan([email protected])
2+
# Repo: https://cd.splunkdev.com/it-engineering/it-docs/product-docs
3+
# The pipeline will generate static content in branches.
4+
# --- deploying non-master branch to private network nginx server (only VPN user can have access)
5+
# --- deploying master/main branch to cloudfront
6+
include:
7+
- project: 'it-engineering/it-cicd/templates/it-docs'
8+
file: 'cicd.yml'
9+
- project: 'it-engineering/it-cicd/templates/it-docs'
10+
file: 'build.yml'

:

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
Merge branch 'observability' of github.com:signalfx/product-docs into gschatz-docs-2267
2+
# Please enter a commit message to explain why this merge is necessary,
3+
# especially if it merges an updated upstream into a topic branch.
4+
#
5+
# Lines starting with '#' will be ignored, and an empty message aborts
6+
# the commit.

CODEOWNERS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
* @pohannigansfx @jmalin-signalfx @brianashby-sfx @tmorrisonsfx @gschatz-splunk @sonnetspl @trangmle-splunk @TraceySplunkWriter @jhasegawa-splunk @puribe-splunk

Makefile

Lines changed: 231 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,231 @@
1+
# Makefile for Sphinx documentation
2+
#
3+
4+
# You can set these variables from the command line.
5+
SPHINXOPTS =
6+
SPHINXBUILD = sphinx-build
7+
PAPER =
8+
BUILDDIR = _build
9+
10+
# User-friendly check for sphinx-build
11+
ifeq ($(shell which $(SPHINXBUILD) >/dev/null 2>&1; echo $$?), 1)
12+
$(error The '$(SPHINXBUILD)' command was not found. Make sure you have Sphinx installed, then set the SPHINXBUILD environment variable to point to the full path of the '$(SPHINXBUILD)' executable. Alternatively you can add the directory with the executable to your PATH. If you don\'t have Sphinx installed, grab it from http://sphinx-doc.org/)
13+
endif
14+
15+
# Internal variables.
16+
PAPEROPT_a4 = -D latex_paper_size=a4
17+
PAPEROPT_letter = -D latex_paper_size=letter
18+
ALLSPHINXOPTS = -d $(BUILDDIR)/doctrees $(PAPEROPT_$(PAPER)) $(SPHINXOPTS) .
19+
# the i18n builder cannot share the environment and doctrees with the others
20+
I18NSPHINXOPTS = $(PAPEROPT_$(PAPER)) $(SPHINXOPTS) .
21+
22+
.PHONY: help
23+
help:
24+
@echo "Please use \`make <target>' where <target> is one of"
25+
@echo " html to make standalone HTML files"
26+
@echo " dirhtml to make HTML files named index.html in directories"
27+
@echo " singlehtml to make a single large HTML file"
28+
@echo " pickle to make pickle files"
29+
@echo " json to make JSON files"
30+
@echo " htmlhelp to make HTML files and a HTML help project"
31+
@echo " qthelp to make HTML files and a qthelp project"
32+
@echo " applehelp to make an Apple Help Book"
33+
@echo " devhelp to make HTML files and a Devhelp project"
34+
@echo " epub to make an epub"
35+
@echo " epub3 to make an epub3"
36+
@echo " latex to make LaTeX files, you can set PAPER=a4 or PAPER=letter"
37+
@echo " latexpdf to make LaTeX files and run them through pdflatex"
38+
@echo " latexpdfja to make LaTeX files and run them through platex/dvipdfmx"
39+
@echo " text to make text files"
40+
@echo " man to make manual pages"
41+
@echo " texinfo to make Texinfo files"
42+
@echo " info to make Texinfo files and run them through makeinfo"
43+
@echo " gettext to make PO message catalogs"
44+
@echo " changes to make an overview of all changed/added/deprecated items"
45+
@echo " xml to make Docutils-native XML files"
46+
@echo " pseudoxml to make pseudoxml-XML files for display purposes"
47+
@echo " linkcheck to check all external links for integrity"
48+
@echo " doctest to run all doctests embedded in the documentation (if enabled)"
49+
@echo " coverage to run coverage check of the documentation (if enabled)"
50+
51+
.PHONY: clean
52+
clean:
53+
rm -f $(BUILDDIR)/.DS_Store
54+
rm -f $(BUILDDIR)/html/.DS_Store
55+
rm -rf $(BUILDDIR)/*
56+
57+
.PHONY: html
58+
html:
59+
$(SPHINXBUILD) -b html $(ALLSPHINXOPTS) $(BUILDDIR)/html
60+
@echo
61+
@echo "Build finished. The HTML pages are in $(BUILDDIR)/html."
62+
63+
# Change the `-p` argument to use a different port.
64+
65+
.PHONY: livehtml
66+
livehtml:
67+
sphinx-autobuild -p 8000 -b html $(ALLSPHINXOPTS) $(BUILDDIR)/html
68+
69+
.PHONY: dirhtml
70+
dirhtml:
71+
$(SPHINXBUILD) -b dirhtml $(ALLSPHINXOPTS) $(BUILDDIR)/dirhtml
72+
@echo
73+
@echo "Build finished. The HTML pages are in $(BUILDDIR)/dirhtml."
74+
75+
.PHONY: singlehtml
76+
singlehtml:
77+
$(SPHINXBUILD) -b singlehtml $(ALLSPHINXOPTS) $(BUILDDIR)/singlehtml
78+
@echo
79+
@echo "Build finished. The HTML page is in $(BUILDDIR)/singlehtml."
80+
81+
.PHONY: pickle
82+
pickle:
83+
$(SPHINXBUILD) -b pickle $(ALLSPHINXOPTS) $(BUILDDIR)/pickle
84+
@echo
85+
@echo "Build finished; now you can process the pickle files."
86+
87+
.PHONY: json
88+
json:
89+
$(SPHINXBUILD) -b json $(ALLSPHINXOPTS) $(BUILDDIR)/json
90+
@echo
91+
@echo "Build finished; now you can process the JSON files."
92+
93+
.PHONY: htmlhelp
94+
htmlhelp:
95+
$(SPHINXBUILD) -b htmlhelp $(ALLSPHINXOPTS) $(BUILDDIR)/htmlhelp
96+
@echo
97+
@echo "Build finished; now you can run HTML Help Workshop with the" \
98+
".hhp project file in $(BUILDDIR)/htmlhelp."
99+
100+
.PHONY: qthelp
101+
qthelp:
102+
$(SPHINXBUILD) -b qthelp $(ALLSPHINXOPTS) $(BUILDDIR)/qthelp
103+
@echo
104+
@echo "Build finished; now you can run "qcollectiongenerator" with the" \
105+
".qhcp project file in $(BUILDDIR)/qthelp, like this:"
106+
@echo "# qcollectiongenerator $(BUILDDIR)/qthelp/SignalFxDocumentation.qhcp"
107+
@echo "To view the help file:"
108+
@echo "# assistant -collectionFile $(BUILDDIR)/qthelp/SignalFxDocumentation.qhc"
109+
110+
.PHONY: applehelp
111+
applehelp:
112+
$(SPHINXBUILD) -b applehelp $(ALLSPHINXOPTS) $(BUILDDIR)/applehelp
113+
@echo
114+
@echo "Build finished. The help book is in $(BUILDDIR)/applehelp."
115+
@echo "N.B. You won't be able to view it unless you put it in" \
116+
"~/Library/Documentation/Help or install it in your application" \
117+
"bundle."
118+
119+
.PHONY: devhelp
120+
devhelp:
121+
$(SPHINXBUILD) -b devhelp $(ALLSPHINXOPTS) $(BUILDDIR)/devhelp
122+
@echo
123+
@echo "Build finished."
124+
@echo "To view the help file:"
125+
@echo "# mkdir -p $$HOME/.local/share/devhelp/SignalFxDocumentation"
126+
@echo "# ln -s $(BUILDDIR)/devhelp $$HOME/.local/share/devhelp/SignalFxDocumentation"
127+
@echo "# devhelp"
128+
129+
.PHONY: epub
130+
epub:
131+
$(SPHINXBUILD) -b epub $(ALLSPHINXOPTS) $(BUILDDIR)/epub
132+
@echo
133+
@echo "Build finished. The epub file is in $(BUILDDIR)/epub."
134+
135+
.PHONY: epub3
136+
epub3:
137+
$(SPHINXBUILD) -b epub3 $(ALLSPHINXOPTS) $(BUILDDIR)/epub3
138+
@echo
139+
@echo "Build finished. The epub3 file is in $(BUILDDIR)/epub3."
140+
141+
.PHONY: latex
142+
latex:
143+
$(SPHINXBUILD) -b latex $(ALLSPHINXOPTS) $(BUILDDIR)/latex
144+
@echo
145+
@echo "Build finished; the LaTeX files are in $(BUILDDIR)/latex."
146+
@echo "Run \`make' in that directory to run these through (pdf)latex" \
147+
"(use \`make latexpdf' here to do that automatically)."
148+
149+
.PHONY: latexpdf
150+
latexpdf:
151+
$(SPHINXBUILD) -b latex $(ALLSPHINXOPTS) $(BUILDDIR)/latex
152+
@echo "Running LaTeX files through pdflatex..."
153+
$(MAKE) -C $(BUILDDIR)/latex all-pdf
154+
@echo "pdflatex finished; the PDF files are in $(BUILDDIR)/latex."
155+
156+
.PHONY: latexpdfja
157+
latexpdfja:
158+
$(SPHINXBUILD) -b latex $(ALLSPHINXOPTS) $(BUILDDIR)/latex
159+
@echo "Running LaTeX files through platex and dvipdfmx..."
160+
$(MAKE) -C $(BUILDDIR)/latex all-pdf-ja
161+
@echo "pdflatex finished; the PDF files are in $(BUILDDIR)/latex."
162+
163+
.PHONY: text
164+
text:
165+
$(SPHINXBUILD) -b text $(ALLSPHINXOPTS) $(BUILDDIR)/text
166+
@echo
167+
@echo "Build finished. The text files are in $(BUILDDIR)/text."
168+
169+
.PHONY: man
170+
man:
171+
$(SPHINXBUILD) -b man $(ALLSPHINXOPTS) $(BUILDDIR)/man
172+
@echo
173+
@echo "Build finished. The manual pages are in $(BUILDDIR)/man."
174+
175+
.PHONY: texinfo
176+
texinfo:
177+
$(SPHINXBUILD) -b texinfo $(ALLSPHINXOPTS) $(BUILDDIR)/texinfo
178+
@echo
179+
@echo "Build finished. The Texinfo files are in $(BUILDDIR)/texinfo."
180+
@echo "Run \`make' in that directory to run these through makeinfo" \
181+
"(use \`make info' here to do that automatically)."
182+
183+
.PHONY: info
184+
info:
185+
$(SPHINXBUILD) -b texinfo $(ALLSPHINXOPTS) $(BUILDDIR)/texinfo
186+
@echo "Running Texinfo files through makeinfo..."
187+
make -C $(BUILDDIR)/texinfo info
188+
@echo "makeinfo finished; the Info files are in $(BUILDDIR)/texinfo."
189+
190+
.PHONY: gettext
191+
gettext:
192+
$(SPHINXBUILD) -b gettext $(I18NSPHINXOPTS) $(BUILDDIR)/locale
193+
@echo
194+
@echo "Build finished. The message catalogs are in $(BUILDDIR)/locale."
195+
196+
.PHONY: changes
197+
changes:
198+
$(SPHINXBUILD) -b changes $(ALLSPHINXOPTS) $(BUILDDIR)/changes
199+
@echo
200+
@echo "The overview file is in $(BUILDDIR)/changes."
201+
202+
.PHONY: linkcheck
203+
linkcheck:
204+
$(SPHINXBUILD) -b linkcheck $(ALLSPHINXOPTS) $(BUILDDIR)/linkcheck
205+
@echo
206+
@echo "Link check complete; look for any errors in the above output " \
207+
"or in $(BUILDDIR)/linkcheck/output.txt."
208+
209+
.PHONY: doctest
210+
doctest:
211+
$(SPHINXBUILD) -b doctest $(ALLSPHINXOPTS) $(BUILDDIR)/doctest
212+
@echo "Testing of doctests in the sources finished, look at the " \
213+
"results in $(BUILDDIR)/doctest/output.txt."
214+
215+
.PHONY: coverage
216+
coverage:
217+
$(SPHINXBUILD) -b coverage $(ALLSPHINXOPTS) $(BUILDDIR)/coverage
218+
@echo "Testing of coverage in the sources finished, look at the " \
219+
"results in $(BUILDDIR)/coverage/python.txt."
220+
221+
.PHONY: xml
222+
xml:
223+
$(SPHINXBUILD) -b xml $(ALLSPHINXOPTS) $(BUILDDIR)/xml
224+
@echo
225+
@echo "Build finished. The XML files are in $(BUILDDIR)/xml."
226+
227+
.PHONY: pseudoxml
228+
pseudoxml:
229+
$(SPHINXBUILD) -b pseudoxml $(ALLSPHINXOPTS) $(BUILDDIR)/pseudoxml
230+
@echo
231+
@echo "Build finished. The pseudo-XML files are in $(BUILDDIR)/pseudoxml."

0 commit comments

Comments
 (0)