먼저 exporter의 Factory를 살펴보자. // Factory is factory interface for exporters. // // This interface cannot be directly implemented. Implementations must // use the NewFactory to implement it. // 해당 인터페이스를 직접 사용할 수 없고 반드시 NewFactory()를 이용해 생성해야한다. type Factory interface { component.Factory // 모든 컴포넌트 팩토리가 구현하는 인터페이스. Type()과 CreateDefaultConfig() 메서드 필요. // CreateTracesExporter creates a TracesExport..