Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  1. Add below Jaeger configs in your respective env config file (eg. qa.yaml, dev.yaml and, etc…)

    1. Code Block
      jaeger:
        host: ""
        port: ""
        sampler-type: ""
        sampler-param: ""
        collector:
          samplingConfig: |
            {
              "service_strategies": [
                {
                  "service": "tl-services",
                  "type": "probabilistic",
                  "param": 0.5
                },
                {
                  "service": "tl-calculator",
                  "type": "probabilistic",
                  "param": 0.5
                },
                {
                  "service": "report-service",
                  "type": "probabilistic",
                  "param": 0.5
                },
                {
                  "service": "pt-services-v2",
                  "type": "probabilistic",
                  "param": 0.5
                },
                {
                  "service": "pt-calculator-v2",
                  "type": "probabilistic",
                  "param": 0.5
                },
                {
                  "service": "collection-services",
                  "type": "probabilistic",
                  "param": 0.2
                },
                {
                  "service": "billing-service",
                  "type": "probabilistic",
                  "param": 0.2
                },
                {
                  "service": "egov-data-uploader",
                  "type": "probabilistic",
                  "param": 0.2
                },
                {
                  "service": "egov-hrms",
                  "type": "probabilistic",
                  "param": 0.5
                },
                {
                  "service": "rainmaker-pgr",
                  "type": "probabilistic",
                  "param": 0.5
                }
              ],
              "default_strategy": {
                "type": "probabilistic",
                "param": 0.05
              }
            }

  2. Deploy the Jaeger using go cmd or deploy using Jenkins.

...