github.com/Jeffail/benthos/v3@v3.65.0/website/blog/2021-10-12-new-plugins-stable.md (about)

     1  ---
     2  title: 'Go Plugins V2 are Ready'
     3  author: Ashley Jeffs
     4  author_url: https://github.com/Jeffail
     5  author_image_url: /img/ash.jpg
     6  description: In case you didn't see the Tweets, Discord posts and Github activity
     7  keywords: [
     8      "go",
     9      "golang",
    10      "stream processor",
    11      "ETL",
    12  ]
    13  tags: [ "v4", "plugins" ]
    14  ---
    15  
    16  The [new plugin APIs](https://pkg.go.dev/github.com/Jeffail/benthos/v3/public/service) are ready to use, are being used, and [here's a video of them in action](https://youtu.be/uH6mKw-Ly0g).
    17  
    18  import ReactPlayer from 'react-player/youtube';
    19  
    20  <div className='container margin-vert--lg'>
    21    <div className='row row--no-gutters'>
    22      <ReactPlayer
    23          className='col'
    24          height='300px'
    25          url='https://www.youtube.com/embed/uH6mKw-Ly0g'
    26          controls={true}
    27      />
    28    </div>
    29  </div>
    30  
    31  The full API docs can be found at [pkg.go.dev/github.com/Jeffail/benthos/v3/public](https://pkg.go.dev/github.com/Jeffail/benthos/v3/public), and there's an example repository demonstrating a few different component plugin types at [github.com/benthosdev/benthos-plugin-example](https://github.com/benthosdev/benthos-plugin-example).