You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@metron.apache.org by cestella <gi...@git.apache.org> on 2018/03/19 19:13:54 UTC

[GitHub] metron pull request #965: METRON-590 Enable Use of Event Time in Profiler

Github user cestella commented on a diff in the pull request:

    https://github.com/apache/metron/pull/965#discussion_r175553846
  
    --- Diff: metron-analytics/metron-profiler/README.md ---
    @@ -328,6 +328,62 @@ Continuing the previous running example, at this point, you have seen how your p
     
     ## Anatomy of a Profile
     
    +### Profiler
    +
    +The Profiler configuration contains only two fields; only one of which is required.
    +
    +```
    +{
    +    "profiles": [
    +        { "profile": "one", ... },
    +        { "profile": "two", ... }
    +    ],
    +    "timestampField": "timestamp"
    +}
    +```
    +
    +| Name                              |               | Description
    +|---                                |---            |---
    +| [profiles](#profiles)             | Required      | A list of zero or more Profile definitions.
    +| [timestampField](#timestampfield) | Optional      | Indicates whether processing time or event time should be used.
    --- End diff --
    
    Can we indicate the default here in the description (for quicker reference)?


---