actuator

添加依賴

<dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-actuator</artifactId>
 </dependency>

接口暴露模式

management.contextPath=/actuator
#取消鑒權(quán)模式
management.security.enabled=false

即所有actuator相關(guān)的接口都需要添加/actuator前綴

查看暴露的接口

http://localhost:8080/actuator/mappings

打開網(wǎng)頁后搜索: /actuator/

actuator源碼解析

先看下actuator是如何實現(xiàn)的,以beans為例子

  • /beans請求是哪個spring-bean在處理(endpointHandlerMapping)
http://localhost:8080/actuator/mappings

{
[/actuator/beans || /actuator/beans.json],methods=[GET],produces=[application/vnd.spring-boot.actuator.v1+json || application/json]}: {
bean: "endpointHandlerMapping",
method: "public java.lang.Object org.springframework.boot.actuate.endpoint.mvc.EndpointMvcAdapter.invoke()"
}

訪問mappings接口藻懒,可以看到 /beans的處理類是endpointHandlerMapping

  • endpointHandlerMapping對應(yīng)的類是哪個
http://localhost:8080/actuator/beans

{
bean: "endpointHandlerMapping",
aliases: [ ],
scope: "singleton",
type: "org.springframework.boot.actuate.endpoint.mvc.EndpointHandlerMapping",
resource: "class path resource [org/springframework/boot/actuate/autoconfigure/EndpointWebMvcManagementContextConfiguration.class]",
dependencies: [
"mvcEndpoints"
]
}

endpointHandlerMapping對應(yīng)的類為org.springframework.boot.actuate.endpoint.mvc.EndpointHandlerMapping,初始化的configuration類為org/springframework/boot/actuate/autoconfigure/EndpointWebMvcManagementContextConfiguration.class。

  • EndpointWebMvcManagementContextConfiguration的初始化過程
    @Bean
    @ConditionalOnMissingBean
    public EndpointHandlerMapping endpointHandlerMapping() {
        Set<MvcEndpoint> endpoints = mvcEndpoints().getEndpoints();
        CorsConfiguration corsConfiguration = getCorsConfiguration(this.corsProperties);
        EndpointHandlerMapping mapping = new EndpointHandlerMapping(endpoints,
                corsConfiguration);
        mapping.setPrefix(this.managementServerProperties.getContextPath());
        MvcEndpointSecurityInterceptor securityInterceptor = new MvcEndpointSecurityInterceptor(
                this.managementServerProperties.getSecurity().isEnabled(),
                this.managementServerProperties.getSecurity().getRoles());
        mapping.setSecurityInterceptor(securityInterceptor);
        for (EndpointHandlerMappingCustomizer customizer : this.mappingCustomizers) {
            customizer.customize(mapping);
        }
        return mapping;
}

    @Bean
    @ConditionalOnMissingBean
    public MvcEndpoints mvcEndpoints() {
        return new MvcEndpoints();
    }

EndpointHandlerMapping的父類為RequestMappingHandlerMapping,RequestMappingHandlerMapping為springmvc的核心類,主要作用是轉(zhuǎn)發(fā)請求到某個具體的方法蕉拢。

MvcEndpoints神奇的地方在于其初始化代碼:

    public void afterPropertiesSet() throws Exception {
        Collection<MvcEndpoint> existing = BeanFactoryUtils
                .beansOfTypeIncludingAncestors(this.applicationContext, MvcEndpoint.class)
                .values();
        this.endpoints.addAll(existing);
        this.customTypes = findEndpointClasses(existing);
        @SuppressWarnings("rawtypes")
        Collection<Endpoint> delegates = BeanFactoryUtils
                .beansOfTypeIncludingAncestors(this.applicationContext, Endpoint.class)
                .values();
        for (Endpoint<?> endpoint : delegates) {
            if (isGenericEndpoint(endpoint.getClass()) && endpoint.isEnabled()) {
                EndpointMvcAdapter adapter = new EndpointMvcAdapter(endpoint);
                String path = determinePath(endpoint,
                        this.applicationContext.getEnvironment());
                if (path != null) {
                    adapter.setPath(path);
                }
                this.endpoints.add(adapter);
            }
        }
    }

主要做了兩件事:
1.查找spring的beanfactory中所有的MvcEndpoint類
2.查找spring的beanfactory中所有的Endpoint類
3.如果某個MvcEndpoint的getEndpointType方法的返回結(jié)果和某個Endpoint的class相沖突,則選取MvcEndpoint
4.查找選取的結(jié)果放在MvcEndpoints的endpoints方法中。

請注意MvcEndpoints和MvcEndpoint和Endpoint區(qū)別扩灯。

  • Endpoint是actuator的基本元素媚赖,一個Endpoint代表一個接口
  • Endpoint可以單獨使用,單獨使用時MvcEndpoints會使用EndpointMvcAdapter自動將Endpoint封裝為MvcEndpoint對象
  • 可以自己主動將Endpoint封裝為MvcEndpoint
  • MvcEndpoint可以單獨使用
  • MvcEndpoints的作用是將Endpoint和MvcEndpoint整合提供給EndpointHandlerMapping使用

自定義Endpoint

    @Bean
    public Endpoint<String> testEndPoint(){
        return new Endpoint<String>() {
            @Override
            public String getId() {
                return "test";
            }

            @Override
            public boolean isEnabled() {
                return true;
            }

            @Override
            public boolean isSensitive() {
                return false;
            }

            @Override
            public String invoke() {
                return "invokeingTestEndPoint";
            }
        };
    }

getId方法是path珠插,這個path為:/actuator/test

自定義MvcEndpoint

    @Bean
    public MvcEndpoint testMvcEndpoint(){
        return new MvcEndpoint() {
            @Override
            public String getPath() {
                return "/testMvcEndpoint";
            }

            @Override
            public boolean isSensitive() {
                return false;
            }

            @RequestMapping("testMvcEndpoint")
            @ResponseBody
            public String get(){
                return "invokingTestMvcEndpoint";
            }

            @RequestMapping("testMvcEndpoint2")
            @ResponseBody
            public String ge2t(){
                return "invokingTestMvcEndpoint2";
            }

            @Override
            public Class<? extends Endpoint> getEndpointType() {
                return null;
            }
        };
    }

getPath()方法為path前綴惧磺,類似于controller類上的RequestMapping,實際的path需要拼接上各個方法定義的RequestMapping捻撑。
這個bean定義了兩個path:

  • /actuator/testMvcEndpoint/testMvcEndpoint
  • /actuator/testMvcEndpoint/testMvcEndpoint2
最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末磨隘,一起剝皮案震驚了整個濱河市,隨后出現(xiàn)的幾起案子顾患,更是在濱河造成了極大的恐慌番捂,老刑警劉巖,帶你破解...
    沈念sama閱讀 211,194評論 6 490
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件江解,死亡現(xiàn)場離奇詭異设预,居然都是意外死亡,警方通過查閱死者的電腦和手機犁河,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,058評論 2 385
  • 文/潘曉璐 我一進店門鳖枕,熙熙樓的掌柜王于貴愁眉苦臉地迎上來,“玉大人桨螺,你說我怎么就攤上這事宾符。” “怎么了灭翔?”我有些...
    開封第一講書人閱讀 156,780評論 0 346
  • 文/不壞的土叔 我叫張陵吸奴,是天一觀的道長。 經(jīng)常有香客問我缠局,道長则奥,這世上最難降的妖魔是什么? 我笑而不...
    開封第一講書人閱讀 56,388評論 1 283
  • 正文 為了忘掉前任狭园,我火速辦了婚禮读处,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘唱矛。我一直安慰自己罚舱,他們只是感情好,可當我...
    茶點故事閱讀 65,430評論 5 384
  • 文/花漫 我一把揭開白布绎谦。 她就那樣靜靜地躺著管闷,像睡著了一般。 火紅的嫁衣襯著肌膚如雪窃肠。 梳的紋絲不亂的頭發(fā)上包个,一...
    開封第一講書人閱讀 49,764評論 1 290
  • 那天,我揣著相機與錄音冤留,去河邊找鬼碧囊。 笑死树灶,一個胖子當著我的面吹牛,可吹牛的內(nèi)容都是我干的糯而。 我是一名探鬼主播天通,決...
    沈念sama閱讀 38,907評論 3 406
  • 文/蒼蘭香墨 我猛地睜開眼,長吁一口氣:“原來是場噩夢啊……” “哼熄驼!你這毒婦竟也來了像寒?” 一聲冷哼從身側(cè)響起,我...
    開封第一講書人閱讀 37,679評論 0 266
  • 序言:老撾萬榮一對情侶失蹤瓜贾,失蹤者是張志新(化名)和其女友劉穎萝映,沒想到半個月后,有當?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體阐虚,經(jīng)...
    沈念sama閱讀 44,122評論 1 303
  • 正文 獨居荒郊野嶺守林人離奇死亡序臂,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 36,459評論 2 325
  • 正文 我和宋清朗相戀三年,在試婚紗的時候發(fā)現(xiàn)自己被綠了实束。 大學(xué)時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片奥秆。...
    茶點故事閱讀 38,605評論 1 340
  • 序言:一個原本活蹦亂跳的男人離奇死亡,死狀恐怖咸灿,靈堂內(nèi)的尸體忽然破棺而出构订,到底是詐尸還是另有隱情,我是刑警寧澤避矢,帶...
    沈念sama閱讀 34,270評論 4 329
  • 正文 年R本政府宣布悼瘾,位于F島的核電站,受9級特大地震影響审胸,放射性物質(zhì)發(fā)生泄漏亥宿。R本人自食惡果不足惜,卻給世界環(huán)境...
    茶點故事閱讀 39,867評論 3 312
  • 文/蒙蒙 一砂沛、第九天 我趴在偏房一處隱蔽的房頂上張望烫扼。 院中可真熱鬧,春花似錦碍庵、人聲如沸映企。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,734評論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽堰氓。三九已至,卻和暖如春苹享,著一層夾襖步出監(jiān)牢的瞬間双絮,已是汗流浹背。 一陣腳步聲響...
    開封第一講書人閱讀 31,961評論 1 265
  • 我被黑心中介騙來泰國打工, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留掷邦,地道東北人白胀。 一個月前我還...
    沈念sama閱讀 46,297評論 2 360
  • 正文 我出身青樓椭赋,卻偏偏與公主長得像抚岗,于是被迫代替她去往敵國和親。 傳聞我的和親對象是個殘疾皇子哪怔,可洞房花燭夜當晚...
    茶點故事閱讀 43,472評論 2 348

推薦閱讀更多精彩內(nèi)容