skywalking agent cds

客户端基本逻辑

核心类 ConfigurationDiscoveryService

public class ConfigurationDiscoveryService implements BootService, GRPCChannelListener 

// 初始化, 每20秒调用一次 grc 服务端, 进行配置拉取
getDynamicConfigurationFuture = Executors.newSingleThreadScheduledExecutor(
            new DefaultNamedThreadFactory("ConfigurationDiscoveryService")
        ).scheduleAtFixedRate(
            new RunnableWithExceptionProtection(
                this::getAgentDynamicConfig,
                t -> LOGGER.error("Sync config from OAP error.", t)
            ),
            Config.Collector.GET_AGENT_DYNAMIC_CONFIG_INTERVAL,
            Config.Collector.GET_AGENT_DYNAMIC_CONFIG_INTERVAL,
            TimeUnit.SECONDS
        );

拉取逻辑

try {
    ...

    if (configurationDiscoveryServiceBlockingStub != null) {
        final Commands commands = configurationDiscoveryServiceBlockingStub.withDeadlineAfter(
            GRPC_UPSTREAM_TIMEOUT, TimeUnit.SECONDS
        ).fetchConfigurations(builder.build());
        ServiceManager.INSTANCE.findService(CommandService.class).receiveCommand(commands);
    }
} catch (Throwable t) {
    ...
}

执行 Commands : ConfigurationDiscoveryCommandExecutor

ConfigurationDiscoveryCommand agentDynamicConfigurationCommand = (ConfigurationDiscoveryCommand) command;
ServiceManager.INSTANCE.findService(ConfigurationDiscoveryService.class).handleConfigurationDiscoveryCommand(agentDynamicConfigurationCommand);

最终还是调用到 ConfigurationDiscoveryService#handleConfigurationDiscoveryCommand, 逻辑如下

// 1. 读取配置
List<KeyStringValuePair> config = readConfig(configurationDiscoveryCommand);

config.forEach(property -> {
    // 获取对应的属性的  WatcherHolder
    String propertyKey = property.getKey();
    WatcherHolder holder = register.get(propertyKey);
    if (holder != null) {
        AgentConfigChangeWatcher watcher = holder.getWatcher();
        String newPropertyValue = property.getValue();
        // 判断到新值为空, 旧值不为空, 则发送删除事件
        if (StringUtil.isBlank(newPropertyValue)) {
            if (watcher.value() != null) {
                // Notify watcher, the new value is null with delete event type.
                watcher.notify(
                    new AgentConfigChangeWatcher.ConfigChangeEvent(
                        null, AgentConfigChangeWatcher.EventType.DELETE
                    ));
            } else {
                // Don't need to notify, stay in null.
            }
        } else {
            // 新旧值都存在, 并且不相等, 发送修改事件
            if (!newPropertyValue.equals(watcher.value())) {
                watcher.notify(new AgentConfigChangeWatcher.ConfigChangeEvent(
                    newPropertyValue, AgentConfigChangeWatcher.EventType.MODIFY
                ));
            } else {
                // Don't need to notify, stay in the same config value.
            }
        }
    } else {
        LOGGER.warn("Config {} from OAP, doesn't match any watcher, ignore.", propertyKey);
    }
});

AgentConfigChangeWatcher 的注册

通过 ConfigurationDiscoveryService#registerAgentConfigChangeWatcher 方法注册, 目前有以下几种

  1. SpanLimitWatcher("agent.span_limit_per_segment")
  2. IgnoreSuffixPatternsWatcher("agent.ignore_suffix", this)
  3. SamplingRateWatcher("agent.sample_n_per_3_secs", this)
  4. TraceIgnorePatternWatcher("agent.trace.ignore_path", this)

事件处理方式, DELETE 事件使用默认值, 修改则替换新值, activeSetting 包含值的替换, 以及类似对应服务属性的更新的操作

public void notify(final ConfigChangeEvent value) {
    if (EventType.DELETE.equals(value.getEventType())) {
        activeSetting(getDefaultValue());
    } else {
        activeSetting(value.getNewValue());
    }
}

服务端grpc服务

grpc实现类: ConfigurationDiscoveryServiceHandler, 在 Configuration-discovery-receiver-plugin 包中

对应到 skywalking 服务端 application.yml 配置

configuration-discovery:
  selector: ${SW_CONFIGURATION_DISCOVERY:default}
  default:
    disableMessageDigest: ${SW_DISABLE_MESSAGE_DIGEST:false}

此模块依赖 Configuration 模块的事件更新机制 ConfigChangeWatcher

对应配置中心的key 为 configuration-discovery.default.agentConfigurations

对应文档: Dynamic Configuration

对应配置内容为

configurations:
  //service name
  serviceA:
    // Configurations of service A
    // Key and Value are determined by the agent side.
    // Check the agent setup doc for all available configurations.
    key1: value1
    key2: value2
    ...
  serviceB:
    ...

配置参数

Config Key Value Description Value Format Example Required Plugin(s)
agent.sample_n_per_3_secs The number of sampled traces per 3 seconds -1 -
agent.ignore_suffix If the operation name of the first span is included in this set, this segment should be ignored. Multiple values should be separated by , .txt,.log -
agent.trace.ignore_path The value is the path that you need to ignore, multiple paths should be separated by , more details /your/path/1/**,/your/path/2/** apm-trace-ignore-plugin
agent.span_limit_per_segment The max number of spans per segment. 300 -

主体逻辑

  1. AgentConfigurationsWatcher 收到更新通知后, 通过核心配置读取逻辑 AgentConfigurationsReader#readAgentConfigurationsTable 对属性 AgentConfigurationsTable 进行更新,
// 配置更新事件
@Override
public void notify(ConfigChangeEvent value) {
    if (value.getEventType().equals(EventType.DELETE)) {
        settingsString = Const.EMPTY_STRING;
        this.agentConfigurationsTable = new AgentConfigurationsTable();
    } else {
        settingsString = value.getNewValue();
        AgentConfigurationsReader agentConfigurationsReader =
            new AgentConfigurationsReader(new StringReader(value.getNewValue()));
        this.agentConfigurationsTable = agentConfigurationsReader.readAgentConfigurationsTable();
    }
}
// 解析配置
public AgentConfigurationsTable readAgentConfigurationsTable() {
    AgentConfigurationsTable agentConfigurationsTable = new AgentConfigurationsTable();
    try {
        if (Objects.nonNull(yamlData)) {
            Map configurationsData = (Map) yamlData.get("configurations");
            if (configurationsData != null) {
                configurationsData.forEach((k, v) -> {
                    Map map = (Map) v;
                    StringBuilder serviceConfigStr = new StringBuilder();
                    Map<String, String> config = new HashMap<>(map.size());
                    map.forEach((key, value) -> {
                        config.put(key.toString(), value.toString());

                        serviceConfigStr.append(key.toString()).append(":").append(value.toString());
                    });
                    AgentConfigurations agentConfigurations = new AgentConfigurations(
                        k.toString(), config, DigestUtils.sha512Hex(serviceConfigStr.toString()));
                    agentConfigurationsTable.getAgentConfigurationsCache()
                                            .put(agentConfigurations.getService(), agentConfigurations);
                });
            }
        }
    } catch (Exception e) {
        log.error("Read ConfigurationDiscovery configurations error.", e);
    }
    return agentConfigurationsTable;
}
  1. 通过 grpc 读取对应 service 返回配置, AgentConfigurationsWatcher#getAgentConfigurations
public AgentConfigurations getAgentConfigurations(String service) {
    AgentConfigurations agentConfigurations = agentConfigurationsTable.getAgentConfigurationsCache().get(service);
    if (null == agentConfigurations) {
        return emptyAgentConfigurations;
    } else {
        return agentConfigurations;
    }
}
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 203,937评论 6 478
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,503评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 150,712评论 0 337
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,668评论 1 276
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,677评论 5 366
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,601评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,975评论 3 396
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,637评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,881评论 1 298
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,621评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,710评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,387评论 4 319
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,971评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,947评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,189评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 44,805评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,449评论 2 342

推荐阅读更多精彩内容