Skip to content

Commit

Permalink
fixed a few broken links in the documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
asmuth committed Mar 13, 2013
1 parent 3712cf6 commit 8a0aacd
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions fnordmetric-doc/src/enterprise_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ values in an aggregation interval of 60 seconds, you'd use the key `response\_ti
interval: 60s). For a metric `total\_clicks` that sums up all measuements in one-hour intervals, you would use
`total_clicks.sum-3600` (type: sum, interval: 3600s)

You can find a list of all metric types and the [full API Reference here](/documentation/fnordmetric_api_reference/)
You can find a list of all metric types and the [full API Reference here](/documentation/enterprise_api_reference/)


### Getting Started
Expand All @@ -45,7 +45,7 @@ FnordMetric Enterprise will automatically create the metric if it doesnt exist y
$ echo "SAMPLE myapp.response_time-mean-10" | nc localhost 9222
OK

There are also [other ways to connect to FnordMetric Enterprise](/documentation/fnordmetric_api_reference/)
There are also [other ways to connect to FnordMetric Enterprise](/documentation/enterprise_api_reference/)
(e.g. WebSockets, UDP, HTTP).

You should now be able to navigate to the admin interface on http://localhost:8081/ in your
Expand All @@ -55,13 +55,13 @@ browser and see something like this:
<br />

We can retrieve the measured data in a similar way. This will e.g. retrieve the measured mean
response times for the last hour ([see a full list of commands here](/documentation/fnordmetric_api_reference/))
response times for the last hour ([see a full list of commands here](/documentation/enterprise_api_reference/))

$ echo "VALUESIN myapp.response_time-mean-10 -1h now" | nc localhost 9222
1360804571:4233.52 1360804581:4312.36 1360804591:6323.12


You now have a running FnordMetric application. There is a lot more you can do: Checkout out
the [full API Reference here](/documentation/fnordmetric_api_reference/) or [read more
the [full API Reference here](/documentation/enterprise_api_reference/) or [read more
about FnordMetric UI](/documentation/ui_index), a JavaScript / HTML5 library that you can use
to plug in the data into any webpage within seconds.
4 changes: 2 additions & 2 deletions fnordmetric-doc/src/ui_html5_api.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ These are the valid html attributes for counters:
e.g. "sum(-3hours)" which will give you the sum of the last three hours.</p>
<p>You can also get a average of the last x measurements by setting this to
e.g. "avg(-3hours)" which will give you the average of the last three hours.</p>
The Default is "now". You can find the <a href="/documentation/fnordmetric_api_reference"/>full documentation for this time format here</a>
The Default is "now". You can find the <a href="/documentation/enterprise_api_reference"/>full documentation for this time format here</a>
</td>
</tr>
<tr>
Expand Down Expand Up @@ -125,7 +125,7 @@ These are the valid html attributes:
unix timestamp, a time definition like "-3hours" (3 hours ago), "-45m"
(45m ago) or "-3600" (3600 seconds = 1 hour ago) or "now". To e.g. display
the last two hours of data use: data-since="-2hours" data-until="now".
You can find the <a href="/documentation/fnordmetric_api_reference"/>full documentation for this time format here</a>
You can find the <a href="/documentation/enterprise_api_reference"/>full documentation for this time format here</a>
</td>
</tr>
<tr>
Expand Down

0 comments on commit 8a0aacd

Please sign in to comment.