Skip to content

Serde support for node values #4

@nickbabcock

Description

@nickbabcock

The real write_graphite plugin uses this configuration

<Plugin write_graphite>
       <Node "example">
               Host "localhost"
               Port "20030"
       </Node>
</Plugin>

Where the name it is registered under is "example". To use serde for automatic deserialization of config items, the following structure would be preferred:

<Plugin write_graphite>
       <Node>
               Name "example"
               Host "localhost"
               Port "20030"
       </Node>
</Plugin>

Ideally the former structure would be serde supported, but I am not going to worry too much if not.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions