You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@eagle.apache.org by qingwen220 <gi...@git.apache.org> on 2016/09/22 07:13:09 UTC

[GitHub] incubator-eagle pull request #449: EAGLE-545: hdfs/bhase/yarn topology healt...

GitHub user qingwen220 opened a pull request:

    https://github.com/apache/incubator-eagle/pull/449

    EAGLE-545: hdfs/bhase/yarn topology health check

    https://issues.apache.org/jira/browse/EAGLE-545
    
    The app aims to monitor those services with a master-slave structured topology and provides metrics at the HOST level. Specifically, this app will support the following services healthy check
    * HDFS: namenode, datanode, journalnode
    * HBASE: hmaster, regionservers
    * YARN: resourcemanager, nodemanagers, historyserver


You can merge this pull request into a Git repository by running:

    $ git pull https://github.com/qingwen220/incubator-eagle topology

Alternatively you can review and apply these changes as the patch at:

    https://github.com/apache/incubator-eagle/pull/449.patch

To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:

    This closes #449
    
----
commit 944f2e9f85fea6a619292f1fadf217d521cd18d4
Author: Zhao, Qingwen <qi...@ebay.com>
Date:   2016-09-04T14:49:32Z

    add topology check app

commit f159a86fba50351e82d59f1a959154a9607fc84d
Author: Qingwen Zhao <qi...@gmail.com>
Date:   2016-09-05T03:13:51Z

    update config

commit 4a3d930655a38a8cd9938160c9c9cb53611724c3
Author: Qingwen Zhao <qi...@gmail.com>
Date:   2016-09-05T03:13:51Z

    update config

commit dec82717e93656f705b3e31399cac1abf0782f28
Author: Qingwen Zhao <qi...@gmail.com>
Date:   2016-09-12T08:23:56Z

    Merge branches 'topology' and 'topology' of https://github.com/qingwen220/incubator-eagle into topology

commit 56ebae70fb3616b342d730487175d18c1565aa49
Author: Qingwen Zhao <qi...@gmail.com>
Date:   2016-09-12T08:33:00Z

    Merge branch 'master' of https://git-wip-us.apache.org/repos/asf/incubator-eagle into topology

commit 5a429450d514b319d35828ee8a677af7cff59b7d
Author: Qingwen Zhao <qi...@gmail.com>
Date:   2016-09-14T02:26:33Z

    update

commit 5cab972f08d8acbdc4ec588e4499c20c64e6184b
Author: Qingwen Zhao <qi...@gmail.com>
Date:   2016-09-18T13:03:26Z

    update hdfs parser

commit 1fc5b5e91c26ef63dfec38514037f4e70e2f4b84
Author: Qingwen Zhao <qi...@gmail.com>
Date:   2016-09-19T11:03:24Z

    add mr topology parser

commit a22e4225961ab8f23e72d31c2adda827293eda6c
Author: Zhao, Qingwen <qi...@ebay.com>
Date:   2016-09-19T15:31:10Z

    add hbase topology parse

commit 4dfabfb566b26128e1ec527fc8bbf6e3ebb9be8c
Author: Qingwen Zhao <qi...@gmail.com>
Date:   2016-09-20T09:59:08Z

    update add topology persist bolt

commit 8210949ef3f2cc64ba257fae1616f5bd00045002
Author: Zhao, Qingwen <qi...@ebay.com>
Date:   2016-09-20T16:08:47Z

    disable unit tests

commit b5543a5ff79d8a222f7c444aba4fffb57e6c8cfb
Author: Zhao, Qingwen <qi...@ebay.com>
Date:   2016-09-20T17:02:17Z

    Fix a bug in topologyCheckSpout

commit 51c4d987ea7d2354b0e95a5ef1d115ee237c6b90
Author: Zhao, Qingwen <qi...@ebay.com>
Date:   2016-09-21T02:49:40Z

    add exception handling

commit bbb41ff25541f6fec74db13ee853c43542ae5ece
Author: Zhao, Qingwen <qi...@ebay.com>
Date:   2016-09-21T11:11:36Z

    Fix bugs in topology check

commit 8af527aac164033867f408e9b53a99794486151f
Author: Zhao, Qingwen <qi...@ebay.com>
Date:   2016-09-22T06:31:26Z

    add history server monitoring

----


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

[GitHub] incubator-eagle pull request #449: EAGLE-545: hdfs/bhase/yarn topology healt...

Posted by haoch <gi...@git.apache.org>.
Github user haoch commented on a diff in the pull request:

    https://github.com/apache/incubator-eagle/pull/449#discussion_r79988603
  
    --- Diff: eagle-topology-check/eagle-topology-app/src/main/java/org/apache/eagle/topology/extractor/TopologyCrawler.java ---
    @@ -0,0 +1,26 @@
    +/*
    + * Licensed to the Apache Software Foundation (ASF) under one or more
    + * contributor license agreements.  See the NOTICE file distributed with
    + * this work for additional information regarding copyright ownership.
    + * The ASF licenses this file to You under the Apache License, Version 2.0
    + * (the "License"); you may not use this file except in compliance with
    + * the License.  You may obtain a copy of the License at
    + *
    + *     http://www.apache.org/licenses/LICENSE-2.0
    + *
    + *  Unless required by applicable law or agreed to in writing, software
    + *  distributed under the License is distributed on an "AS IS" BASIS,
    + *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    + *  See the License for the specific language governing permissions and
    + *  limitations under the License.
    + *
    + */
    +
    +package org.apache.eagle.topology.extractor;
    +
    +
    +
    +public interface TopologyCrawler {
    +
    +    void extract();
    --- End diff --
    
    Add some meaningful java docs on interface methods


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

[GitHub] incubator-eagle issue #449: EAGLE-545: hdfs/bhase/yarn topology health check

Posted by haoch <gi...@git.apache.org>.
Github user haoch commented on the issue:

    https://github.com/apache/incubator-eagle/pull/449
  
    @qingwen220 how about this PR? Is it ready to merge?


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

[GitHub] incubator-eagle pull request #449: EAGLE-545: hdfs/bhase/yarn topology healt...

Posted by asfgit <gi...@git.apache.org>.
Github user asfgit closed the pull request at:

    https://github.com/apache/incubator-eagle/pull/449


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---