ConfigFilter specifies the configuration for a single filter component.
| 54 | |
| 55 | // ConfigFilter specifies the configuration for a single filter component. |
| 56 | type ConfigFilter struct { |
| 57 | Name string |
| 58 | DecodedConfig interface{} |
| 59 | |
| 60 | Config *toml.Primitive |
| 61 | desc *FilterDesc |
| 62 | } |
| 63 | |
| 64 | // ConfigOutput specifies the configuration for the output component. |
| 65 | type ConfigOutput struct { |
nothing calls this directly
no outgoing calls
no test coverage detected