Skip to main content

Agent Installation

It guides you how to install the OpenTelemetry agent.

Download agent

Execute the following command to download the agent to the instance where the OpenTelemetry Collector has been installed.

# Register package repository
$ sudo rpm -Uvh https://repo.whatap.io/centos/5/noarch/whatap-repo-1.0-1.noarch.rpm

# Install package
$ sudo yum install whatap-otel

Default agent settings

To configure the agent, the WhaTap project's access key and collection server IP address are required. In WhaTap monitoring service, move to the project for the application product. In Management > Agent Installation, check the access key and collection server IP address for preparation.

Configuring the whatap.conf file

Set the access key and collection server IP address in the agent configuration (whatap.conf) file.

echo "accesskey={액세스 키}" >> /usr/whatap/otel/whatap.conf 
echo "whatap.server.host={수집 서버 IP 주소}" >> /usr/whatap/otel/whatap.conf

Configuring with environment variables

You can set the access key and collection server IP address as environment variables.

WHATAP_ACCESSKEY={액세스 키} 
WHATAP_SERVER_HOST={수집 서버 IP 주소}
WHATAP_OTEL_GRPC_SERVER_PORT={Grpc 서버 리스닝 포트}
Note

If both environment variables and the whatap.conf file have been configured, the settings in the whatap.conf file take precedence.

Configuring the Opentelemetry Collector

Configure the OTLP Exporter to forward data to whatap-otel.

otel-collector-config.yaml
receivers:
otlp:
protocols:
grpc:
endpoint: 0.0.0.0:4317
processors:
batch:

exporters:
logging:
# otlp exporter에 whatap-otel을 대상으로 설정합니다.
otlp:
endpoint: 127.0.0.1:6600
tls:
insecure: true

service:
pipelines:
traces:
receivers:
- otlp
processors:
- batch
exporters:
- logging
- otlp
telemetry:
logs:
level: debug #activate debug mode
  • End point (endpoint) setting: 127.0.0.1:6600

    The default port for local agents is 6600.

  • tls.secure setting: insecure: true

  • The gzip compression settings are used by default. (gzip is used)

Info

For more information about the OpenTelemetry Collector installation, see the following link.

Other platforms

Tyk Gateway

Enable the OpenTelemetry function of Tyk Gateway and then check the transaction information through the OpenTelemetry Collecotr.

  1. Connect the OpenTelemetry Collector to the Tyk Gateway.
tyk.conf
{
"log_level": "debug" ,
"listen_port": 8081,

...

"opentelemetry": {
"enabled": true,
"endpoint": "111.222.333.444:4317",
}
}
  1. When the whatap-otel agent is connected to the OpenTelemetry Collector, trace data is collected.

Starting the monitoring

  • If the application server is restarted after all settings are made, the agent collects data. Go to the Dashboard > Application dashboard menu and then perform monitoring for the collected data in real time.

  • For more information about the agent configuration, see the following.