You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@griffin.apache.org by "ASF GitHub Bot (JIRA)" <ji...@apache.org> on 2019/04/12 15:59:00 UTC

[jira] [Work logged] (GRIFFIN-247) Support pluggable sinks

     [ https://issues.apache.org/jira/browse/GRIFFIN-247?focusedWorklogId=226739&page=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-226739 ]

ASF GitHub Bot logged work on GRIFFIN-247:
------------------------------------------

                Author: ASF GitHub Bot
            Created on: 12/Apr/19 15:58
            Start Date: 12/Apr/19 15:58
    Worklog Time Spent: 10m 
      Work Description: iyuriysoft commented on pull request #499: [GRIFFIN-247] Support pluggable sinks
URL: https://github.com/apache/griffin/pull/499
 
 
   
 
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


Issue Time Tracking
-------------------

            Worklog Id:     (was: 226739)
            Time Spent: 10m
    Remaining Estimate: 0h

> Support pluggable sinks
> -----------------------
>
>                 Key: GRIFFIN-247
>                 URL: https://issues.apache.org/jira/browse/GRIFFIN-247
>             Project: Griffin
>          Issue Type: Improvement
>            Reporter: iyuriysoft
>            Priority: Minor
>          Time Spent: 10m
>  Remaining Estimate: 0h
>
> Provide ability to use custom pluggable sinks.
> To use it we need to add new sink type CUSTOM
> {code:java}
> // saving in local files
> "sinks": [
>   {
>     "type": "CUSTOM",
>     "config": {
>       "class": "com.example.griffin.sinks.LocalFileSink",
>       "path": "/Users/Shared"
>     }
>   },
> {code}
> Contract:
> The class should be a subclass of *Sink*
> {code:java}
> case class LocalFileSink(ctx: SinkContext) extends Sink {
>   ...
>   ...
> }{code}
> Signatures of context object:
> {code:java}
> case class SinkContext(config: Map[String, Any], metricName: String, timeStamp: Long, block: Boolean)
> {code}



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)