Added: 
nifi/site/trunk/docs/nifi-docs/components/org.apache.nifi.processors.kafka.pubsub.PublishKafka_0_10/index.html
URL: 
http://svn.apache.org/viewvc/nifi/site/trunk/docs/nifi-docs/components/org.apache.nifi.processors.kafka.pubsub.PublishKafka_0_10/index.html?rev=1758322&view=auto
==============================================================================
--- 
nifi/site/trunk/docs/nifi-docs/components/org.apache.nifi.processors.kafka.pubsub.PublishKafka_0_10/index.html
 (added)
+++ 
nifi/site/trunk/docs/nifi-docs/components/org.apache.nifi.processors.kafka.pubsub.PublishKafka_0_10/index.html
 Tue Aug 30 03:55:02 2016
@@ -0,0 +1 @@
+<!DOCTYPE html><html lang="en"><head><meta 
charset="utf-8"></meta><title>PublishKafka_0_10</title><link rel="stylesheet" 
href="../../css/component-usage.css" 
type="text/css"></link></head><body><h2>Description: </h2><p>Sends the contents 
of a FlowFile as a message to Apache Kafka using the Kafka 0.10 producer. The 
messages to send may be individual FlowFiles or may be delimited, using a 
user-specified delimiter, such as a new-line.  Please note there are cases 
where the publisher can get into an indefinite stuck state.  We are closely 
monitoring how this evolves in the Kafka community and will take advantage of 
those fixes as soon as we can.  In the mean time it is possible to enter states 
where the only resolution will be to restart the JVM NiFi runs on.</p><h3>Tags: 
</h3><p>Apache, Kafka, Put, Send, Message, PubSub, 0.10</p><h3>Properties: 
</h3><p>In the list below, the names of required properties appear in 
<strong>bold</strong>. Any other properties (not in bold) are considered 
 optional. The table also indicates any default values, and whether a property 
supports the <a href="../../html/expression-language-guide.html">NiFi 
Expression Language</a>.</p><table id="properties"><tr><th>Name</th><th>Default 
Value</th><th>Allowable Values</th><th>Description</th></tr><tr><td 
id="name"><strong>Kafka Brokers</strong></td><td 
id="default-value">localhost:9092</td><td id="allowable-values"></td><td 
id="description">A comma-separated list of known Kafka Brokers in the format 
&lt;host&gt;:&lt;port&gt;<br/><strong>Supports Expression Language: 
true</strong></td></tr><tr><td id="name"><strong>Security 
Protocol</strong></td><td id="default-value">PLAINTEXT</td><td 
id="allowable-values"><ul><li>PLAINTEXT <img 
src="../../html/images/iconInfo.png" alt="PLAINTEXT" 
title="PLAINTEXT"></img></li><li>SSL <img src="../../html/images/iconInfo.png" 
alt="SSL" title="SSL"></img></li><li>SASL_PLAINTEXT <img 
src="../../html/images/iconInfo.png" alt="SASL_PLAINTEXT" title="SASL_PLAINTEXT
 "></img></li><li>SASL_SSL <img src="../../html/images/iconInfo.png" 
alt="SASL_SSL" title="SASL_SSL"></img></li></ul></td><td 
id="description">Protocol used to communicate with brokers. Corresponds to 
Kafka's 'security.protocol' property.</td></tr><tr><td id="name">Kerberos 
Service Name</td><td id="default-value"></td><td id="allowable-values"></td><td 
id="description">The Kerberos principal name that Kafka runs as. This can be 
defined either in Kafka's JAAS config or in Kafka's config. Corresponds to 
Kafka's 'security.protocol' property.It is ignored unless one of the SASL 
options of the &lt;Security Protocol&gt; are selected.</td></tr><tr><td 
id="name">SSL Context Service</td><td id="default-value"></td><td 
id="allowable-values"><strong>Controller Service API: 
</strong><br/>SSLContextService<br/><strong>Implementation:</strong><br/><a 
href="../org.apache.nifi.ssl.StandardSSLContextService/index.html">StandardSSLContextService</a></td><td
 id="description">Specifies the SSL Context S
 ervice to use for communicating with Kafka.</td></tr><tr><td 
id="name"><strong>Topic Name</strong></td><td id="default-value"></td><td 
id="allowable-values"></td><td id="description">The name of the Kafka Topic to 
publish to.<br/><strong>Supports Expression Language: 
true</strong></td></tr><tr><td id="name"><strong>Delivery 
Guarantee</strong></td><td id="default-value">0</td><td 
id="allowable-values"><ul><li>Best Effort <img 
src="../../html/images/iconInfo.png" alt="FlowFile will be routed to success 
after successfully writing the content to a Kafka node, without waiting for a 
response. This provides the best performance but may result in data loss." 
title="FlowFile will be routed to success after successfully writing the 
content to a Kafka node, without waiting for a response. This provides the best 
performance but may result in data loss."></img></li><li>Guarantee Single Node 
Delivery <img src="../../html/images/iconInfo.png" alt="FlowFile will be routed 
to success if the message 
 is received by a single Kafka node, whether or not it is replicated. This is 
faster than &lt;Guarantee Replicated Delivery&gt; but can result in data loss 
if a Kafka node crashes" title="FlowFile will be routed to success if the 
message is received by a single Kafka node, whether or not it is replicated. 
This is faster than &lt;Guarantee Replicated Delivery&gt; but can result in 
data loss if a Kafka node crashes"></img></li><li>Guarantee Replicated Delivery 
<img src="../../html/images/iconInfo.png" alt="FlowFile will be routed to 
failure unless the message is replicated to the appropriate number of Kafka 
Nodes according to the Topic configuration" title="FlowFile will be routed to 
failure unless the message is replicated to the appropriate number of Kafka 
Nodes according to the Topic configuration"></img></li></ul></td><td 
id="description">Specifies the requirement for guaranteeing that a message is 
sent to Kafka. Corresponds to Kafka's 'acks' property.</td></tr><tr><td 
id="name">Ka
 fka Key</td><td id="default-value"></td><td id="allowable-values"></td><td 
id="description">The Key to use for the Message.  It will be serialized as 
UTF-8 bytes. If not specified then the flow file attribute kafka.key is used if 
present and we're not demarcating. In that case the hex string is coverted to 
its byteform and written as a byte[] key.<br/><strong>Supports Expression 
Language: true</strong></td></tr><tr><td id="name"><strong>Key Attribute 
Encoding</strong></td><td id="default-value">utf-8</td><td 
id="allowable-values"><ul><li>UTF-8 Encoded <img 
src="../../html/images/iconInfo.png" alt="The key is interpreted as a UTF-8 
Encoded string." title="The key is interpreted as a UTF-8 Encoded 
string."></img></li><li>Hex Encoded <img src="../../html/images/iconInfo.png" 
alt="The key is interpreted as arbitrary binary data that is encoded using 
hexadecimal characters with uppercase letters." title="The key is interpreted 
as arbitrary binary data that is encoded using hexadecimal ch
 aracters with uppercase letters."></img></li></ul></td><td 
id="description">FlowFiles that are emitted have an attribute named 
'kafka.key'. This property dictates how the value of the attribute should be 
encoded.</td></tr><tr><td id="name">Message Demarcator</td><td 
id="default-value"></td><td id="allowable-values"></td><td 
id="description">Specifies the string (interpreted as UTF-8) to use for 
demarcating multiple messages within a single FlowFile. If not specified, the 
entire content of the FlowFile will be used as a single message. If specified, 
the contents of the FlowFile will be split on this delimiter and each section 
sent as a separate Kafka message. To enter special character such as 'new line' 
use CTRL+Enter or Shift+Enter depending on your OS.<br/><strong>Supports 
Expression Language: true</strong></td></tr><tr><td id="name"><strong>Max 
Request Size</strong></td><td id="default-value">1 MB</td><td 
id="allowable-values"></td><td id="description">The maximum size of a reque
 st in bytes. Corresponds to Kafka's 'max.request.size' property and defaults 
to 1 MB (1048576).</td></tr><tr><td id="name"><strong>Meta Data Wait 
Time</strong></td><td id="default-value">30 sec</td><td 
id="allowable-values"></td><td id="description">The amount of time 
KafkaConsumer will wait to obtain metadata during the 'send' call before 
failing the entire 'send' call. Corresponds to Kafka's 'max.block.ms' 
property<br/><strong>Supports Expression Language: 
true</strong></td></tr><tr><td id="name">Partitioner class</td><td 
id="default-value">org.apache.kafka.clients.producer.internals.DefaultPartitioner</td><td
 id="allowable-values"><ul><li>RoundRobinPartitioner <img 
src="../../html/images/iconInfo.png" alt="Messages will be assigned partitions 
in a round-robin fashion, sending the first message to Partition 1, the next 
Partition to Partition 2, and so on, wrapping as necessary." title="Messages 
will be assigned partitions in a round-robin fashion, sending the first message 
to Part
 ition 1, the next Partition to Partition 2, and so on, wrapping as 
necessary."></img></li><li>DefaultPartitioner <img 
src="../../html/images/iconInfo.png" alt="Messages will be assigned to random 
partitions." title="Messages will be assigned to random 
partitions."></img></li></ul></td><td id="description">Specifies which class to 
use to compute a partition id for a message. Corresponds to Kafka's 
'partitioner.class' property.</td></tr><tr><td id="name"><strong>Compression 
Type</strong></td><td id="default-value">none</td><td 
id="allowable-values"><ul><li>none</li><li>gzip</li><li>snappy</li><li>lz4</li></ul></td><td
 id="description">This parameter allows you to specify the compression codec 
for all data generated by this producer.</td></tr></table><h3>Dynamic 
Properties: </h3><p>Dynamic Properties allow the user to specify both the name 
and value of a property.<table 
id="dynamic-properties"><tr><th>Name</th><th>Value</th><th>Description</th></tr><tr><td
 id="name">The name of a Kafka
  configuration property.</td><td id="value">The value of a given Kafka 
configuration property.</td><td>These properties will be added on the Kafka 
configuration after loading any provided configuration properties. In the event 
a dynamic property represents a property that was already set, its value will 
be ignored and WARN message logged. For the list of available Kafka properties 
please refer to: http://kafka.apache.org/documentation.html#configuration. 
</td></tr></table></p><h3>Relationships: </h3><table 
id="relationships"><tr><th>Name</th><th>Description</th></tr><tr><td>success</td><td>FlowFiles
 for which all content was sent to Kafka.</td></tr><tr><td>failure</td><td>Any 
FlowFile that cannot be sent to Kafka will be routed to this 
Relationship</td></tr></table><h3>Reads Attributes: </h3>None 
specified.<h3>Writes Attributes: </h3>None specified.</body></html>
\ No newline at end of file

Added: 
nifi/site/trunk/docs/nifi-docs/components/org.apache.nifi.processors.standard.GenerateTableFetch/index.html
URL: 
http://svn.apache.org/viewvc/nifi/site/trunk/docs/nifi-docs/components/org.apache.nifi.processors.standard.GenerateTableFetch/index.html?rev=1758322&view=auto
==============================================================================
--- 
nifi/site/trunk/docs/nifi-docs/components/org.apache.nifi.processors.standard.GenerateTableFetch/index.html
 (added)
+++ 
nifi/site/trunk/docs/nifi-docs/components/org.apache.nifi.processors.standard.GenerateTableFetch/index.html
 Tue Aug 30 03:55:02 2016
@@ -0,0 +1 @@
+<!DOCTYPE html><html lang="en"><head><meta 
charset="utf-8"></meta><title>GenerateTableFetch</title><link rel="stylesheet" 
href="../../css/component-usage.css" 
type="text/css"></link></head><body><h2>Description: </h2><p>Generates SQL 
select queries that fetch "pages" of rows from a table. The partition size 
property, along with the table's row count, determine the size and number of 
pages and generated FlowFiles. In addition, incremental fetching can be 
achieved by setting Maximum-Value Columns, which causes the processor to track 
the columns' maximum values, thus only fetching rows whose columns' values 
exceed the observed maximums. This processor is intended to be run on the 
Primary Node only.</p><h3>Tags: </h3><p>sql, select, jdbc, query, database, 
fetch, generate</p><h3>Properties: </h3><p>In the list below, the names of 
required properties appear in <strong>bold</strong>. Any other properties (not 
in bold) are considered optional. The table also indicates any default 
values.</p
 ><table id="properties"><tr><th>Name</th><th>Default Value</th><th>Allowable 
 >Values</th><th>Description</th></tr><tr><td id="name"><strong>Database 
 >Connection Pooling Service</strong></td><td id="default-value"></td><td 
 >id="allowable-values"><strong>Controller Service API: 
 ></strong><br/>DBCPService<br/><strong>Implementations: </strong><br/><a 
 >href="../org.apache.nifi.dbcp.hive.HiveConnectionPool/index.html">HiveConnectionPool</a><br/><a
 > 
 >href="../org.apache.nifi.dbcp.DBCPConnectionPool/index.html">DBCPConnectionPool</a></td><td
 > id="description">The Controller Service that is used to obtain a connection 
 >to the database.</td></tr><tr><td id="name"><strong>Database 
 >Type</strong></td><td id="default-value">Generic</td><td 
 >id="allowable-values"><ul><li>Generic</li><li>Oracle</li></ul></td><td 
 >id="description">The type/flavor of database, used for generating 
 >database-specific code. In many cases the Generic type should suffice, but 
 >some databases (such as Oracle) require custom SQL clause
 s. </td></tr><tr><td id="name"><strong>Table Name</strong></td><td 
id="default-value"></td><td id="allowable-values"></td><td id="description">The 
name of the database table to be queried.</td></tr><tr><td id="name">Columns to 
Return</td><td id="default-value"></td><td id="allowable-values"></td><td 
id="description">A comma-separated list of column names to be used in the 
query. If your database requires special treatment of the names (quoting, 
e.g.), each name should include such treatment. If no column names are 
supplied, all columns in the specified table will be returned.</td></tr><tr><td 
id="name">Maximum-value Columns</td><td id="default-value"></td><td 
id="allowable-values"></td><td id="description">A comma-separated list of 
column names. The processor will keep track of the maximum value for each 
column that has been returned since the processor started running. This can be 
used to retrieve only those rows that have been added/updated since the last 
retrieval. Note that some
  JDBC types such as bit/boolean are not conducive to maintaining maximum 
value, so columns of these types should not be listed in this property, and 
will result in error(s) during processing. If no columns are provided, all rows 
from the table will be considered, which could have a performance 
impact.</td></tr><tr><td id="name"><strong>Max Wait Time</strong></td><td 
id="default-value">0 seconds</td><td id="allowable-values"></td><td 
id="description">The maximum amount of time allowed for a running SQL select 
query , zero means there is no limit. Max time less than 1 second will be equal 
to zero.</td></tr><tr><td id="name"><strong>Partition Size</strong></td><td 
id="default-value">10000</td><td id="allowable-values"></td><td 
id="description">The number of result rows to be fetched by each generated SQL 
statement. The total number of rows in the table divided by the partition size 
gives the number of SQL statements (i.e. FlowFiles) generated. A value of zero 
indicates that a single Fl
 owFile is to be generated whose SQL statement will fetch all rows in the 
table.</td></tr></table><h3>Relationships: </h3><table 
id="relationships"><tr><th>Name</th><th>Description</th></tr><tr><td>success</td><td>Successfully
 created FlowFile from SQL query result set.</td></tr></table><h3>Reads 
Attributes: </h3>None specified.<h3>Writes Attributes: </h3>None 
specified.<h3>See Also:</h3><p><a 
href="../org.apache.nifi.processors.standard.QueryDatabaseTable/index.html">QueryDatabaseTable</a>,
 <a 
href="../org.apache.nifi.processors.standard.ExecuteSQL/index.html">ExecuteSQL</a></p></body></html>
\ No newline at end of file

Added: 
nifi/site/trunk/docs/nifi-docs/components/org.apache.nifi.processors.standard.ListDatabaseTables/index.html
URL: 
http://svn.apache.org/viewvc/nifi/site/trunk/docs/nifi-docs/components/org.apache.nifi.processors.standard.ListDatabaseTables/index.html?rev=1758322&view=auto
==============================================================================
--- 
nifi/site/trunk/docs/nifi-docs/components/org.apache.nifi.processors.standard.ListDatabaseTables/index.html
 (added)
+++ 
nifi/site/trunk/docs/nifi-docs/components/org.apache.nifi.processors.standard.ListDatabaseTables/index.html
 Tue Aug 30 03:55:02 2016
@@ -0,0 +1 @@
+<!DOCTYPE html><html lang="en"><head><meta 
charset="utf-8"></meta><title>ListDatabaseTables</title><link rel="stylesheet" 
href="../../css/component-usage.css" 
type="text/css"></link></head><body><h2>Description: </h2><p>Generates a set of 
flow files, each containing attributes corresponding to metadata about a table 
from a database connection. Once metadata about a table has been fetched, it 
will not be fetched again until the Refresh Interval (if set) has elapsed, or 
until state has been manually cleared.</p><h3>Tags: </h3><p>sql, list, jdbc, 
table, database</p><h3>Properties: </h3><p>In the list below, the names of 
required properties appear in <strong>bold</strong>. Any other properties (not 
in bold) are considered optional. The table also indicates any default 
values.</p><table id="properties"><tr><th>Name</th><th>Default 
Value</th><th>Allowable Values</th><th>Description</th></tr><tr><td 
id="name"><strong>Database Connection Pooling Service</strong></td><td 
id="default-value"><
 /td><td id="allowable-values"><strong>Controller Service API: 
</strong><br/>DBCPService<br/><strong>Implementations: </strong><br/><a 
href="../org.apache.nifi.dbcp.hive.HiveConnectionPool/index.html">HiveConnectionPool</a><br/><a
 
href="../org.apache.nifi.dbcp.DBCPConnectionPool/index.html">DBCPConnectionPool</a></td><td
 id="description">The Controller Service that is used to obtain connection to 
database</td></tr><tr><td id="name">Catalog</td><td id="default-value"></td><td 
id="allowable-values"></td><td id="description">The name of a catalog from 
which to list database tables. The name must match the catalog name as it is 
stored in the database. If the property is not set, the catalog name will not 
be used to narrow the search for tables. If the property is set to an empty 
string, tables without a catalog will be listed.</td></tr><tr><td 
id="name">Schema Pattern</td><td id="default-value"></td><td 
id="allowable-values"></td><td id="description">A pattern for matching schemas 
in the
  database. Within a pattern, "%" means match any substring of 0 or more 
characters, and "_" means match any one character. The pattern must match the 
schema name as it is stored in the database. If the property is not set, the 
schema name will not be used to narrow the search for tables. If the property 
is set to an empty string, tables without a schema will be 
listed.</td></tr><tr><td id="name">Table Name Pattern</td><td 
id="default-value"></td><td id="allowable-values"></td><td id="description">A 
pattern for matching tables in the database. Within a pattern, "%" means match 
any substring of 0 or more characters, and "_" means match any one character. 
The pattern must match the table name as it is stored in the database. If the 
property is not set, all tables will be retrieved.</td></tr><tr><td 
id="name">Table Types</td><td id="default-value">TABLE</td><td 
id="allowable-values"></td><td id="description">A comma-separated list of table 
types to include. For example, some databases s
 upport TABLE and VIEW types. If the property is not set, tables of all types 
will be returned.</td></tr><tr><td id="name"><strong>Include 
Count</strong></td><td id="default-value">false</td><td 
id="allowable-values"><ul><li>true</li><li>false</li></ul></td><td 
id="description">Whether to include the table's row count as a flow file 
attribute. This affects performance as a database query will be generated for 
each table in the retrieved list.</td></tr><tr><td id="name"><strong>Refresh 
Interval</strong></td><td id="default-value">0 sec</td><td 
id="allowable-values"></td><td id="description">The amount of time to elapse 
before resetting the processor state, thereby causing all current tables to be 
listed. During this interval, the processor may continue to run, but tables 
that have already been listed will not be re-listed. However new/added tables 
will be listed as the processor runs. A value of zero means the state will 
never be automatically reset, the user must Clear State manually
 .</td></tr></table><h3>Relationships: </h3><table 
id="relationships"><tr><th>Name</th><th>Description</th></tr><tr><td>success</td><td>All
 FlowFiles that are received are routed to success</td></tr></table><h3>Reads 
Attributes: </h3>None specified.<h3>Writes Attributes: </h3><table 
id="writes-attributes"><tr><th>Name</th><th>Description</th></tr><tr><td>db.table.name</td><td>Contains
 the name of a database table from the 
connection</td></tr><tr><td>db.table.catalog</td><td>Contains the name of the 
catalog to which the table belongs (may be 
null)</td></tr><tr><td>db.table.schema</td><td>Contains the name of the schema 
to which the table belongs (may be 
null)</td></tr><tr><td>db.table.fullname</td><td>Contains the fully-qualifed 
table name (possibly including catalog, schema, 
etc.)</td></tr><tr><td>db.table.type</td><td>Contains the type of the database 
table from the connection. Typical types are "TABLE", "VIEW", "SYSTEM TABLE", 
"GLOBAL TEMPORARY", "LOCAL TEMPORARY", "ALIAS", "SYNONY
 M"</td></tr><tr><td>db.table.remarks</td><td>Contains the name of a database 
table from the connection</td></tr><tr><td>db.table.count</td><td>Contains the 
number of rows in the table</td></tr></table></body></html>
\ No newline at end of file

Added: 
nifi/site/trunk/docs/nifi-docs/components/org.apache.nifi.processors.windows.event.log.ConsumeWindowsEventLog/additionalDetails.html
URL: 
http://svn.apache.org/viewvc/nifi/site/trunk/docs/nifi-docs/components/org.apache.nifi.processors.windows.event.log.ConsumeWindowsEventLog/additionalDetails.html?rev=1758322&view=auto
==============================================================================
--- 
nifi/site/trunk/docs/nifi-docs/components/org.apache.nifi.processors.windows.event.log.ConsumeWindowsEventLog/additionalDetails.html
 (added)
+++ 
nifi/site/trunk/docs/nifi-docs/components/org.apache.nifi.processors.windows.event.log.ConsumeWindowsEventLog/additionalDetails.html
 Tue Aug 30 03:55:02 2016
@@ -0,0 +1,74 @@
+<!DOCTYPE html>
+<html lang="en">
+    <!--
+      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.
+    -->
+    <head>
+        <meta charset="utf-8" />
+        <title>ParseEvtx</title>
+
+        <link rel="stylesheet" href="../../css/component-usage.css" 
type="text/css" />
+    </head>
+
+    <body>
+        <!-- Processor Documentation 
================================================== -->
+        <h2>Description:</h2>
+        <p>This processor is used listen to Windows Event Log events. It has a 
success output that will contain an XML representation of the event.
+         </p>
+         <h2>Output XML Example:</h2>
+         <p>
+             <pre>
+&lt;Event 
xmlns=&quot;http://schemas.microsoft.com/win/2004/08/events/event&quot;&gt;
+  &lt;System&gt;
+    &lt;Provider Name=&quot;Service Control Manager&quot; 
Guid=&quot;{555908d1-a6d7-4695-8e1e-26931d2012f4}&quot; 
EventSourceName=&quot;Service Control Manager&quot;/&gt;
+    &lt;EventID Qualifiers=&quot;16384&quot;&gt;7036&lt;/EventID&gt;
+    &lt;Version&gt;0&lt;/Version&gt;
+    &lt;Level&gt;4&lt;/Level&gt;
+    &lt;Task&gt;0&lt;/Task&gt;
+    &lt;Opcode&gt;0&lt;/Opcode&gt;
+    &lt;Keywords&gt;0x8080000000000000&lt;/Keywords&gt;
+    &lt;TimeCreated SystemTime=&quot;2016-06-10T22:28:53.905233700Z&quot;/&gt;
+    &lt;EventRecordID&gt;34153&lt;/EventRecordID&gt;
+    &lt;Correlation/&gt;
+    &lt;Execution ProcessID=&quot;684&quot; ThreadID=&quot;3504&quot;/&gt;
+    &lt;Channel&gt;System&lt;/Channel&gt;
+    &lt;Computer&gt;WIN-O05CNUCF16M.hdf.local&lt;/Computer&gt;
+    &lt;Security/&gt;
+  &lt;/System&gt;
+  &lt;EventData&gt;
+    &lt;Data Name=&quot;param1&quot;&gt;Smart Card Device Enumeration 
Service&lt;/Data&gt;
+    &lt;Data Name=&quot;param2&quot;&gt;running&lt;/Data&gt;
+    
&lt;Binary&gt;5300630044006500760069006300650045006E0075006D002F0034000000&lt;/Binary&gt;
+  &lt;/EventData&gt;
+&lt;/Event&gt;
+             </pre>
+        </p>
+        <h2>Permissions:</h2>
+        <p>
+            Your Windows User must have permissions to read the given Event 
Log.  This can be achieved through the following steps (Windows 2008 and newer):
+            <ol>
+                <li>Open a command prompt as your user.  Enter the command: 
wmic useraccount get name,sid</li>
+                <li>Note the SID of the user or group you'd like to allow to 
read a given channel</li>
+                <li>Open a command prompt as Administrator.  enter the 
command: wevtutil gl CHANNEL_NAME</li>
+                <li>Take the channelAccess Attribute starting with O:BAG, copy 
it into a text editor, and add (A;;0x1;;;YOUR_SID_FROM_BEFORE) to the end</li>
+                <li>Take that text and run the following command in your admin 
prompt (see below for example): wevtutil sl CHANNEL_NAME 
/ca:TEXT_FROM_PREVIOUS_STEP</li>
+            </ol>
+
+            <p>The following command is the exact one I used to add read 
access to the Security log for my user. (You can see all the possible channels 
with: wevtutil el):</p>
+            <p>wevtutil sl Security 
/ca:O:BAG:SYD:(A;;0xf0005;;;SY)(A;;0x5;;;BA)(A;;0x1;;;S-1-5-32-573)(A;;0x1;;;S-1-5-21-3589080292-3448680409-2446571098-1001)</p>
+
+            <p>These steps were adapted from <a 
href="https://blogs.technet.microsoft.com/janelewis/2010/04/30/giving-non-administrators-permission-to-read-event-logs-windows-2003-and-windows-2008/";>this
 guide.</a></p>
+        </p>
+</body>
+</html>

Added: 
nifi/site/trunk/docs/nifi-docs/components/org.apache.nifi.processors.windows.event.log.ConsumeWindowsEventLog/index.html
URL: 
http://svn.apache.org/viewvc/nifi/site/trunk/docs/nifi-docs/components/org.apache.nifi.processors.windows.event.log.ConsumeWindowsEventLog/index.html?rev=1758322&view=auto
==============================================================================
--- 
nifi/site/trunk/docs/nifi-docs/components/org.apache.nifi.processors.windows.event.log.ConsumeWindowsEventLog/index.html
 (added)
+++ 
nifi/site/trunk/docs/nifi-docs/components/org.apache.nifi.processors.windows.event.log.ConsumeWindowsEventLog/index.html
 Tue Aug 30 03:55:02 2016
@@ -0,0 +1 @@
+<!DOCTYPE html><html lang="en"><head><meta 
charset="utf-8"></meta><title>ConsumeWindowsEventLog</title><link 
rel="stylesheet" href="../../css/component-usage.css" 
type="text/css"></link></head><body><h2>Description: </h2><p>Registers a 
Windows Event Log Subscribe Callback to receive FlowFiles from Events on 
Windows.  These can be filtered via channel and XPath.</p><p><a 
href="additionalDetails.html">Additional Details...</a></p><h3>Tags: 
</h3><p>ingest, event, windows</p><h3>Properties: </h3><p>In the list below, 
the names of required properties appear in <strong>bold</strong>. Any other 
properties (not in bold) are considered optional. The table also indicates any 
default values.</p><table id="properties"><tr><th>Name</th><th>Default 
Value</th><th>Allowable Values</th><th>Description</th></tr><tr><td 
id="name"><strong>Channel</strong></td><td id="default-value">System</td><td 
id="allowable-values"></td><td id="description">The Windows Event Log Channel 
to listen to.</td></tr><tr><t
 d id="name"><strong>XPath Query</strong></td><td id="default-value">*</td><td 
id="allowable-values"></td><td id="description">XPath Query to filter events. 
(See 
https://msdn.microsoft.com/en-us/library/windows/desktop/dd996910(v=vs.85).aspx 
for examples.)</td></tr><tr><td id="name"><strong>Maximum Buffer 
Size</strong></td><td id="default-value">1048576</td><td 
id="allowable-values"></td><td id="description">The individual Event Log XMLs 
are rendered to a buffer.  This specifies the maximum size in bytes that the 
buffer will be allowed to grow to. (Limiting the maximum size of an individual 
Event XML.)</td></tr><tr><td id="name"><strong>Maximum queue 
size</strong></td><td id="default-value">1024</td><td 
id="allowable-values"></td><td id="description">Events are received 
asynchronously and must be output as FlowFiles when the processor is triggered. 
 This specifies the maximum number of events to queue for transformation into 
FlowFiles.</td></tr></table><h3>Relationships: </h3><table 
 
id="relationships"><tr><th>Name</th><th>Description</th></tr><tr><td>success</td><td>Relationship
 for successfully consumed events.</td></tr></table><h3>Reads Attributes: 
</h3>None specified.<h3>Writes Attributes: </h3><table 
id="writes-attributes"><tr><th>Name</th><th>Description</th></tr><tr><td>mime.type</td><td>Will
 set a MIME type value of application/xml.</td></tr></table></body></html>
\ No newline at end of file

Added: 
nifi/site/trunk/docs/nifi-docs/components/org.apache.nifi.reporting.datadog.DataDogReportingTask/additionalDetails.html
URL: 
http://svn.apache.org/viewvc/nifi/site/trunk/docs/nifi-docs/components/org.apache.nifi.reporting.datadog.DataDogReportingTask/additionalDetails.html?rev=1758322&view=auto
==============================================================================
--- 
nifi/site/trunk/docs/nifi-docs/components/org.apache.nifi.reporting.datadog.DataDogReportingTask/additionalDetails.html
 (added)
+++ 
nifi/site/trunk/docs/nifi-docs/components/org.apache.nifi.reporting.datadog.DataDogReportingTask/additionalDetails.html
 Tue Aug 30 03:55:02 2016
@@ -0,0 +1,53 @@
+<!DOCTYPE html>
+<html lang="en">
+<!--
+  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.
+-->
+    <head>
+        <meta charset="utf-8" />
+        <title>DataDogReportingTask</title>
+        <link rel="stylesheet" href="../../css/component-usage.css" 
type="text/css" />
+    </head>
+
+    <body>
+        <h2>DataDogReportingTask</h2>
+
+        <p>This ReportingTask sends the following metrics to DataDog:</p>
+        <ul>
+            <li>FlowFilesReceivedLast5Minutes</li>
+            <li>BytesReceivedLast5Minutes</li>
+            <li>FlowFilesSentLast5Minutes</li>
+            <li>BytesSentLast5Minutes</li>
+            <li>FlowFilesQueued</li>
+            <li>BytesQueued</li>
+            <li>BytesReadLast5Minutes</li>
+            <li>BytesWrittenLast5Minutes</li>
+            <li>ActiveThreads</li>
+            <li>TotalTaskDurationSeconds</li>
+            <li>jvm.uptime</li>
+            <li>jvm.heap_used</li>
+            <li>jvm.heap_usage</li>
+            <li>jvm.non_heap_usage</li>
+            <li>jvm.thread_states.runnable</li>
+            <li>jvm.thread_states.blocked</li>
+            <li>jvm.thread_states.timed_waiting</li>
+            <li>jvm.thread_states.terminated</li>
+            <li>jvm.thread_count</li>
+            <li>jvm.daemon_thread_count</li>
+            <li>jvm.file_descriptor_usage</li>
+            <li>jvm.gc.runs</li>
+            <li>jvm.gc.time</li>
+        </ul>
+    </body>
+</html>

Added: 
nifi/site/trunk/docs/nifi-docs/components/org.apache.nifi.reporting.datadog.DataDogReportingTask/index.html
URL: 
http://svn.apache.org/viewvc/nifi/site/trunk/docs/nifi-docs/components/org.apache.nifi.reporting.datadog.DataDogReportingTask/index.html?rev=1758322&view=auto
==============================================================================
--- 
nifi/site/trunk/docs/nifi-docs/components/org.apache.nifi.reporting.datadog.DataDogReportingTask/index.html
 (added)
+++ 
nifi/site/trunk/docs/nifi-docs/components/org.apache.nifi.reporting.datadog.DataDogReportingTask/index.html
 Tue Aug 30 03:55:02 2016
@@ -0,0 +1 @@
+<!DOCTYPE html><html lang="en"><head><meta 
charset="utf-8"></meta><title>DataDogReportingTask</title><link 
rel="stylesheet" href="../../css/component-usage.css" 
type="text/css"></link></head><body><h2>Description: </h2><p>Publishes metrics 
from NiFi to datadog. For accurate and informative reporting, components should 
have unique names.</p><p><a href="additionalDetails.html">Additional 
Details...</a></p><h3>Tags: </h3><p>reporting, datadog, 
metrics</p><h3>Properties: </h3><p>In the list below, the names of required 
properties appear in <strong>bold</strong>. Any other properties (not in bold) 
are considered optional. The table also indicates any default values, and 
whether a property supports the <a 
href="../../html/expression-language-guide.html">NiFi Expression 
Language</a>.</p><table id="properties"><tr><th>Name</th><th>Default 
Value</th><th>Allowable Values</th><th>Description</th></tr><tr><td 
id="name"><strong>Metrics prefix</strong></td><td 
id="default-value">nifi</td><td id="
 allowable-values"></td><td id="description">Prefix to be added before every 
metric<br/><strong>Supports Expression Language: true</strong></td></tr><tr><td 
id="name"><strong>Environment</strong></td><td id="default-value">dev</td><td 
id="allowable-values"></td><td id="description">Environment, dataflow is 
running in. This property will be included as metrics tag.<br/><strong>Supports 
Expression Language: true</strong></td></tr><tr><td id="name">API key</td><td 
id="default-value"></td><td id="allowable-values"></td><td 
id="description">Datadog API key. If specified value is 'agent', local Datadog 
agent will be used.</td></tr><tr><td id="name"><strong>Datadog 
transport</strong></td><td id="default-value">Datadog HTTP</td><td 
id="allowable-values"><ul><li>Datadog Agent <img 
src="../../html/images/iconInfo.png" alt="Metrics will be sent via locally 
installed Datadog agent. Datadog agent needs to be installed manually before 
using this option" title="Metrics will be sent via locally inst
 alled Datadog agent. Datadog agent needs to be installed manually before using 
this option"></img></li><li>Datadog HTTP <img 
src="../../html/images/iconInfo.png" alt="Metrics will be sent via HTTP 
transport with no need of Agent installed. Datadog API key needs to be set" 
title="Metrics will be sent via HTTP transport with no need of Agent installed. 
Datadog API key needs to be set"></img></li></ul></td><td 
id="description">Transport through which metrics will be sent to 
Datadog</td></tr></table></body></html>
\ No newline at end of file


Reply via email to