See docs
config.yaml
- Change the path to .so goplagins (
_SO_FILE_HERE_) in theextender_fileparameter. - Set the agent's registration name (
_AGENT_) in theagent_nameparameter. - Set the 8-character hex value of the agent watermark (
_RANDOM_HEX_8_) in theagent_watermarkparameter. - Set the listeners supported by the agent (
_LISTENER_1_,_LISTENER_2_) in thelistenersparameter.
go.mod
- Replace
_AGENT_with the agent's registration name.
Makefile
- Replace
_AGENT_with the agent's registration name.
ax_config.axs
- Register commands in the
RegisterCommandsfunction. - Create an agent generation form in the
GenerateUIfunction.
pl_main.go
- Specify your code inside the functions in the
START CODE HEREandEND CODE HEREtags.
config.yaml
- Change the path to .so goplagins (
_SO_FILE_HERE_) in theextender_fileparameter. - Set the listener's registration name (
_LISTENER_) in thelistener_nameparameter. - Set protocol designation (
_PROTOCOL_) in theprotocolparameter.
go.mod
- Replace
_LISTENER_with the listener's registration name.
Makefile
- Replace
_LISTENER_with the listener's registration name.
ax_config.axs
- Create a listener creation form in the
ListenerUIfunction.
pl_main.go
- Specify your code inside the functions in the
START CODE HEREandEND CODE HEREtags.
config.yaml
- Change the path to .so goplagins (
_SO_FILE_HERE_) in theextender_fileparameter. - Set the service's registration name (
_SERVICE_) in theservice_nameparameter.
go.mod
- Replace
_SERVICE_with the services's registration name.
Makefile
- Replace
_SERVICE_with the services's registration name.
ax_config.axs
- Set
InitServiceanddata_handlerfunctions.
pl_main.go
- Specify your code inside the functions in the
START CODE HEREandEND CODE HEREtags.