lib/opencensus/trace/exporters.rb in opencensus-0.2.1 vs lib/opencensus/trace/exporters.rb in opencensus-0.2.2

- old
+ new

@@ -11,15 +11,34 @@ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. require "opencensus/trace/exporters/logger" +require "opencensus/trace/exporters/multi" module OpenCensus module Trace ## # The Exporters module provides integrations for exporting collected trace - # spans to an external or local service. + # spans to an external or local service. Exporter classes may be put inside + # this module, but are not required to be located here. + # + # An exporter is an object that must respond to the following method: + # + # def export(spans) + # + # Where `spans` is an array of {OpenCensus::Trace::Span} objects to export. + # The method _must_ tolerate any number of spans in the `spans` array, + # including an empty array. + # + # The method return value is not defined. + # + # The exporter object may interpret the `export` message in whatever way it + # deems appropriate. For example, it may write the data to a log file, it + # may transmit it to a monitoring service, or it may do nothing at all. + # An exporter may also queue the request for later asynchronous processing, + # and indeed this is recommended if the export involves time consuming + # operations such as remote API calls. # module Exporters end end end