Repository: eagle
Updated Branches:
  refs/heads/branch-0.5 7bb0007cd -> 06d971622


[EAGLE-973] removing incubating from docs

Author: Jay <jhsonl...@gmail.com>

Closes #968 from jhsenjaliya/EAGLE-973.


Project: http://git-wip-us.apache.org/repos/asf/eagle/repo
Commit: http://git-wip-us.apache.org/repos/asf/eagle/commit/06d97162
Tree: http://git-wip-us.apache.org/repos/asf/eagle/tree/06d97162
Diff: http://git-wip-us.apache.org/repos/asf/eagle/diff/06d97162

Branch: refs/heads/branch-0.5
Commit: 06d971622b6707d37871b0ffea07b71ad1108262
Parents: 7bb0007
Author: Jay <jhsonl...@gmail.com>
Authored: Mon Aug 7 23:58:00 2017 -0700
Committer: Jay <jhsonl...@gmail.com>
Committed: Mon Aug 7 23:58:00 2017 -0700

----------------------------------------------------------------------
 docs/docs/applications.md           |  6 +++---
 docs/docs/developing-application.md |  6 +++---
 docs/docs/getting-started.md        | 12 ++++++------
 docs/docs/underlying-design.md      |  8 ++++----
 4 files changed, 16 insertions(+), 16 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/eagle/blob/06d97162/docs/docs/applications.md
----------------------------------------------------------------------
diff --git a/docs/docs/applications.md b/docs/docs/applications.md
index d3b59e6..4f67bdc 100644
--- a/docs/docs/applications.md
+++ b/docs/docs/applications.md
@@ -181,9 +181,9 @@ The example policy monitors the 'kill' operation on jobId 
under "BASE".
 
 * Setup metric collector for monitored Hadoop/HBase using hadoop_jmx_collector 
and modify the configuration.
 
-    * Collector scripts: 
[hadoop_jmx_collector](https://github.com/apache/incubator-eagle/tree/master/eagle-external/hadoop_jmx_collector)
+    * Collector scripts: 
[hadoop_jmx_collector](https://github.com/apache/eagle/tree/master/eagle-external/hadoop_jmx_collector)
 
-    * Rename config-sample.json to config.json: 
[config-sample.json](https://github.com/apache/incubator-eagle/blob/master/eagle-external/hadoop_jmx_collector/config-sample.json)
+    * Rename config-sample.json to config.json: 
[config-sample.json](https://github.com/apache/eagle/blob/master/eagle-external/hadoop_jmx_collector/config-sample.json)
 
             {
                 env: {
@@ -415,7 +415,7 @@ Then, enable the policy in web ui after it's created. Eagle 
will schedule it aut
 
     * Overall metrics of the cluster: 
http://{RM_HTTP_ADDRESS}:{PORT}/ws/v1/cluster/metrics
 
-            by version 0.5-incubating, mainly focusing at metrics
+            by version 0.5, mainly focusing at metrics
              - `appsPending`
              - `allocatedMB`
              - `totalMB`

http://git-wip-us.apache.org/repos/asf/eagle/blob/06d97162/docs/docs/developing-application.md
----------------------------------------------------------------------
diff --git a/docs/docs/developing-application.md 
b/docs/docs/developing-application.md
index 07b7131..f3ec758 100644
--- a/docs/docs/developing-application.md
+++ b/docs/docs/developing-application.md
@@ -39,7 +39,7 @@ Eagle application framework is designed for end-to-end 
lifecycle of applications
 
 * Fork and clone eagle source code repository using GIT.
 
-        git clone https://github.com/apache/incubator-eagle.git
+        git clone https://github.com/apache/eagle.git
 
 * Run Eagle Server : execute “org.apache.eagle.server.ServerDebug” under 
eagle-server in IDE or with maven command line.
 
@@ -135,7 +135,7 @@ eagle-app-example/
 │           └── application.conf
 ```
 
-**Eagle Example Application** - 
[eagle-app-example](https://github.com/haoch/incubator-eagle/tree/master/eagle-examples/eagle-app-example)
+**Eagle Example Application** - 
[eagle-app-example](https://github.com/apache/eagle/tree/master/eagle-examples/eagle-app-example)
 
 **Description** - A typical eagle application is mainly consisted of:
 
@@ -148,7 +148,7 @@ eagle-app-example/
         <application>
            <type>EXAMPLE_APPLICATION</type>
            <name>Example Monitoring Application</name>
-           <version>0.5.0-incubating</version>
+           <version>0.5.0</version>
            <configuration>
                <property>
                    <name>message</name>

http://git-wip-us.apache.org/repos/asf/eagle/blob/06d97162/docs/docs/getting-started.md
----------------------------------------------------------------------
diff --git a/docs/docs/getting-started.md b/docs/docs/getting-started.md
index c2987f2..6b9a0a5 100644
--- a/docs/docs/getting-started.md
+++ b/docs/docs/getting-started.md
@@ -118,10 +118,10 @@ Here is an example ApplicationDesc of `JPM_WEB_APP`
         {
         type: "JPM_WEB_APP",
         name: "Job Performance Monitoring Web ",
-        version: "0.5.0-incubating",
+        version: "0.5.0",
         description: null,
         appClass: "org.apache.eagle.app.StaticApplication",
-        jarPath: 
"/opt/eagle/0.5.0-incubating-SNAPSHOT-build-20161103T0332/eagle-0.5.0-incubating-SNAPSHOT/lib/eagle-topology-0.5.0-incubating-SNAPSHOT-hadoop-2.4.1-11-assembly.jar",
+        jarPath: 
"/opt/eagle/eagle-0.5.0/lib/eagle-topology-0.5.0-SNAPSHOT-hadoop-2.4.1-11-assembly.jar",
         viewPath: "/apps/jpm",
         providerClass: "org.apache.eagle.app.jpm.JPMWebApplicationProvider",
         configuration: {
@@ -144,11 +144,11 @@ Here is an example ApplicationDesc of `JPM_WEB_APP`
         executable: false,
         dependencies: [{
             type: "MR_RUNNING_JOB_APP",
-            version: "0.5.0-incubating",
+            version: "0.5.0",
             required: true
         }, {
             type: "MR_HISTORY_JOB_APP",
-            version: "0.5.0-incubating",
+            version: "0.5.0",
             required: true
         }]
         }
@@ -167,7 +167,7 @@ For example, in file 
`META-INF/services/org.apache.eagle.app.spi.ApplicationProv
 
 # Concepts
 
-* Here are some terms we are using in Apache Eagle (incubating, called Eagle 
in the following), please check them for your reference. They are basic 
knowledge of Eagle which also will help to well understand Eagle.
+* Here are some terms we are using in Apache Eagle (called Eagle in the 
following), please check them for your reference. They are basic knowledge of 
Eagle which also will help to well understand Eagle.
 
 ## Site
 
@@ -227,7 +227,7 @@ Notice:
 
 * Download the latest version of Eagle source code.
 
-        git clone https://github.com/apache/incubator-eagle.git
+        git clone https://github.com/apache/eagle.git
         
 * Build the source code, and a tar.gz package will be generated under 
eagle-server-assembly/target
 

http://git-wip-us.apache.org/repos/asf/eagle/blob/06d97162/docs/docs/underlying-design.md
----------------------------------------------------------------------
diff --git a/docs/docs/underlying-design.md b/docs/docs/underlying-design.md
index 03af0d8..4f96869 100644
--- a/docs/docs/underlying-design.md
+++ b/docs/docs/underlying-design.md
@@ -75,10 +75,10 @@ Here is a ApplicationDesc example of `JPM_WEB_APP`
         {
             type: "JPM_WEB_APP",
             name: "Job Performance Monitoring Web ",
-            version: "0.5.0-incubating",
+            version: "0.5.0",
             description: null,
             appClass: "org.apache.eagle.app.StaticApplication",
-            jarPath: 
"/opt/eagle/0.5.0-incubating-SNAPSHOT-build-20161103T0332/eagle-0.5.0-incubating-SNAPSHOT/lib/eagle-topology-0.5.0-incubating-SNAPSHOT-hadoop-2.4.1-11-assembly.jar",
+            jarPath: 
"/opt/eagle/eagle-0.5.0/lib/eagle-topology-0.5.0-hadoop-2.4.1-11-assembly.jar",
             viewPath: "/apps/jpm",
             providerClass: 
"org.apache.eagle.app.jpm.JPMWebApplicationProvider",
             configuration: {
@@ -101,11 +101,11 @@ Here is a ApplicationDesc example of `JPM_WEB_APP`
             executable: false,
             dependencies: [{
                 type: "MR_RUNNING_JOB_APP",
-                version: "0.5.0-incubating",
+                version: "0.5.0",
                 required: true
             }, {
                 type: "MR_HISTORY_JOB_APP",
-                version: "0.5.0-incubating",
+                version: "0.5.0",
                 required: true
             }]
         }

Reply via email to