[ 
https://issues.apache.org/jira/browse/NIFI-2724?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15595473#comment-15595473
 ] 

Brian Burnett commented on NIFI-2724:
-------------------------------------

I performed the rebase.  Is it possible that you could verify as I was only 
given 1 pick line and none to squash?

Here are the step I took if it helps - Thanks.

$ git status
On branch nifi-2724
nothing to commit, working directory clean
$ 
$ git remote -v
origin  https://github.com/apache/nifi.git (fetch)
origin  https://github.com/apache/nifi.git (push)
upstream        https://github.com/apache/nifi.git (fetch)
upstream        https://github.com/apache/nifi.git (push)
$ git remote add nifi https://github.com/apache/nifi.git
$ git remote -v
nifi    https://github.com/apache/nifi.git (fetch)
nifi    https://github.com/apache/nifi.git (push)
origin  https://github.com/apache/nifi.git (fetch)
origin  https://github.com/apache/nifi.git (push)
upstream        https://github.com/apache/nifi.git (fetch)
upstream        https://github.com/apache/nifi.git (push)
$ git fetch nifi
remote: Counting objects: 5095, done.
remote: Compressing objects: 100% (39/39), done.
remote: Total 5095 (delta 1453), reused 1449 (delta 1447), pack-reused 3600
Receiving objects: 100% (5095/5095), 3.05 MiB | 809.00 KiB/s, done.
Resolving deltas: 100% (1968/1968), completed with 768 local objects.
>From https://github.com/apache/nifi
 * [new branch]      0.x        -> nifi/0.x
 * [new branch]      NIFI-1122_nifi-0.4.0-RC1 -> nifi/NIFI-1122_nifi-0.4.0-RC1
 * [new branch]      NIFI-1122_nifi-0.4.0-RC2 -> nifi/NIFI-1122_nifi-0.4.0-RC2
 * [new branch]      NIFI-1323  -> nifi/NIFI-1323
 * [new branch]      NIFI-1379-RC1 -> nifi/NIFI-1379-RC1
 * [new branch]      NIFI-1379-RC2 -> nifi/NIFI-1379-RC2
 * [new branch]      NIFI-1379-RC3 -> nifi/NIFI-1379-RC3
 * [new branch]      NIFI-1556-RC1 -> nifi/NIFI-1556-RC1
 * [new branch]      NIFI-1556-RC2 -> nifi/NIFI-1556-RC2
 * [new branch]      NIFI-1634-RC1 -> nifi/NIFI-1634-RC1
 * [new branch]      NIFI-1634-rc2 -> nifi/NIFI-1634-rc2
 * [new branch]      NIFI-2112-rc1 -> nifi/NIFI-2112-rc1
 * [new branch]      NIFI-2112-rc2 -> nifi/NIFI-2112-rc2
 * [new branch]      NIFI-2498-rc1 -> nifi/NIFI-2498-rc1
 * [new branch]      NIFI-2676-rc1 -> nifi/NIFI-2676-rc1
 * [new branch]      NIFI-2896-RC1 -> nifi/NIFI-2896-RC1
 * [new branch]      NIFI-725-master -> nifi/NIFI-725-master
 * [new branch]      NIFI-818   -> nifi/NIFI-818
 * [new branch]      NIFI-964   -> nifi/NIFI-964
 * [new branch]      appveyor-improvement -> nifi/appveyor-improvement
 * [new branch]      improve-prov-performance -> nifi/improve-prov-performance
 * [new branch]      journaling-prov-repo -> nifi/journaling-prov-repo
 * [new branch]      master     -> nifi/master
 * [new branch]      prov-query-language -> nifi/prov-query-language
 * [new branch]      release-nifi-0.1.0-rc13 -> nifi/release-nifi-0.1.0-rc13
 * [new branch]      release-nifi-0.2.0-incubating-rc1 -> 
nifi/release-nifi-0.2.0-incubating-rc1
 * [new branch]      release-nifi-0.3.0-rc1 -> nifi/release-nifi-0.3.0-rc1
 * [new branch]      support/nifi-0.5.x -> nifi/support/nifi-0.5.x
 * [new branch]      support/nifi-0.6.x -> nifi/support/nifi-0.6.x
 * [new tag]         nifi-0.7.1-RC1 -> nifi-0.7.1-RC1
 * [new tag]         rel/nifi-0.7.1 -> rel/nifi-0.7.1
$ git show-branch --current
! [master] NIFI-2722: - Updating the component entity as long as the proposed 
entity is not older than the current one since stats are bundled in the entity 
too.
 * [nifi-2724] NIFI-2724 New JMX Processor
--
 * [nifi-2724] NIFI-2724 New JMX Processor
+* [master] NIFI-2722: - Updating the component entity as long as the proposed 
entity is not older than the current one since stats are bundled in the entity 
too.
$ git merge-base NIFI-2724 nifi/master
d37480eaffec7f24238798d54dd09b3d8526cef8
$ git rebase -i d37480eaffec7f24238798d54dd09b3d8526cef8
Successfully rebased and updated refs/heads/nifi-2724.
$ git rebase nifi/master
First, rewinding head to replay your work on top of it...
Applying: NIFI-2724 New JMX Processor
$ git config --global push.default simple
$ git push -f
fatal: The current branch nifi-2724 has no upstream branch.
To push the current branch and set the remote as upstream, use

    git push --set-upstream origin nifi-2724

> JMX Processor
> -------------
>
>                 Key: NIFI-2724
>                 URL: https://issues.apache.org/jira/browse/NIFI-2724
>             Project: Apache NiFi
>          Issue Type: New Feature
>          Components: Extensions
>    Affects Versions: 1.0.0
>         Environment: All platforms with Java RMI support for JMX
>            Reporter: Brian Burnett
>            Assignee: Joseph Witt
>            Priority: Minor
>              Labels: processor
>             Fix For: 1.1.0
>
>         Attachments: 0001-NIFI-2724-New-JMX-Processor.patch
>
>   Original Estimate: 24h
>  Remaining Estimate: 24h
>
> The JMX Processor feature addition includes only GetJMX without 
> SecurityManager capabilities at this time.  The processor in its current 
> state is capable of pulling MBean Property and Attribute values from a remote 
> RMI Server.  Each set of Mbean data is wrapped in a JSON formatted FlowFile 
> for downstream processing.  It has the ability to control content with 
> whitelist and blacklist properties.
> Possible use for this processor and the reason it was created is to help make 
> sense of Kafka server metrics.
> Will followup with a SecurityManager Context Service and PutJMX Processor.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

Reply via email to