pinpoint-c-agent

English 中文 한국어

What’s collector-agent

A bridger to pinpoint-collector.

collector-agent

Collector Agent Guide

Collector-Agent formats the span from PHP/Python/C/CPP-Agent and send to Pinpoint-Collector.

1. Download binary from github.release

https://github.com/pinpoint-apm/pinpoint-c-agent/releases/tag/v0.6.6

2. Use docker images

Release page: https://github.com/pinpoint-apm/pinpoint-c-agent/pkgs/container/pinpoint-c-agent%2Fcollector-agent

Example:

docker run -itd -p 9999:9999  --env-file ./env.list ghcr.io/pinpoint-apm/pinpoint-c-agent/collector-agent:v0.6.6

3. K8s side car

server.yaml sample

- image: ghcr.io/pinpoint-apm/pinpoint-c-agent/collector-agent:v0.6.6
        name: collector-agent
        args: ["-RecvBufSize=1048576"]
        securityContext:
          runAsUser: 0
        env:
          - name: "PP_COLLECTOR_AGENT_SPAN_IP"
            value: "pinpoint-collector.hostname"
          - name: "PP_COLLECTOR_AGENT_SPAN_PORT"
            value: "9993"
          - name: "PP_COLLECTOR_AGENT_AGENT_IP"
            value: "pinpoint-collector.hostname"
          - name: "PP_COLLECTOR_AGENT_AGENT_PORT"
            value: "9991"
          - name: "PP_COLLECTOR_AGENT_STAT_IP"
            value: "pinpoint-collector.hostname"
          - name: "PP_COLLECTOR_AGENT_STAT_PORT"
            value: "9992"
          - name: "PP_Log_Level"
            value: "INFO"
          - name: "PP_ADDRESS"
            value: "localhost@10000"
          - name: "PP_COLLECTOR_AGENT_ISDOCKER"
            value: "true"

4. Compiling from source [require go.1.18]

./collector-agent