Fluentd output plugin to send messages using Sakura Script Transfer Protocol (SSTP).
This plugin allows you to send SSTP messages to compatible servers such as SSP, which is commonly used for Japanese desktop assistants.
$ gem install fluent-plugin-sstp
Add following line to your Gemfile:
gem "fluent-plugin-sstp"
And then execute:
$ bundle
type sstp
sstp_server 127.0.0.1
sstp_port 9801
request_method NOTIFY
request_version SSTP/1.1
sender カードキャプター
script_template \0汝のあるべき姿に戻れ。<%= record['craw_card'] %>\e
sstp_server
: Host name or IP address of the SSTP serversstp_port
: Port number of the SSTP server (default: 9801)request_method
: SSTP request method (currently only "NOTIFY" is supported)request_version
: SSTP protocol version (e.g., "SSTP/1.1")sender
: Sender name that appears in the SSTP messagescript_template
: ERB template for the script content, record fields can be referenced with<%= record['field_name'] %>
Apache License, Version 2.0
- 2025/03/xx 0.1.0 Updated to support Fluentd v1.0+ with modern plugin API
- 2014/01/26 0.0.0 1st release