CREATE TABLE IF NOT EXISTS zipkin_annotations (
trace_id_high
BIGINT NOT NULL DEFAULT 0 COMMENT ‘If non zero, this means the trace uses 128 bit traceIds instead of 64bit’,
trace_id
BIGINT NOT NULL COMMENT ‘coincideswith zipkin_spans.trace_id’,
span_id
BIGINT NOT NULL COMMENT ‘coincideswith zipkin_spans.id’,
a_key
VARCHAR(255) NOT NULL COMMENT’BinaryAnnotation.key or Annotation.value if type == -1’,
a_value
BLOB COMMENT’BinaryAnnotation.value(), which must be smaller than 64KB’,
a_type
INT NOT NULL COMMENT’BinaryAnnotation.type() or -1 if Annotation’,
a_timestamp
BIGINT COMMENT ‘Used toimplement TTL; Annotation.timestamp or zipkin_spans.timestamp’,
endpoint_ipv4
INT COMMENT ‘Null whenBinary/Annotation.endpoint is null’,
endpoint_ipv6
BINARY(16) COMMENT ‘Null whenBinary/Annotation.endpoint is null, or no IPv6 address’,
endpoint_port
SMALLINT COMMENT ‘Null whenBinary/Annotation.endpoint is null’,
endpoint_service_name
VARCHAR(255) COMMENT’Null when Binary/Annotation.endpoint is null’
)ENGINE=INNODB ROW_FORMAT=COMPRESSED CHARACTER SET=utf8 COLLATE utf8_general_ci;
ALTER TABLE zipkin_annotations ADD UNIQUE KEY(trace_id_high
, trace_id
, span_id
,a_key
, a_timestamp
) COMMENT ‘Ignore insert on duplicate’;
ALTER TABLE zipkin_annotations ADD INDEX(trace_id_high
, trace_id
, span_id
)COMMENT ‘for joining with zipkin_spans’;
ALTER TABLE zipkin_annotations ADD INDEX(trace_id_high
, trace_id
) COMMENT ‘forgetTraces/ByIds’;
ALTER TABLE zipkin_annotations ADD INDEX(endpoint_service_name
) COMMENT ‘forgetTraces and getServiceNames’;
ALTER TABLE zipkin_annotations ADD INDEX(a_type
) COMMENT ‘for getTraces’;
ALTER TABLE zipkin_annotations ADD INDEX(a_key
) COMMENT ‘for getTraces’;
ALTER TABLE zipkin_annotations ADD INDEX(trace_id
, span_id
, a_key
) COMMENT ‘fordependencies job’;
CREATE TABLE IF NOT EXISTS zipkin_dependencies (
day
DATE NOT NULL,
parent
VARCHAR(255) NOT NULL,
child
VARCHAR(255) NOT NULL,
call_count
BIGINT
)ENGINE=INNODB ROW_FORMAT=COMPRESSED CHARACTER SET=utf8 COLLATE utf8_general_ci;
ALTER TABLE zipkin_dependencies ADD UNIQUE KEY(day
, parent
, child
);
修改eureka-client-zipkin 项目添加rabbitMQ 依赖
org.springframework.cloud
spring-cloud-stream-binder-rabbit
增加配置:
spring.rabbitmq.host=localhost
spring.rabbitmq.port=5672
spring.rabbitmq.password=guest
spring.rabbitmq.username=guest
zipkin链接方式
spring.zipkin.sender.type=rabbit
#是否启动zipkin,默认为true
spring.zipkin.enabled=true
支持通过服务发现来定位host name:
spring.zipkin.locator.discovery.enabled=true
重新启动项目eureka-client-zipkin。
使用 以下命令重新启动zipkin-server-xxx.jar :
java -jar zipkin-server.jar --STORAGE_TYPE=mysql --MYSQL_DB=springboot --MYSQL_USER=root --MYSQL_PASS=000000 --MYSQL_HOST=localhost --MYSQL_TCP_PORT=3306
请求:http://localhost:8788/main 返回8792
查看数据库表
zipkin_annotations表中数据如下:
zipkin_dependencies表数据为空,不清楚原因,知道的朋友解释下。
zipkin_spans表中数据ruxi如下:
关闭eureka-client,再次请求上边链接,请求失败。但是数据库中没有增加记录,目前也不太清楚为什么,需要进一步研究一下,知道的 朋友huan欢迎留言交流。