Author: milamber
Date: Wed Nov 16 18:44:24 2016
New Revision: 1770032
URL: http://svn.apache.org/viewvc?rev=1770032&view=rev
Log:
Prepare next release 3.1: update docs tree and overview (RC4)
Modified:
jmeter/trunk/docs/changes.html
jmeter/trunk/docs/usermanual/realtime-results.html
Modified: jmeter/trunk/docs/changes.html
URL:
http://svn.apache.org/viewvc/jmeter/trunk/docs/changes.html?rev=1770032&r1=1770031&r2=1770032&view=diff
==============================================================================
--- jmeter/trunk/docs/changes.html (original)
+++ jmeter/trunk/docs/changes.html Wed Nov 16 18:44:24 2016
@@ -591,6 +591,11 @@ This allows you to update Think Times fr
60084</a>
-
JMeter 3.0 embedded resource URL is silently encoded</li>
+ <li><a href="https://bz.apache.org/bugzilla/show_bug.cgi?id=60376">
+ Bug
+ 60376</a>
+ -
+ Http Test Script Recorder : If deflate is used by server then recording may
break application</li>
</ul>
<h3>Other Samplers</h3>
Modified: jmeter/trunk/docs/usermanual/realtime-results.html
URL:
http://svn.apache.org/viewvc/jmeter/trunk/docs/usermanual/realtime-results.html?rev=1770032&r1=1770031&r2=1770032&view=diff
==============================================================================
--- jmeter/trunk/docs/usermanual/realtime-results.html (original)
+++ jmeter/trunk/docs/usermanual/realtime-results.html Wed Nov 16 18:44:24 2016
@@ -100,29 +100,24 @@ In this document we will present the con
<div class="subsection"><h2 id="influxdb">16.2 InfluxDB<a class="sectionlink"
href="#influxdb" title="Link to here">¶</a></h2>
<p>InfluxDB is an open-source, distributed, time-series database that allows
to
easily store metrics.
-Installation and configuration is very easy, read this for more details <a
href="http://influxdb.com/docs/v0.8/introduction/installation.html"
target="_blank">InfluxDB documentation</a>.<br>
+Installation and configuration is very easy, read this for more details <a
href="https://docs.influxdata.com/influxdb/v1.1/introduction/installation/"
target="_blank">InfluxDB documentation</a>.<br>
InfluxDB data can be easily viewed in a browser through either <a
href="https://github.com/hakobera/influga" target="_blank">Influga</a> or <a
href="http://grafana.org/" target="_blank">Grafana</a>.
We will use Grafana in this case.
</p>
<div class="subsection"><h2 id="influxdb_configuration">16.2.1 InfluxDB
graphite listener configuration<a class="sectionlink"
href="#influxdb_configuration" title="Link to here">¶</a></h2>
<p>To enable Graphite listener in InfluxDB, edit files <span
class="code">/opt/influxdb/shared/config.toml</span> or <span
class="code">/usr/local/etc/influxdb.conf</span>,
- find "<span class="code">input_plugins.graphite</span>" and set this:
+ find "<span class="code">[[graphite]]</span>" and set this:
</p>
<pre class="source">
# Configure the graphite api
-[input_plugins.graphite]
+[[graphite]]
enabled = true
-address = "0.0.0.0" # If not set, is actually set to bind-address.
-port = 2003
+bind-address = ":2003" # If not set, is actually set to bind-address.
database = "jmeter" # store graphite data in this database
-# udp_enabled = true # enable udp interface on the same port as the tcp
interface
</pre>
- <p>
- For later versions of InfluxDb (e.g. 0.12), replace <span
class="code">[input_plugins.graphite]</span> with <span
class="code">[[graphite]]</span>
- </p>
</div>
<div class="subsection"><h2 id="influxdb_db_configuration">16.2.2 InfluxDB
database configuration<a class="sectionlink" href="#influxdb_db_configuration"
title="Link to here">¶</a></h2>
- <p>Connect to InfluxDB admin console and create two databases:
+ <p>Connect to InfluxDB using <a
href="https://docs.influxdata.com/influxdb/v1.1/introduction/getting_started/">influx
shell</a> and <a
href="https://docs.influxdata.com/influxdb/v1.1/query_language/database_management/">create
two databases</a>:
<ul>
<li>grafana : Used by Grafana to store the dashboards we will
create</li>
<li>jmeter : Used by InfluxDB to store the data sent to Graphite
Listener as per database="jmeter" config
@@ -140,13 +135,13 @@ database = "jmeter" # store graphite da
datasources: {
influxdb: {
type: 'influxdb',
- url: "http://localhost:8086/db/jmeter",
+ url: "http://influx_db_host:8086/db/jmeter",
username: 'root',
password: 'root',
},
grafana: {
type: 'influxdb',
- url: "http://localhost:8086/db/grafana",
+ url: "http://influx_db_host:8086/db/grafana",
username: 'root',
password: 'root',
grafanaDB: true
@@ -164,7 +159,7 @@ datasources: {
</div>
<div class="subsection"><h2 id="graphite">16.3 Graphite<a class="sectionlink"
href="#graphite" title="Link to here">¶</a></h2>
-<p>TODO.</p>
+<p>HELP WELCOME for this section, see <a href="../building.html">Contributing
documentation</a></p>
</div>