Remove JVSD docs from user guide [#130994985]

Project: http://git-wip-us.apache.org/repos/asf/incubator-geode/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-geode/commit/ada7dcb9
Tree: http://git-wip-us.apache.org/repos/asf/incubator-geode/tree/ada7dcb9
Diff: http://git-wip-us.apache.org/repos/asf/incubator-geode/diff/ada7dcb9

Branch: refs/staging/docs-grant1
Commit: ada7dcb9ce77cca48e12b4ab547bb4405a111b8a
Parents: d6dc0fe
Author: Dave Barnes <[email protected]>
Authored: Fri Sep 23 10:23:22 2016 -0700
Committer: Dave Barnes <[email protected]>
Committed: Fri Sep 23 10:23:22 2016 -0700

----------------------------------------------------------------------
 .../statistics/viewing_statistics.html.md.erb   |   2 +-
 tools_modules/book_intro.html.md.erb            |   3 -
 tools_modules/jvsd.html.md.erb                  | 111 -------------------
 3 files changed, 1 insertion(+), 115 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-geode/blob/ada7dcb9/managing/statistics/viewing_statistics.html.md.erb
----------------------------------------------------------------------
diff --git a/managing/statistics/viewing_statistics.html.md.erb 
b/managing/statistics/viewing_statistics.html.md.erb
index 6c983aa..eba7f3a 100644
--- a/managing/statistics/viewing_statistics.html.md.erb
+++ b/managing/statistics/viewing_statistics.html.md.erb
@@ -2,6 +2,6 @@
 title:  Viewing Archived Statistics
 ---
 
-When sampling and archiving are enabled, you can examine archived historical 
data to help diagnose performance problems. Study statistics in archive files 
by using the gfsh `show metrics` command. You may also wish to use a separate 
statistics display utility, such as [Java Visual Statistics Display 
(JVSD)](../../tools_modules/jvsd.html).
+When sampling and archiving are enabled, you can examine archived historical 
data to help diagnose performance problems. Study statistics in archive files 
by using the gfsh `show metrics` command. You may also wish to use a separate 
statistics display utility.
 
 

http://git-wip-us.apache.org/repos/asf/incubator-geode/blob/ada7dcb9/tools_modules/book_intro.html.md.erb
----------------------------------------------------------------------
diff --git a/tools_modules/book_intro.html.md.erb 
b/tools_modules/book_intro.html.md.erb
index faa6527..962f551 100644
--- a/tools_modules/book_intro.html.md.erb
+++ b/tools_modules/book_intro.html.md.erb
@@ -30,8 +30,5 @@ title:  Tools and Modules
 
     The Geode Redis adapter allows Geode to function as a drop-in replacement 
for a Redis data store, letting Redis applications take advantage of Geode’s 
scaling capabilities without changing their client code. Redis clients connect 
to a Geode server in the same way they connect to a Redis server, using an IP 
address and a port number.
 
--   **[Java Visual Statistics Display (JVSD)](../tools_modules/jvsd.html)**
-
-    The Java Visual Statistics Display utility reads Geode statistics and 
produces graphical displays for analysis.
 
 

http://git-wip-us.apache.org/repos/asf/incubator-geode/blob/ada7dcb9/tools_modules/jvsd.html.md.erb
----------------------------------------------------------------------
diff --git a/tools_modules/jvsd.html.md.erb b/tools_modules/jvsd.html.md.erb
deleted file mode 100644
index 73f0ec9..0000000
--- a/tools_modules/jvsd.html.md.erb
+++ /dev/null
@@ -1,111 +0,0 @@
----
-title: Java Visual Statistics Display (JVSD)
----
-<a id="topic_523F6DE33FE54307BBE8F83BB7D9355D"></a>
-
-
-The Java Visual Statistics Display utility reads Geode statistics and produces 
graphical displays for analysis.
-
--   **[JVSD Overview](#jvsd-overview)**
-
--   **[Installing and Running JVSD](#installing-jvsd)**
-
--   **[Configure Statistics Sampling in Geode](#configure-statistics)**
-
-## JVSD Overview
-
-JVSD is an open source tool for review of the Geode metrics.
-
-## Installing and Running JVSD
-
-JVSD is available as a feature branch of the Geode repository. To install and 
run JVSD:
-
-1. Make sure that you have a recent checkout of Geode and that you are on the 
JVSD branch, `feature/GEODE-78`.
-
-    ``` pre
-    $ git status 
-    On branch feature/GEODE-78
-    Your branch is up-to-date with 'origin/feature/GEODE-78'.
-    nothing to commit, working directory clean
-    ```
-
-2. Build the MultiAxisChart:
-
-    ``` pre
-    $ ./gradlew geode-jvsd:clean geode-jvsd:MultiAxisChart
-    :geode-jvsd:clean
-    :clean UP-TO-DATE
-    :geode-jvsd:MultiAxisChartFX
-    Cloning MultiAxisChartFX... 
-    Cloning MultiAxisChartFX... Done! 
-    Installing MultiAxisChartFX into local maven repository... 
-    Installing MultiAxisChartFX into local maven repository... Done!  
-
-    BUILD SUCCESSFUL 
-    ```
-
-    At this point you should have the MultiAxisChart JAR file:
-
-    ``` pre
-    $ ls -la 
geode-jvsd/build/MultiAxisChartFX/target/MultiAxisChart-1.0-SNAPSHOT.jar  
-    -rw-r--r-- 1 jvuser staff 69979 Apr 1 07:21 
geode-jvsd/build/MultiAxisChartFX/target/MultiAxisChart-1.0-SNAPSHOT.jar 
-    ```
-
-    This JAR file should also now be installed in your local maven repository:
-
-    ``` pre
-    $ ls -la ~/.m2/repository/com/pivotal/javafx/MultiAxisChart/1.0-SNAPSHOT
-    total 168 
-    drwxr-xr-x 6 jvuser staff   204   Apr 1 07:14 . 
-    drwxr-xr-x 4 jvuser staff   136   Apr 1 07:14 .. 
-    -rw-r--r-- 1 jvuser staff 69979 Apr 1 07:21 
MultiAxisChart-1.0-SNAPSHOT.jar 
-    -rw-r--r-- 1 jvuser staff  1751  Apr 1 07:20 
MultiAxisChart-1.0-SNAPSHOT.pom 
-    -rw-r--r-- 1 jvuser staff   201   Apr 1 07:21 _remote.repositories 
-    -rw-r--r-- 1 jvuser staff   712   Apr 1 07:21 maven-metadata-local.xml
-    ```
-
-3. Build JVSD:
-
-    ``` pre
-    $ ./gradlew -x test geode-jvsd:installDist 
-    :geode-jvsd:MultiAxisChartFX SKIPPED 
-    :geode-jvsd:compileJava 
-    Note: Some input files use unchecked or unsafe operations. 
-    Note: Recompile with -Xlint:unchecked for details. 
-    :geode-jvsd:processResources 
-    :geode-jvsd:classes 
-    :geode-jvsd:jar 
-    :geode-jvsd:startScripts 
-    :geode-jvsd:installDist 
-
-    BUILD SUCCESSFUL
-    ```
-
-4. Invoke JVSD from the command line:
-
-    ``` pre
-    $ ./geode-jvsd/build/install/geode-jvsd/bin/geode-jvsd
-    ```
-
-<img src="../images/jVSD-startup.png" class="image" />
-
-## Configure Statistics Sampling in Geode
-
-Before you use JVSD, you must enable the collection of Geode statistics at 
runtime. Set the following configurations in gemfire.properties:
-
-``` pre
-statistic-sampling-enabled=true
-statistic-archive-file=myStats.gfs
-```
-
-Since collecting statistics at the default sampling rate of once every second 
does not affect performance, we recommend that sampling should always be 
enabled, including during development, testing, and in production.
-
-There is a special category of statistics called time-based statistics that 
can be very useful in troubleshooting and assessing the performance of some 
Geode operations, but they should be used with caution because their collection 
can affect performance. These statistics can be enabled using the following 
gemfire.properties configuration:
-
-``` pre
-enable-time-statistics=true
-```
-
-When the distributed system is up and running, every Geode instance generates 
a statistics file. To simplify browsing these statistics in JVSD, you may want 
to copy all the statistics files from all members into one directory so that 
you can easily load the files into JVSD.
-
-

Reply via email to