Skip to content

Commit d30bdb5

Browse files
author
Carlo Cabanilla
committed
add outline to faq
1 parent 3d3dc45 commit d30bdb5

File tree

2 files changed

+56
-11
lines changed

2 files changed

+56
-11
lines changed

content/faq.html

Lines changed: 49 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,30 @@
22
title: FAQ
33
---
44

5-
<h3>Agent</h3>
6-
7-
<h4>Where are the agent's config files located?</h4>
5+
<ol class="outline">
6+
<li><a href="#agent">Agent<ol>
7+
<li><a href="#agent-config-files">Where are the agent's config files located?</a></li>
8+
<li><a href="#agent-version">How can I tell what version of the agent is running?</a></li>
9+
</ol></li>
10+
<li><a href="#api">API<ol>
11+
<li><a href="#api-metric-names">What are valid metric names?</a></li>
12+
<li><a href="#api-tags">What are valid tags?</a></li>
13+
</ol></li>
14+
<li><a href="#arch">Architecture<ol>
15+
<li><a href="#arch-cloud-or-server">Is datadog a cloud service or server application?</a></li>
16+
<li><a href="#arch-graphite-differences">What's the difference between Graphite's query language and Datadog's?</a></h4>
17+
</ol></li>
18+
</ol>
19+
20+
<!--
21+
===============================================================================
22+
Agent
23+
===============================================================================
24+
-->
25+
26+
<h3><a name="agent" href="#agent">Agent</a></h3>
27+
28+
<h4><a name="agent-config-files" href="#agent-config-files">Where are the agent's config files located?</a></h4>
829

930
<h5>Linux</h5>
1031
<ul>
@@ -20,7 +41,7 @@ <h5>Windows Server 2003 or older (or XP and older)</h5>
2041
<li>C:\Program Files\Datadog\Agent\checks.d\</li>
2142
</ul>
2243

23-
<h5>Windows Server 2008 or newer (or XP and newer)</h5>
44+
<h5>Windows Server 2008 or newer (or Vista and newer)</h5>
2445
<ul>
2546
<li>C:\ProgramData\Datadog\datadog.conf</li>
2647
<li>C:\ProgramData\Datadog\conf.d\</li>
@@ -34,7 +55,9 @@ <h5>OS X</h5>
3455
<li>~/.datadog-agent/agent/checks.d/</li>
3556
</ul>
3657

37-
<h4>How can I tell what version of the agent is running?<h4>
58+
<!-- ====================================================================== -->
59+
60+
<h4><a name="agent-version" href="#agent-version">How can I tell what version of the agent is running?</a><h4>
3861

3962
<h5>Linux</h5>
4063

@@ -44,20 +67,34 @@ <h5>Linux</h5>
4467

4568
<code>cd /usr/share/datadog/agent &amp;&amp; python -c 'import config; print config.get_version()'</code>
4669

47-
<h3>API</h3>
70+
<!--
71+
===============================================================================
72+
API
73+
===============================================================================
74+
-->
75+
76+
<h3><a name="api" href="#api">API</a></h3>
4877

49-
<h4>What are valid metric names?</h4>
78+
<h4><a name="api-metric-names" href="#api-metric-names">What are valid metric names?</a></h4>
5079
<p>Metric names must start with a letter, and after that may contain ascii alphanumerics, underscore and periods. Other characters will get converted to underscores. There is no max length. Unicode is not support.</p>
5180

52-
<h4>What are valid tags?</h4>
81+
<h4><a name="api-tags" href="#api-tags">What are valid tags?</a></h4>
5382
<p>Tags must start with a letter, and after that may contain alphanumerics, underscores, minuses, colons, periods and slashes. Other characters will get converted to underscores. Tags can be up to 200 characters long and support unicode.</p>
5483

55-
<h3>Architecture</h3>
84+
<!--
85+
===============================================================================
86+
Architecture
87+
===============================================================================
88+
-->
5689

57-
<h4>Is datadog a cloud service or server application?</h4>
90+
<h3><a name="arch" href="#arch">Architecture</a></h3>
91+
92+
<h4><a name="arch-cloud-or-server" href="#arch-cloud-or-server">Is datadog a cloud service or server application?</a></h4>
5893
<p>It's primarily a cloud service, but if you want to collect data on your servers, there is an agent you'll need to install. We never make any direct connections to your infrastructure. For cloud integrations, we connect to them using the credentials you provide to us.</p>
5994

60-
<h4>What's the difference between Graphite's query language and Datadog's?</h4>
95+
<!-- ====================================================================== -->
96+
97+
<h4><a name="arch-graphite-differences" href="#archive-graphite-differences">What's the difference between Graphite's query language and Datadog's?</a></h4>
6198
<p>In terms of metric naming, we differ a little with Graphite in that a metric query is defined by a metric name and a scope, where a scope is one or more tags. To translate:</p>
6299

63100
<blockquote>
@@ -91,3 +128,4 @@ <h4>What's the difference between Graphite's query language and Datadog's?</h4>
91128

92129
<p>Which would graph stacked area series for each http_method value like GET, POST, etc.</p>
93130

131+
<!-- ====================================================================== -->

layouts/_head.html

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -139,6 +139,13 @@
139139
padding:5px;
140140
}
141141

142+
143+
/* FAQ */
144+
145+
h3 a, h4 a {color: black}
146+
ol.outline {list-style-type: upper-alpha}
147+
ol.outline ol {list-style-type: decimal}
148+
142149
</style>
143150

144151
<script type="text/javascript">

0 commit comments

Comments
 (0)