美文网首页
Ocelot中文文档-跟踪

Ocelot中文文档-跟踪

作者: loogn | 来源:发表于2018-05-08 11:51 被阅读87次

    Ocelot使用一个杰出的项目Butterfly 提供了跟踪功能。

    为了使用跟踪,请阅读Butterfly的文档。

    在Ocelot中如果你想跟踪一个ReRoute,你需要做如下事情:

    在ConfigureServices方法中

    services
        .AddOcelot()
        .AddOpenTracing(option =>
        {
            //this is the url that the butterfly collector server is running on...
            option.CollectorUrl = "http://localhost:9618";
            option.Service = "Ocelot";
        });
    

    然后在ocelot.json文件中,添加如下配置到你想要跟随的ReRoute中。

    "HttpHandlerOptions": {
          "UseTracing": true
      },
    

    现在,当这个ReRoute被调用的时候,Ocelot会发生跟踪信息到Butterfly。

    previous
    next

    相关文章

      网友评论

          本文标题:Ocelot中文文档-跟踪

          本文链接:https://www.haomeiwen.com/subject/qbylrftx.html