bladex-nacos.json 97 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539
  1. {
  2. "annotations": {
  3. "list": [
  4. {
  5. "builtIn": 1,
  6. "datasource": "-- Grafana --",
  7. "enable": true,
  8. "hide": true,
  9. "iconColor": "rgba(0, 211, 255, 1)",
  10. "name": "Annotations & Alerts",
  11. "type": "dashboard"
  12. }
  13. ]
  14. },
  15. "description": "Nacos监控",
  16. "editable": true,
  17. "gnetId": 13221,
  18. "graphTooltip": 1,
  19. "id": 23,
  20. "iteration": 1612422996467,
  21. "links": [
  22. {
  23. "icon": "cloud",
  24. "tags": [],
  25. "title": "BladeX",
  26. "tooltip": "",
  27. "type": "link",
  28. "url": "https://bladex.vip"
  29. }
  30. ],
  31. "panels": [
  32. {
  33. "collapsed": false,
  34. "datasource": "Prometheus",
  35. "gridPos": {
  36. "h": 1,
  37. "w": 24,
  38. "x": 0,
  39. "y": 0
  40. },
  41. "id": 80,
  42. "panels": [],
  43. "title": "nacos monitor",
  44. "type": "row"
  45. },
  46. {
  47. "cacheTimeout": null,
  48. "colorBackground": false,
  49. "colorValue": false,
  50. "colors": [
  51. "#299c46",
  52. "rgba(237, 129, 40, 0.89)",
  53. "#d44a3a"
  54. ],
  55. "datasource": "Prometheus",
  56. "fieldConfig": {
  57. "defaults": {
  58. "custom": {}
  59. },
  60. "overrides": []
  61. },
  62. "format": "none",
  63. "gauge": {
  64. "maxValue": 100,
  65. "minValue": 0,
  66. "show": false,
  67. "thresholdLabels": false,
  68. "thresholdMarkers": true
  69. },
  70. "gridPos": {
  71. "h": 3,
  72. "w": 3,
  73. "x": 0,
  74. "y": 1
  75. },
  76. "id": 89,
  77. "interval": null,
  78. "links": [],
  79. "mappingType": 1,
  80. "mappingTypes": [
  81. {
  82. "name": "value to text",
  83. "value": 1
  84. },
  85. {
  86. "name": "range to text",
  87. "value": 2
  88. }
  89. ],
  90. "maxDataPoints": 100,
  91. "nullPointMode": "connected",
  92. "nullText": null,
  93. "postfix": "",
  94. "postfixFontSize": "50%",
  95. "prefix": "",
  96. "prefixFontSize": "50%",
  97. "rangeMaps": [
  98. {
  99. "from": "null",
  100. "text": "N/A",
  101. "to": "null"
  102. }
  103. ],
  104. "sparkline": {
  105. "fillColor": "rgba(31, 118, 189, 0.18)",
  106. "full": false,
  107. "lineColor": "rgb(31, 120, 193)",
  108. "show": false
  109. },
  110. "tableColumn": "",
  111. "targets": [
  112. {
  113. "expr": "count(nacos_monitor{name=\"configCount\"})",
  114. "format": "time_series",
  115. "intervalFactor": 1,
  116. "refId": "A"
  117. }
  118. ],
  119. "thresholds": "",
  120. "title": "UP",
  121. "type": "singlestat",
  122. "valueFontSize": "80%",
  123. "valueMaps": [
  124. {
  125. "op": "=",
  126. "text": "N/A",
  127. "value": "null"
  128. }
  129. ],
  130. "valueName": "current"
  131. },
  132. {
  133. "cacheTimeout": null,
  134. "colorBackground": false,
  135. "colorValue": false,
  136. "colors": [
  137. "#299c46",
  138. "rgba(237, 129, 40, 0.89)",
  139. "#d44a3a"
  140. ],
  141. "datasource": "Prometheus",
  142. "fieldConfig": {
  143. "defaults": {
  144. "custom": {}
  145. },
  146. "overrides": []
  147. },
  148. "format": "none",
  149. "gauge": {
  150. "maxValue": 100,
  151. "minValue": 0,
  152. "show": false,
  153. "thresholdLabels": false,
  154. "thresholdMarkers": true
  155. },
  156. "gridPos": {
  157. "h": 3,
  158. "w": 3,
  159. "x": 3,
  160. "y": 1
  161. },
  162. "id": 90,
  163. "interval": null,
  164. "links": [],
  165. "mappingType": 1,
  166. "mappingTypes": [
  167. {
  168. "name": "value to text",
  169. "value": 1
  170. },
  171. {
  172. "name": "range to text",
  173. "value": 2
  174. }
  175. ],
  176. "maxDataPoints": 100,
  177. "nullPointMode": "connected",
  178. "nullText": null,
  179. "postfix": "",
  180. "postfixFontSize": "50%",
  181. "prefix": "",
  182. "prefixFontSize": "50%",
  183. "rangeMaps": [
  184. {
  185. "from": "null",
  186. "text": "N/A",
  187. "to": "null"
  188. }
  189. ],
  190. "sparkline": {
  191. "fillColor": "rgba(31, 118, 189, 0.18)",
  192. "full": false,
  193. "lineColor": "rgb(31, 120, 193)",
  194. "show": false
  195. },
  196. "tableColumn": "",
  197. "targets": [
  198. {
  199. "expr": "max(nacos_monitor{name='serviceCount'})",
  200. "format": "time_series",
  201. "intervalFactor": 1,
  202. "refId": "A"
  203. }
  204. ],
  205. "thresholds": "",
  206. "title": "service count",
  207. "type": "singlestat",
  208. "valueFontSize": "80%",
  209. "valueMaps": [
  210. {
  211. "op": "=",
  212. "text": "N/A",
  213. "value": "null"
  214. }
  215. ],
  216. "valueName": "current"
  217. },
  218. {
  219. "cacheTimeout": null,
  220. "colorBackground": false,
  221. "colorValue": false,
  222. "colors": [
  223. "#299c46",
  224. "rgba(237, 129, 40, 0.89)",
  225. "#d44a3a"
  226. ],
  227. "datasource": "Prometheus",
  228. "fieldConfig": {
  229. "defaults": {
  230. "custom": {}
  231. },
  232. "overrides": []
  233. },
  234. "format": "none",
  235. "gauge": {
  236. "maxValue": 100,
  237. "minValue": 0,
  238. "show": false,
  239. "thresholdLabels": false,
  240. "thresholdMarkers": true
  241. },
  242. "gridPos": {
  243. "h": 3,
  244. "w": 3,
  245. "x": 6,
  246. "y": 1
  247. },
  248. "id": 93,
  249. "interval": null,
  250. "links": [],
  251. "mappingType": 1,
  252. "mappingTypes": [
  253. {
  254. "name": "value to text",
  255. "value": 1
  256. },
  257. {
  258. "name": "range to text",
  259. "value": 2
  260. }
  261. ],
  262. "maxDataPoints": 100,
  263. "nullPointMode": "connected",
  264. "nullText": null,
  265. "postfix": "",
  266. "postfixFontSize": "50%",
  267. "prefix": "",
  268. "prefixFontSize": "50%",
  269. "rangeMaps": [
  270. {
  271. "from": "null",
  272. "text": "N/A",
  273. "to": "null"
  274. }
  275. ],
  276. "sparkline": {
  277. "fillColor": "rgba(31, 118, 189, 0.18)",
  278. "full": false,
  279. "lineColor": "rgb(31, 120, 193)",
  280. "show": false
  281. },
  282. "tableColumn": "",
  283. "targets": [
  284. {
  285. "expr": "max(nacos_monitor{name='ipCount'})",
  286. "format": "time_series",
  287. "intervalFactor": 1,
  288. "refId": "A"
  289. }
  290. ],
  291. "thresholds": "",
  292. "title": "ip count",
  293. "type": "singlestat",
  294. "valueFontSize": "80%",
  295. "valueMaps": [
  296. {
  297. "op": "=",
  298. "text": "N/A",
  299. "value": "null"
  300. }
  301. ],
  302. "valueName": "current"
  303. },
  304. {
  305. "cacheTimeout": null,
  306. "colorBackground": false,
  307. "colorValue": false,
  308. "colors": [
  309. "#299c46",
  310. "rgba(237, 129, 40, 0.89)",
  311. "#d44a3a"
  312. ],
  313. "datasource": "Prometheus",
  314. "fieldConfig": {
  315. "defaults": {
  316. "custom": {}
  317. },
  318. "overrides": []
  319. },
  320. "format": "none",
  321. "gauge": {
  322. "maxValue": 100,
  323. "minValue": 0,
  324. "show": false,
  325. "thresholdLabels": false,
  326. "thresholdMarkers": true
  327. },
  328. "gridPos": {
  329. "h": 3,
  330. "w": 3,
  331. "x": 9,
  332. "y": 1
  333. },
  334. "id": 92,
  335. "interval": null,
  336. "links": [],
  337. "mappingType": 1,
  338. "mappingTypes": [
  339. {
  340. "name": "value to text",
  341. "value": 1
  342. },
  343. {
  344. "name": "range to text",
  345. "value": 2
  346. }
  347. ],
  348. "maxDataPoints": 100,
  349. "nullPointMode": "connected",
  350. "nullText": null,
  351. "postfix": "",
  352. "postfixFontSize": "50%",
  353. "prefix": "",
  354. "prefixFontSize": "50%",
  355. "rangeMaps": [
  356. {
  357. "from": "null",
  358. "text": "N/A",
  359. "to": "null"
  360. }
  361. ],
  362. "sparkline": {
  363. "fillColor": "rgba(31, 118, 189, 0.18)",
  364. "full": false,
  365. "lineColor": "rgb(31, 120, 193)",
  366. "show": false
  367. },
  368. "tableColumn": "",
  369. "targets": [
  370. {
  371. "expr": "max(nacos_monitor{name='configCount', instance=~'$instance'})",
  372. "format": "time_series",
  373. "intervalFactor": 1,
  374. "refId": "A"
  375. }
  376. ],
  377. "thresholds": "",
  378. "title": "config count",
  379. "type": "singlestat",
  380. "valueFontSize": "80%",
  381. "valueMaps": [
  382. {
  383. "op": "=",
  384. "text": "N/A",
  385. "value": "null"
  386. }
  387. ],
  388. "valueName": "current"
  389. },
  390. {
  391. "cacheTimeout": null,
  392. "colorBackground": false,
  393. "colorValue": false,
  394. "colors": [
  395. "#299c46",
  396. "rgba(237, 129, 40, 0.89)",
  397. "#d44a3a"
  398. ],
  399. "datasource": "Prometheus",
  400. "fieldConfig": {
  401. "defaults": {
  402. "custom": {}
  403. },
  404. "overrides": []
  405. },
  406. "format": "none",
  407. "gauge": {
  408. "maxValue": 100,
  409. "minValue": 0,
  410. "show": false,
  411. "thresholdLabels": false,
  412. "thresholdMarkers": true
  413. },
  414. "gridPos": {
  415. "h": 3,
  416. "w": 3,
  417. "x": 12,
  418. "y": 1
  419. },
  420. "id": 91,
  421. "interval": null,
  422. "links": [],
  423. "mappingType": 1,
  424. "mappingTypes": [
  425. {
  426. "name": "value to text",
  427. "value": 1
  428. },
  429. {
  430. "name": "range to text",
  431. "value": 2
  432. }
  433. ],
  434. "maxDataPoints": 100,
  435. "nullPointMode": "connected",
  436. "nullText": null,
  437. "postfix": "",
  438. "postfixFontSize": "50%",
  439. "prefix": "",
  440. "prefixFontSize": "50%",
  441. "rangeMaps": [
  442. {
  443. "from": "null",
  444. "text": "N/A",
  445. "to": "null"
  446. }
  447. ],
  448. "sparkline": {
  449. "fillColor": "rgba(31, 118, 189, 0.18)",
  450. "full": false,
  451. "lineColor": "rgb(31, 120, 193)",
  452. "show": false
  453. },
  454. "tableColumn": "",
  455. "targets": [
  456. {
  457. "expr": "sum(nacos_monitor{name='longPolling'})",
  458. "format": "time_series",
  459. "intervalFactor": 1,
  460. "refId": "A"
  461. }
  462. ],
  463. "thresholds": "",
  464. "title": "long polling",
  465. "type": "singlestat",
  466. "valueFontSize": "80%",
  467. "valueMaps": [
  468. {
  469. "op": "=",
  470. "text": "N/A",
  471. "value": "null"
  472. }
  473. ],
  474. "valueName": "current"
  475. },
  476. {
  477. "cacheTimeout": null,
  478. "colorBackground": false,
  479. "colorValue": false,
  480. "colors": [
  481. "#299c46",
  482. "rgba(237, 129, 40, 0.89)",
  483. "#d44a3a"
  484. ],
  485. "datasource": "Prometheus",
  486. "fieldConfig": {
  487. "defaults": {
  488. "custom": {}
  489. },
  490. "overrides": []
  491. },
  492. "format": "none",
  493. "gauge": {
  494. "maxValue": 100,
  495. "minValue": 0,
  496. "show": false,
  497. "thresholdLabels": false,
  498. "thresholdMarkers": true
  499. },
  500. "gridPos": {
  501. "h": 3,
  502. "w": 3,
  503. "x": 15,
  504. "y": 1
  505. },
  506. "id": 88,
  507. "interval": null,
  508. "links": [],
  509. "mappingType": 1,
  510. "mappingTypes": [
  511. {
  512. "name": "value to text",
  513. "value": 1
  514. },
  515. {
  516. "name": "range to text",
  517. "value": 2
  518. }
  519. ],
  520. "maxDataPoints": 100,
  521. "nullPointMode": "connected",
  522. "nullText": null,
  523. "postfix": "",
  524. "postfixFontSize": "50%",
  525. "prefix": "",
  526. "prefixFontSize": "50%",
  527. "rangeMaps": [
  528. {
  529. "from": "null",
  530. "text": "N/A",
  531. "to": "null"
  532. }
  533. ],
  534. "sparkline": {
  535. "fillColor": "rgba(31, 118, 189, 0.18)",
  536. "full": false,
  537. "lineColor": "rgb(31, 120, 193)",
  538. "show": false
  539. },
  540. "tableColumn": "",
  541. "targets": [
  542. {
  543. "expr": "sum(nacos_monitor{name='getConfig', instance=~'$instance'}) by (name)",
  544. "format": "time_series",
  545. "intervalFactor": 1,
  546. "refId": "A"
  547. }
  548. ],
  549. "thresholds": "",
  550. "title": "config push total",
  551. "type": "singlestat",
  552. "valueFontSize": "80%",
  553. "valueMaps": [
  554. {
  555. "op": "=",
  556. "text": "N/A",
  557. "value": "null"
  558. }
  559. ],
  560. "valueName": "current"
  561. },
  562. {
  563. "datasource": "Prometheus",
  564. "fieldConfig": {
  565. "defaults": {
  566. "custom": {
  567. "align": null,
  568. "filterable": false
  569. },
  570. "mappings": [],
  571. "thresholds": {
  572. "mode": "absolute",
  573. "steps": [
  574. {
  575. "color": "green",
  576. "value": null
  577. },
  578. {
  579. "color": "red",
  580. "value": 80
  581. }
  582. ]
  583. }
  584. },
  585. "overrides": []
  586. },
  587. "gridPos": {
  588. "h": 3,
  589. "w": 6,
  590. "x": 18,
  591. "y": 1
  592. },
  593. "id": 82,
  594. "links": [],
  595. "options": {
  596. "content": "<center>\n <a href=\"https://nacos.io\">\n <img src=\"https://s1.ax1x.com/2020/10/22/BiuZRO.png\" style=\"height: 50px; margin-top:20px\" />\n </a>\n</center>",
  597. "mode": "html"
  598. },
  599. "pluginVersion": "7.3.7",
  600. "timeFrom": null,
  601. "timeShift": null,
  602. "title": "",
  603. "type": "text"
  604. },
  605. {
  606. "cacheTimeout": null,
  607. "colorBackground": false,
  608. "colorPrefix": false,
  609. "colorValue": false,
  610. "colors": [
  611. "#299c46",
  612. "rgba(237, 129, 40, 0.89)",
  613. "#d44a3a"
  614. ],
  615. "datasource": "Prometheus",
  616. "decimals": null,
  617. "fieldConfig": {
  618. "defaults": {
  619. "custom": {}
  620. },
  621. "overrides": []
  622. },
  623. "format": "none",
  624. "gauge": {
  625. "maxValue": 100,
  626. "minValue": 0,
  627. "show": true,
  628. "thresholdLabels": false,
  629. "thresholdMarkers": true
  630. },
  631. "gridPos": {
  632. "h": 4,
  633. "w": 9,
  634. "x": 0,
  635. "y": 4
  636. },
  637. "id": 33,
  638. "interval": "",
  639. "links": [],
  640. "mappingType": 1,
  641. "mappingTypes": [
  642. {
  643. "name": "value to text",
  644. "value": 1
  645. },
  646. {
  647. "name": "range to text",
  648. "value": 2
  649. }
  650. ],
  651. "maxDataPoints": 100,
  652. "nullPointMode": "connected",
  653. "nullText": null,
  654. "postfix": "%",
  655. "postfixFontSize": "50%",
  656. "prefix": "",
  657. "prefixFontSize": "50%",
  658. "rangeMaps": [
  659. {
  660. "from": "null",
  661. "text": "N/A",
  662. "to": "null"
  663. }
  664. ],
  665. "repeat": null,
  666. "repeatDirection": "h",
  667. "sparkline": {
  668. "fillColor": "rgba(31, 118, 189, 0.18)",
  669. "full": false,
  670. "lineColor": "rgb(31, 120, 193)",
  671. "show": false
  672. },
  673. "tableColumn": "",
  674. "targets": [
  675. {
  676. "expr": "max(system_cpu_usage{instance=~'$instance'}) * 100",
  677. "format": "time_series",
  678. "interval": "",
  679. "intervalFactor": 1,
  680. "legendFormat": "",
  681. "refId": "A"
  682. }
  683. ],
  684. "thresholds": "50,80",
  685. "title": "cpu",
  686. "type": "singlestat",
  687. "valueFontSize": "70%",
  688. "valueMaps": [
  689. {
  690. "op": "=",
  691. "text": "N/A",
  692. "value": "null"
  693. }
  694. ],
  695. "valueName": "current"
  696. },
  697. {
  698. "cacheTimeout": null,
  699. "colorBackground": false,
  700. "colorPrefix": false,
  701. "colorValue": false,
  702. "colors": [
  703. "#299c46",
  704. "rgba(237, 129, 40, 0.89)",
  705. "#d44a3a"
  706. ],
  707. "datasource": "Prometheus",
  708. "decimals": null,
  709. "fieldConfig": {
  710. "defaults": {
  711. "custom": {}
  712. },
  713. "overrides": []
  714. },
  715. "format": "none",
  716. "gauge": {
  717. "maxValue": 70,
  718. "minValue": 0,
  719. "show": true,
  720. "thresholdLabels": false,
  721. "thresholdMarkers": true
  722. },
  723. "gridPos": {
  724. "h": 4,
  725. "w": 9,
  726. "x": 9,
  727. "y": 4
  728. },
  729. "id": 32,
  730. "interval": null,
  731. "links": [],
  732. "mappingType": 1,
  733. "mappingTypes": [
  734. {
  735. "name": "value to text",
  736. "value": 1
  737. },
  738. {
  739. "name": "range to text",
  740. "value": 2
  741. }
  742. ],
  743. "maxDataPoints": 100,
  744. "nullPointMode": "connected",
  745. "nullText": null,
  746. "postfix": "%",
  747. "postfixFontSize": "50%",
  748. "prefix": "",
  749. "prefixFontSize": "50%",
  750. "rangeMaps": [
  751. {
  752. "from": "null",
  753. "text": "N/A",
  754. "to": "null"
  755. }
  756. ],
  757. "sparkline": {
  758. "fillColor": "rgba(31, 118, 189, 0.18)",
  759. "full": false,
  760. "lineColor": "rgb(31, 120, 193)",
  761. "show": false
  762. },
  763. "tableColumn": "",
  764. "targets": [
  765. {
  766. "expr": "sum(jvm_memory_used_bytes{area=\"heap\", instance=~'$instance'})/sum(jvm_memory_max_bytes{area=\"heap\", instance=~'$instance'}) * 100",
  767. "format": "time_series",
  768. "intervalFactor": 1,
  769. "refId": "A"
  770. }
  771. ],
  772. "thresholds": "50,70",
  773. "title": "memory",
  774. "type": "singlestat",
  775. "valueFontSize": "70%",
  776. "valueMaps": [
  777. {
  778. "op": "=",
  779. "text": "N/A",
  780. "value": "null"
  781. }
  782. ],
  783. "valueName": "current"
  784. },
  785. {
  786. "dashboardFilter": "",
  787. "datasource": "Prometheus",
  788. "fieldConfig": {
  789. "defaults": {
  790. "custom": {}
  791. },
  792. "overrides": []
  793. },
  794. "folderId": null,
  795. "gridPos": {
  796. "h": 16,
  797. "w": 6,
  798. "x": 18,
  799. "y": 4
  800. },
  801. "id": 48,
  802. "limit": 10,
  803. "links": [],
  804. "nameFilter": "",
  805. "onlyAlertsOnDashboard": false,
  806. "repeat": null,
  807. "show": "current",
  808. "sortOrder": 1,
  809. "stateFilter": [],
  810. "title": "alert list",
  811. "type": "alertlist"
  812. },
  813. {
  814. "cacheTimeout": null,
  815. "colorBackground": false,
  816. "colorPrefix": false,
  817. "colorValue": false,
  818. "colors": [
  819. "#299c46",
  820. "rgba(237, 129, 40, 0.89)",
  821. "#d44a3a"
  822. ],
  823. "datasource": "Prometheus",
  824. "decimals": null,
  825. "fieldConfig": {
  826. "defaults": {
  827. "custom": {}
  828. },
  829. "overrides": []
  830. },
  831. "format": "none",
  832. "gauge": {
  833. "maxValue": 1500,
  834. "minValue": 0,
  835. "show": true,
  836. "thresholdLabels": false,
  837. "thresholdMarkers": true
  838. },
  839. "gridPos": {
  840. "h": 4,
  841. "w": 9,
  842. "x": 0,
  843. "y": 8
  844. },
  845. "id": 29,
  846. "interval": null,
  847. "links": [],
  848. "mappingType": 1,
  849. "mappingTypes": [
  850. {
  851. "name": "value to text",
  852. "value": 1
  853. },
  854. {
  855. "name": "range to text",
  856. "value": 2
  857. }
  858. ],
  859. "maxDataPoints": 100,
  860. "nullPointMode": "connected",
  861. "nullText": null,
  862. "postfix": "",
  863. "postfixFontSize": "50%",
  864. "prefix": "",
  865. "prefixFontSize": "50%",
  866. "rangeMaps": [
  867. {
  868. "from": "null",
  869. "text": "N/A",
  870. "to": "null"
  871. }
  872. ],
  873. "sparkline": {
  874. "fillColor": "rgba(31, 118, 189, 0.18)",
  875. "full": false,
  876. "lineColor": "rgb(31, 120, 193)",
  877. "show": false
  878. },
  879. "tableColumn": "",
  880. "targets": [
  881. {
  882. "expr": "max(jvm_threads_daemon_threads{instance=~'$instance'})",
  883. "format": "time_series",
  884. "intervalFactor": 1,
  885. "refId": "A"
  886. }
  887. ],
  888. "thresholds": "800,1500",
  889. "title": "threads",
  890. "type": "singlestat",
  891. "valueFontSize": "70%",
  892. "valueMaps": [
  893. {
  894. "op": "=",
  895. "text": "N/A",
  896. "value": "null"
  897. }
  898. ],
  899. "valueName": "current"
  900. },
  901. {
  902. "cacheTimeout": null,
  903. "colorBackground": false,
  904. "colorPrefix": false,
  905. "colorValue": false,
  906. "colors": [
  907. "#299c46",
  908. "rgba(237, 129, 40, 0.89)",
  909. "#d44a3a"
  910. ],
  911. "datasource": "Prometheus",
  912. "decimals": null,
  913. "fieldConfig": {
  914. "defaults": {
  915. "custom": {}
  916. },
  917. "overrides": []
  918. },
  919. "format": "none",
  920. "gauge": {
  921. "maxValue": 20,
  922. "minValue": 0,
  923. "show": true,
  924. "thresholdLabels": false,
  925. "thresholdMarkers": true
  926. },
  927. "gridPos": {
  928. "h": 4,
  929. "w": 9,
  930. "x": 9,
  931. "y": 8
  932. },
  933. "id": 30,
  934. "interval": null,
  935. "links": [],
  936. "mappingType": 1,
  937. "mappingTypes": [
  938. {
  939. "name": "value to text",
  940. "value": 1
  941. },
  942. {
  943. "name": "range to text",
  944. "value": 2
  945. }
  946. ],
  947. "maxDataPoints": 100,
  948. "nullPointMode": "connected",
  949. "nullText": null,
  950. "postfix": "",
  951. "postfixFontSize": "50%",
  952. "prefix": "",
  953. "prefixFontSize": "50%",
  954. "rangeMaps": [
  955. {
  956. "from": "null",
  957. "text": "N/A",
  958. "to": "null"
  959. }
  960. ],
  961. "sparkline": {
  962. "fillColor": "rgba(31, 118, 189, 0.18)",
  963. "full": false,
  964. "lineColor": "rgb(31, 120, 193)",
  965. "show": false
  966. },
  967. "tableColumn": "",
  968. "targets": [
  969. {
  970. "expr": "max(system_load_average_1m{instance=~'$instance'})",
  971. "format": "time_series",
  972. "intervalFactor": 1,
  973. "refId": "A"
  974. }
  975. ],
  976. "thresholds": "5,10",
  977. "title": "load",
  978. "type": "singlestat",
  979. "valueFontSize": "70%",
  980. "valueMaps": [
  981. {
  982. "op": "=",
  983. "text": "N/A",
  984. "value": "null"
  985. }
  986. ],
  987. "valueName": "current"
  988. },
  989. {
  990. "cacheTimeout": null,
  991. "colorBackground": false,
  992. "colorPrefix": false,
  993. "colorValue": false,
  994. "colors": [
  995. "#299c46",
  996. "rgba(237, 129, 40, 0.89)",
  997. "#d44a3a"
  998. ],
  999. "datasource": "Prometheus",
  1000. "decimals": null,
  1001. "fieldConfig": {
  1002. "defaults": {
  1003. "custom": {}
  1004. },
  1005. "overrides": []
  1006. },
  1007. "format": "none",
  1008. "gauge": {
  1009. "maxValue": 5000,
  1010. "minValue": 0,
  1011. "show": true,
  1012. "thresholdLabels": false,
  1013. "thresholdMarkers": true
  1014. },
  1015. "gridPos": {
  1016. "h": 4,
  1017. "w": 9,
  1018. "x": 0,
  1019. "y": 12
  1020. },
  1021. "id": 61,
  1022. "interval": null,
  1023. "links": [],
  1024. "mappingType": 1,
  1025. "mappingTypes": [
  1026. {
  1027. "name": "value to text",
  1028. "value": 1
  1029. },
  1030. {
  1031. "name": "range to text",
  1032. "value": 2
  1033. }
  1034. ],
  1035. "maxDataPoints": 100,
  1036. "nullPointMode": "connected",
  1037. "nullText": null,
  1038. "postfix": "ms",
  1039. "postfixFontSize": "50%",
  1040. "prefix": "",
  1041. "prefixFontSize": "50%",
  1042. "rangeMaps": [
  1043. {
  1044. "from": "null",
  1045. "text": "N/A",
  1046. "to": "null"
  1047. }
  1048. ],
  1049. "sparkline": {
  1050. "fillColor": "rgba(31, 118, 189, 0.18)",
  1051. "full": false,
  1052. "lineColor": "rgb(31, 120, 193)",
  1053. "show": false
  1054. },
  1055. "tableColumn": "",
  1056. "targets": [
  1057. {
  1058. "expr": "sum(rate(nacos_timer_seconds_sum{instance=~'$instance'}[1m]))/sum(rate(nacos_timer_seconds_count{instance=~'$instance'}[1m])) * 1000",
  1059. "format": "time_series",
  1060. "intervalFactor": 1,
  1061. "legendFormat": "",
  1062. "refId": "A"
  1063. }
  1064. ],
  1065. "thresholds": "3000,5000",
  1066. "title": "notify rt",
  1067. "type": "singlestat",
  1068. "valueFontSize": "80%",
  1069. "valueMaps": [
  1070. {
  1071. "op": "=",
  1072. "text": "N/A",
  1073. "value": "null"
  1074. }
  1075. ],
  1076. "valueName": "current"
  1077. },
  1078. {
  1079. "cacheTimeout": null,
  1080. "colorBackground": false,
  1081. "colorPrefix": false,
  1082. "colorValue": false,
  1083. "colors": [
  1084. "#299c46",
  1085. "rgba(237, 129, 40, 0.89)",
  1086. "#d44a3a"
  1087. ],
  1088. "datasource": "Prometheus",
  1089. "decimals": null,
  1090. "fieldConfig": {
  1091. "defaults": {
  1092. "custom": {}
  1093. },
  1094. "overrides": []
  1095. },
  1096. "format": "none",
  1097. "gauge": {
  1098. "maxValue": 5000,
  1099. "minValue": 0,
  1100. "show": true,
  1101. "thresholdLabels": false,
  1102. "thresholdMarkers": true
  1103. },
  1104. "gridPos": {
  1105. "h": 4,
  1106. "w": 9,
  1107. "x": 9,
  1108. "y": 12
  1109. },
  1110. "id": 26,
  1111. "interval": null,
  1112. "links": [],
  1113. "mappingType": 1,
  1114. "mappingTypes": [
  1115. {
  1116. "name": "value to text",
  1117. "value": 1
  1118. },
  1119. {
  1120. "name": "range to text",
  1121. "value": 2
  1122. }
  1123. ],
  1124. "maxDataPoints": 100,
  1125. "nullPointMode": "connected",
  1126. "nullText": null,
  1127. "postfix": "ms",
  1128. "postfixFontSize": "50%",
  1129. "prefix": "",
  1130. "prefixFontSize": "50%",
  1131. "rangeMaps": [
  1132. {
  1133. "from": "null",
  1134. "text": "N/A",
  1135. "to": "null"
  1136. }
  1137. ],
  1138. "sparkline": {
  1139. "fillColor": "rgba(31, 118, 189, 0.18)",
  1140. "full": false,
  1141. "lineColor": "rgb(31, 120, 193)",
  1142. "show": false
  1143. },
  1144. "tableColumn": "",
  1145. "targets": [
  1146. {
  1147. "expr": "sum(rate(http_server_requests_seconds_sum{instance=~'$instance'}[1m]))/sum(rate(http_server_requests_seconds_count{instance=~'$instance'}[1m])) * 1000",
  1148. "format": "time_series",
  1149. "intervalFactor": 1,
  1150. "legendFormat": "",
  1151. "refId": "A"
  1152. }
  1153. ],
  1154. "thresholds": "3000,5000",
  1155. "title": "rt",
  1156. "type": "singlestat",
  1157. "valueFontSize": "80%",
  1158. "valueMaps": [
  1159. {
  1160. "op": "=",
  1161. "text": "N/A",
  1162. "value": "null"
  1163. }
  1164. ],
  1165. "valueName": "current"
  1166. },
  1167. {
  1168. "cacheTimeout": null,
  1169. "colorBackground": false,
  1170. "colorPrefix": false,
  1171. "colorValue": false,
  1172. "colors": [
  1173. "#299c46",
  1174. "rgba(237, 129, 40, 0.89)",
  1175. "#d44a3a"
  1176. ],
  1177. "datasource": "Prometheus",
  1178. "decimals": null,
  1179. "fieldConfig": {
  1180. "defaults": {
  1181. "custom": {}
  1182. },
  1183. "overrides": []
  1184. },
  1185. "format": "none",
  1186. "gauge": {
  1187. "maxValue": 2000,
  1188. "minValue": 0,
  1189. "show": true,
  1190. "thresholdLabels": false,
  1191. "thresholdMarkers": true
  1192. },
  1193. "gridPos": {
  1194. "h": 4,
  1195. "w": 9,
  1196. "x": 0,
  1197. "y": 16
  1198. },
  1199. "id": 25,
  1200. "interval": null,
  1201. "links": [],
  1202. "mappingType": 1,
  1203. "mappingTypes": [
  1204. {
  1205. "name": "value to text",
  1206. "value": 1
  1207. },
  1208. {
  1209. "name": "range to text",
  1210. "value": 2
  1211. }
  1212. ],
  1213. "maxDataPoints": 100,
  1214. "nullPointMode": "connected",
  1215. "nullText": null,
  1216. "postfix": "",
  1217. "postfixFontSize": "50%",
  1218. "prefix": "",
  1219. "prefixFontSize": "50%",
  1220. "rangeMaps": [
  1221. {
  1222. "from": "null",
  1223. "text": "N/A",
  1224. "to": "null"
  1225. }
  1226. ],
  1227. "sparkline": {
  1228. "fillColor": "rgba(31, 118, 189, 0.18)",
  1229. "full": false,
  1230. "lineColor": "rgb(31, 120, 193)",
  1231. "show": false
  1232. },
  1233. "tableColumn": "",
  1234. "targets": [
  1235. {
  1236. "expr": "sum(rate(http_server_requests_seconds_count{instance=~'$instance'}[1m]))",
  1237. "format": "time_series",
  1238. "intervalFactor": 1,
  1239. "legendFormat": "",
  1240. "refId": "A"
  1241. }
  1242. ],
  1243. "thresholds": "1000,2000",
  1244. "title": "qps",
  1245. "type": "singlestat",
  1246. "valueFontSize": "70%",
  1247. "valueMaps": [
  1248. {
  1249. "op": "=",
  1250. "text": "N/A",
  1251. "value": "null"
  1252. }
  1253. ],
  1254. "valueName": "current"
  1255. },
  1256. {
  1257. "cacheTimeout": null,
  1258. "colorBackground": false,
  1259. "colorPrefix": false,
  1260. "colorValue": false,
  1261. "colors": [
  1262. "#299c46",
  1263. "rgba(237, 129, 40, 0.89)",
  1264. "#d44a3a"
  1265. ],
  1266. "datasource": "Prometheus",
  1267. "decimals": null,
  1268. "fieldConfig": {
  1269. "defaults": {
  1270. "custom": {}
  1271. },
  1272. "overrides": []
  1273. },
  1274. "format": "none",
  1275. "gauge": {
  1276. "maxValue": 5000,
  1277. "minValue": 0,
  1278. "show": true,
  1279. "thresholdLabels": false,
  1280. "thresholdMarkers": true
  1281. },
  1282. "gridPos": {
  1283. "h": 4,
  1284. "w": 9,
  1285. "x": 9,
  1286. "y": 16
  1287. },
  1288. "id": 70,
  1289. "interval": null,
  1290. "links": [],
  1291. "mappingType": 1,
  1292. "mappingTypes": [
  1293. {
  1294. "name": "value to text",
  1295. "value": 1
  1296. },
  1297. {
  1298. "name": "range to text",
  1299. "value": 2
  1300. }
  1301. ],
  1302. "maxDataPoints": 100,
  1303. "nullPointMode": "connected",
  1304. "nullText": null,
  1305. "postfix": "ms",
  1306. "postfixFontSize": "50%",
  1307. "prefix": "",
  1308. "prefixFontSize": "50%",
  1309. "rangeMaps": [
  1310. {
  1311. "from": "null",
  1312. "text": "N/A",
  1313. "to": "null"
  1314. }
  1315. ],
  1316. "sparkline": {
  1317. "fillColor": "rgba(31, 118, 189, 0.18)",
  1318. "full": false,
  1319. "lineColor": "rgb(31, 120, 193)",
  1320. "show": false
  1321. },
  1322. "tableColumn": "",
  1323. "targets": [
  1324. {
  1325. "expr": "max(nacos_monitor{name='avgPushCost', instance=~'$instance'})",
  1326. "format": "time_series",
  1327. "intervalFactor": 1,
  1328. "refId": "A"
  1329. }
  1330. ],
  1331. "thresholds": "1000,5000",
  1332. "title": "avgPushCost",
  1333. "type": "singlestat",
  1334. "valueFontSize": "70%",
  1335. "valueMaps": [
  1336. {
  1337. "op": "=",
  1338. "text": "N/A",
  1339. "value": "null"
  1340. }
  1341. ],
  1342. "valueName": "current"
  1343. },
  1344. {
  1345. "collapsed": false,
  1346. "datasource": "Prometheus",
  1347. "gridPos": {
  1348. "h": 1,
  1349. "w": 24,
  1350. "x": 0,
  1351. "y": 20
  1352. },
  1353. "id": 78,
  1354. "panels": [],
  1355. "title": "nacos detail",
  1356. "type": "row"
  1357. },
  1358. {
  1359. "aliasColors": {},
  1360. "bars": false,
  1361. "dashLength": 10,
  1362. "dashes": false,
  1363. "datasource": "Prometheus",
  1364. "fieldConfig": {
  1365. "defaults": {
  1366. "custom": {}
  1367. },
  1368. "overrides": []
  1369. },
  1370. "fill": 1,
  1371. "fillGradient": 0,
  1372. "gridPos": {
  1373. "h": 5,
  1374. "w": 8,
  1375. "x": 0,
  1376. "y": 21
  1377. },
  1378. "hiddenSeries": false,
  1379. "id": 20,
  1380. "legend": {
  1381. "avg": false,
  1382. "current": false,
  1383. "max": false,
  1384. "min": false,
  1385. "show": true,
  1386. "total": false,
  1387. "values": false
  1388. },
  1389. "lines": true,
  1390. "linewidth": 1,
  1391. "links": [],
  1392. "nullPointMode": "null",
  1393. "options": {
  1394. "alertThreshold": true
  1395. },
  1396. "percentage": false,
  1397. "pluginVersion": "7.3.7",
  1398. "pointradius": 5,
  1399. "points": false,
  1400. "renderer": "flot",
  1401. "seriesOverrides": [],
  1402. "spaceLength": 10,
  1403. "stack": false,
  1404. "steppedLine": false,
  1405. "targets": [
  1406. {
  1407. "expr": "sum(rate(http_server_requests_seconds_sum{uri=~'/v1/cs/configs|/nacos/v1/ns', instance=~'$instance'}[1m])/rate(http_server_requests_seconds_count{uri=~'/v1/cs/configs|/nacos/v1/ns/instance|/nacos/v1/ns/health', instance=~'$instance'}[1m])) by (method,uri) * 1000",
  1408. "format": "time_series",
  1409. "intervalFactor": 1,
  1410. "refId": "A"
  1411. },
  1412. {
  1413. "expr": "sum(rate(http_server_requests_seconds_sum{instance=~'$instance'}[1m]))/sum(rate(http_server_requests_seconds_count{instance=~'$instance'}[1m])) * 1000",
  1414. "format": "time_series",
  1415. "hide": false,
  1416. "intervalFactor": 1,
  1417. "legendFormat": "all",
  1418. "refId": "B"
  1419. }
  1420. ],
  1421. "thresholds": [],
  1422. "timeFrom": null,
  1423. "timeRegions": [],
  1424. "timeShift": null,
  1425. "title": "rt",
  1426. "tooltip": {
  1427. "shared": true,
  1428. "sort": 0,
  1429. "value_type": "individual"
  1430. },
  1431. "type": "graph",
  1432. "xaxis": {
  1433. "buckets": null,
  1434. "mode": "time",
  1435. "name": null,
  1436. "show": true,
  1437. "values": []
  1438. },
  1439. "yaxes": [
  1440. {
  1441. "format": "short",
  1442. "label": null,
  1443. "logBase": 1,
  1444. "max": null,
  1445. "min": null,
  1446. "show": true
  1447. },
  1448. {
  1449. "format": "short",
  1450. "label": null,
  1451. "logBase": 1,
  1452. "max": null,
  1453. "min": null,
  1454. "show": true
  1455. }
  1456. ],
  1457. "yaxis": {
  1458. "align": false,
  1459. "alignLevel": null
  1460. }
  1461. },
  1462. {
  1463. "aliasColors": {},
  1464. "bars": false,
  1465. "dashLength": 10,
  1466. "dashes": false,
  1467. "datasource": "Prometheus",
  1468. "fieldConfig": {
  1469. "defaults": {
  1470. "custom": {}
  1471. },
  1472. "overrides": []
  1473. },
  1474. "fill": 1,
  1475. "fillGradient": 0,
  1476. "gridPos": {
  1477. "h": 5,
  1478. "w": 8,
  1479. "x": 8,
  1480. "y": 21
  1481. },
  1482. "hiddenSeries": false,
  1483. "id": 41,
  1484. "legend": {
  1485. "avg": false,
  1486. "current": false,
  1487. "max": false,
  1488. "min": false,
  1489. "show": true,
  1490. "total": false,
  1491. "values": false
  1492. },
  1493. "lines": true,
  1494. "linewidth": 1,
  1495. "links": [],
  1496. "nullPointMode": "null",
  1497. "options": {
  1498. "alertThreshold": true
  1499. },
  1500. "percentage": false,
  1501. "pluginVersion": "7.3.7",
  1502. "pointradius": 5,
  1503. "points": false,
  1504. "renderer": "flot",
  1505. "repeat": "group",
  1506. "repeatDirection": "h",
  1507. "seriesOverrides": [],
  1508. "spaceLength": 10,
  1509. "stack": false,
  1510. "steppedLine": false,
  1511. "targets": [
  1512. {
  1513. "expr": "sum(nacos_monitor{name='longPolling', instance=~'$instance'})",
  1514. "format": "time_series",
  1515. "intervalFactor": 1,
  1516. "legendFormat": "",
  1517. "refId": "A"
  1518. }
  1519. ],
  1520. "thresholds": [],
  1521. "timeFrom": null,
  1522. "timeRegions": [],
  1523. "timeShift": null,
  1524. "title": "long polling",
  1525. "tooltip": {
  1526. "shared": true,
  1527. "sort": 0,
  1528. "value_type": "individual"
  1529. },
  1530. "type": "graph",
  1531. "xaxis": {
  1532. "buckets": null,
  1533. "mode": "time",
  1534. "name": null,
  1535. "show": true,
  1536. "values": []
  1537. },
  1538. "yaxes": [
  1539. {
  1540. "format": "short",
  1541. "label": "",
  1542. "logBase": 1,
  1543. "max": null,
  1544. "min": null,
  1545. "show": true
  1546. },
  1547. {
  1548. "format": "short",
  1549. "label": null,
  1550. "logBase": 1,
  1551. "max": null,
  1552. "min": null,
  1553. "show": true
  1554. }
  1555. ],
  1556. "yaxis": {
  1557. "align": false,
  1558. "alignLevel": null
  1559. }
  1560. },
  1561. {
  1562. "aliasColors": {},
  1563. "bars": false,
  1564. "dashLength": 10,
  1565. "dashes": false,
  1566. "datasource": "Prometheus",
  1567. "fieldConfig": {
  1568. "defaults": {
  1569. "custom": {}
  1570. },
  1571. "overrides": []
  1572. },
  1573. "fill": 1,
  1574. "fillGradient": 0,
  1575. "gridPos": {
  1576. "h": 5,
  1577. "w": 8,
  1578. "x": 16,
  1579. "y": 21
  1580. },
  1581. "hiddenSeries": false,
  1582. "id": 37,
  1583. "legend": {
  1584. "avg": false,
  1585. "current": false,
  1586. "max": false,
  1587. "min": false,
  1588. "show": true,
  1589. "total": false,
  1590. "values": false
  1591. },
  1592. "lines": true,
  1593. "linewidth": 1,
  1594. "links": [],
  1595. "nullPointMode": "null",
  1596. "options": {
  1597. "alertThreshold": true
  1598. },
  1599. "percentage": false,
  1600. "pluginVersion": "7.3.7",
  1601. "pointradius": 5,
  1602. "points": false,
  1603. "renderer": "flot",
  1604. "seriesOverrides": [],
  1605. "spaceLength": 10,
  1606. "stack": false,
  1607. "steppedLine": false,
  1608. "targets": [
  1609. {
  1610. "expr": "max(system_load_average_1m{instance=~'$instance'})",
  1611. "format": "time_series",
  1612. "intervalFactor": 1,
  1613. "refId": "A"
  1614. }
  1615. ],
  1616. "thresholds": [],
  1617. "timeFrom": null,
  1618. "timeRegions": [],
  1619. "timeShift": null,
  1620. "title": "load 1m",
  1621. "tooltip": {
  1622. "shared": true,
  1623. "sort": 0,
  1624. "value_type": "individual"
  1625. },
  1626. "type": "graph",
  1627. "xaxis": {
  1628. "buckets": null,
  1629. "mode": "time",
  1630. "name": null,
  1631. "show": true,
  1632. "values": []
  1633. },
  1634. "yaxes": [
  1635. {
  1636. "format": "short",
  1637. "label": null,
  1638. "logBase": 1,
  1639. "max": null,
  1640. "min": null,
  1641. "show": true
  1642. },
  1643. {
  1644. "format": "short",
  1645. "label": null,
  1646. "logBase": 1,
  1647. "max": null,
  1648. "min": null,
  1649. "show": true
  1650. }
  1651. ],
  1652. "yaxis": {
  1653. "align": false,
  1654. "alignLevel": null
  1655. }
  1656. },
  1657. {
  1658. "aliasColors": {},
  1659. "bars": false,
  1660. "dashLength": 10,
  1661. "dashes": false,
  1662. "datasource": "Prometheus",
  1663. "fieldConfig": {
  1664. "defaults": {
  1665. "custom": {}
  1666. },
  1667. "overrides": []
  1668. },
  1669. "fill": 1,
  1670. "fillGradient": 0,
  1671. "gridPos": {
  1672. "h": 5,
  1673. "w": 8,
  1674. "x": 0,
  1675. "y": 26
  1676. },
  1677. "hiddenSeries": false,
  1678. "id": 18,
  1679. "legend": {
  1680. "avg": false,
  1681. "current": false,
  1682. "max": false,
  1683. "min": false,
  1684. "show": true,
  1685. "total": false,
  1686. "values": false
  1687. },
  1688. "lines": true,
  1689. "linewidth": 1,
  1690. "links": [],
  1691. "nullPointMode": "null",
  1692. "options": {
  1693. "alertThreshold": true
  1694. },
  1695. "percentage": false,
  1696. "pluginVersion": "7.3.7",
  1697. "pointradius": 5,
  1698. "points": false,
  1699. "renderer": "flot",
  1700. "seriesOverrides": [],
  1701. "spaceLength": 10,
  1702. "stack": false,
  1703. "steppedLine": false,
  1704. "targets": [
  1705. {
  1706. "expr": "sum(rate(http_server_requests_seconds_count{uri=~'/v1/cs/configs|/nacos/v1/ns/instance|/nacos/v1/ns/health', instance=~'$instance'}[1m])) by (method,uri)",
  1707. "format": "time_series",
  1708. "intervalFactor": 1,
  1709. "refId": "A"
  1710. },
  1711. {
  1712. "expr": "sum(rate(http_server_requests_seconds_count[1m]))",
  1713. "format": "time_series",
  1714. "intervalFactor": 1,
  1715. "refId": "B"
  1716. }
  1717. ],
  1718. "thresholds": [],
  1719. "timeFrom": null,
  1720. "timeRegions": [],
  1721. "timeShift": null,
  1722. "title": "qps",
  1723. "tooltip": {
  1724. "shared": true,
  1725. "sort": 0,
  1726. "value_type": "individual"
  1727. },
  1728. "type": "graph",
  1729. "xaxis": {
  1730. "buckets": null,
  1731. "mode": "time",
  1732. "name": null,
  1733. "show": true,
  1734. "values": []
  1735. },
  1736. "yaxes": [
  1737. {
  1738. "format": "short",
  1739. "label": null,
  1740. "logBase": 1,
  1741. "max": null,
  1742. "min": null,
  1743. "show": true
  1744. },
  1745. {
  1746. "format": "short",
  1747. "label": null,
  1748. "logBase": 1,
  1749. "max": null,
  1750. "min": null,
  1751. "show": true
  1752. }
  1753. ],
  1754. "yaxis": {
  1755. "align": false,
  1756. "alignLevel": null
  1757. }
  1758. },
  1759. {
  1760. "aliasColors": {},
  1761. "bars": false,
  1762. "dashLength": 10,
  1763. "dashes": false,
  1764. "datasource": "Prometheus",
  1765. "fieldConfig": {
  1766. "defaults": {
  1767. "custom": {}
  1768. },
  1769. "overrides": []
  1770. },
  1771. "fill": 1,
  1772. "fillGradient": 0,
  1773. "gridPos": {
  1774. "h": 5,
  1775. "w": 8,
  1776. "x": 8,
  1777. "y": 26
  1778. },
  1779. "hiddenSeries": false,
  1780. "id": 52,
  1781. "legend": {
  1782. "avg": false,
  1783. "current": false,
  1784. "max": false,
  1785. "min": false,
  1786. "show": true,
  1787. "total": false,
  1788. "values": false
  1789. },
  1790. "lines": true,
  1791. "linewidth": 1,
  1792. "links": [],
  1793. "nullPointMode": "null",
  1794. "options": {
  1795. "alertThreshold": true
  1796. },
  1797. "percentage": false,
  1798. "pluginVersion": "7.3.7",
  1799. "pointradius": 5,
  1800. "points": false,
  1801. "renderer": "flot",
  1802. "seriesOverrides": [],
  1803. "spaceLength": 10,
  1804. "stack": false,
  1805. "steppedLine": false,
  1806. "targets": [
  1807. {
  1808. "expr": "sum(nacos_monitor{name='leaderStatus', instance=~'$instance'})",
  1809. "format": "time_series",
  1810. "intervalFactor": 1,
  1811. "refId": "B"
  1812. }
  1813. ],
  1814. "thresholds": [],
  1815. "timeFrom": null,
  1816. "timeRegions": [],
  1817. "timeShift": null,
  1818. "title": "leaderStatus",
  1819. "tooltip": {
  1820. "shared": true,
  1821. "sort": 0,
  1822. "value_type": "individual"
  1823. },
  1824. "type": "graph",
  1825. "xaxis": {
  1826. "buckets": null,
  1827. "mode": "time",
  1828. "name": null,
  1829. "show": true,
  1830. "values": []
  1831. },
  1832. "yaxes": [
  1833. {
  1834. "format": "short",
  1835. "label": null,
  1836. "logBase": 1,
  1837. "max": null,
  1838. "min": null,
  1839. "show": true
  1840. },
  1841. {
  1842. "format": "short",
  1843. "label": null,
  1844. "logBase": 1,
  1845. "max": null,
  1846. "min": null,
  1847. "show": true
  1848. }
  1849. ],
  1850. "yaxis": {
  1851. "align": false,
  1852. "alignLevel": null
  1853. }
  1854. },
  1855. {
  1856. "aliasColors": {},
  1857. "bars": false,
  1858. "dashLength": 10,
  1859. "dashes": false,
  1860. "datasource": "Prometheus",
  1861. "fieldConfig": {
  1862. "defaults": {
  1863. "custom": {}
  1864. },
  1865. "overrides": []
  1866. },
  1867. "fill": 1,
  1868. "fillGradient": 0,
  1869. "gridPos": {
  1870. "h": 5,
  1871. "w": 8,
  1872. "x": 16,
  1873. "y": 26
  1874. },
  1875. "hiddenSeries": false,
  1876. "id": 50,
  1877. "legend": {
  1878. "avg": false,
  1879. "current": false,
  1880. "max": false,
  1881. "min": false,
  1882. "show": true,
  1883. "total": false,
  1884. "values": false
  1885. },
  1886. "lines": true,
  1887. "linewidth": 1,
  1888. "links": [],
  1889. "nullPointMode": "null",
  1890. "options": {
  1891. "alertThreshold": true
  1892. },
  1893. "percentage": false,
  1894. "pluginVersion": "7.3.7",
  1895. "pointradius": 5,
  1896. "points": false,
  1897. "renderer": "flot",
  1898. "seriesOverrides": [],
  1899. "spaceLength": 10,
  1900. "stack": false,
  1901. "steppedLine": false,
  1902. "targets": [
  1903. {
  1904. "expr": "sum(nacos_monitor{name='avgPushCost', instance=~'$instance'})",
  1905. "format": "time_series",
  1906. "intervalFactor": 1,
  1907. "refId": "A"
  1908. }
  1909. ],
  1910. "thresholds": [],
  1911. "timeFrom": null,
  1912. "timeRegions": [],
  1913. "timeShift": null,
  1914. "title": "avgPushCost",
  1915. "tooltip": {
  1916. "shared": true,
  1917. "sort": 0,
  1918. "value_type": "individual"
  1919. },
  1920. "type": "graph",
  1921. "xaxis": {
  1922. "buckets": null,
  1923. "mode": "time",
  1924. "name": null,
  1925. "show": true,
  1926. "values": []
  1927. },
  1928. "yaxes": [
  1929. {
  1930. "format": "short",
  1931. "label": null,
  1932. "logBase": 1,
  1933. "max": null,
  1934. "min": null,
  1935. "show": true
  1936. },
  1937. {
  1938. "format": "short",
  1939. "label": null,
  1940. "logBase": 1,
  1941. "max": null,
  1942. "min": null,
  1943. "show": true
  1944. }
  1945. ],
  1946. "yaxis": {
  1947. "align": false,
  1948. "alignLevel": null
  1949. }
  1950. },
  1951. {
  1952. "aliasColors": {},
  1953. "bars": false,
  1954. "dashLength": 10,
  1955. "dashes": false,
  1956. "datasource": "Prometheus",
  1957. "fieldConfig": {
  1958. "defaults": {
  1959. "custom": {}
  1960. },
  1961. "overrides": []
  1962. },
  1963. "fill": 1,
  1964. "fillGradient": 0,
  1965. "gridPos": {
  1966. "h": 5,
  1967. "w": 8,
  1968. "x": 0,
  1969. "y": 31
  1970. },
  1971. "hiddenSeries": false,
  1972. "id": 53,
  1973. "legend": {
  1974. "avg": false,
  1975. "current": false,
  1976. "max": false,
  1977. "min": false,
  1978. "show": true,
  1979. "total": false,
  1980. "values": false
  1981. },
  1982. "lines": true,
  1983. "linewidth": 1,
  1984. "links": [],
  1985. "nullPointMode": "null",
  1986. "options": {
  1987. "alertThreshold": true
  1988. },
  1989. "percentage": false,
  1990. "pluginVersion": "7.3.7",
  1991. "pointradius": 5,
  1992. "points": false,
  1993. "renderer": "flot",
  1994. "seriesOverrides": [],
  1995. "spaceLength": 10,
  1996. "stack": false,
  1997. "steppedLine": false,
  1998. "targets": [
  1999. {
  2000. "expr": "max(nacos_monitor{name='maxPushCost', instance=~'$instance'})",
  2001. "format": "time_series",
  2002. "intervalFactor": 1,
  2003. "refId": "A"
  2004. }
  2005. ],
  2006. "thresholds": [],
  2007. "timeFrom": null,
  2008. "timeRegions": [],
  2009. "timeShift": null,
  2010. "title": "maxPushCost",
  2011. "tooltip": {
  2012. "shared": true,
  2013. "sort": 0,
  2014. "value_type": "individual"
  2015. },
  2016. "type": "graph",
  2017. "xaxis": {
  2018. "buckets": null,
  2019. "mode": "time",
  2020. "name": null,
  2021. "show": true,
  2022. "values": []
  2023. },
  2024. "yaxes": [
  2025. {
  2026. "format": "short",
  2027. "label": null,
  2028. "logBase": 1,
  2029. "max": null,
  2030. "min": null,
  2031. "show": true
  2032. },
  2033. {
  2034. "format": "short",
  2035. "label": null,
  2036. "logBase": 1,
  2037. "max": null,
  2038. "min": null,
  2039. "show": true
  2040. }
  2041. ],
  2042. "yaxis": {
  2043. "align": false,
  2044. "alignLevel": null
  2045. }
  2046. },
  2047. {
  2048. "aliasColors": {},
  2049. "bars": false,
  2050. "dashLength": 10,
  2051. "dashes": false,
  2052. "datasource": "Prometheus",
  2053. "fieldConfig": {
  2054. "defaults": {
  2055. "custom": {}
  2056. },
  2057. "overrides": []
  2058. },
  2059. "fill": 1,
  2060. "fillGradient": 0,
  2061. "gridPos": {
  2062. "h": 5,
  2063. "w": 8,
  2064. "x": 8,
  2065. "y": 31
  2066. },
  2067. "hiddenSeries": false,
  2068. "id": 83,
  2069. "legend": {
  2070. "avg": false,
  2071. "current": false,
  2072. "max": false,
  2073. "min": false,
  2074. "show": true,
  2075. "total": false,
  2076. "values": false
  2077. },
  2078. "lines": true,
  2079. "linewidth": 1,
  2080. "links": [],
  2081. "nullPointMode": "null",
  2082. "options": {
  2083. "alertThreshold": true
  2084. },
  2085. "percentage": false,
  2086. "pluginVersion": "7.3.7",
  2087. "pointradius": 5,
  2088. "points": false,
  2089. "renderer": "flot",
  2090. "seriesOverrides": [],
  2091. "spaceLength": 10,
  2092. "stack": false,
  2093. "steppedLine": false,
  2094. "targets": [
  2095. {
  2096. "expr": "sum(nacos_monitor{name='publish', instance=~'$instance'}) by (name)",
  2097. "format": "time_series",
  2098. "intervalFactor": 1,
  2099. "legendFormat": "publish config",
  2100. "refId": "A"
  2101. },
  2102. {
  2103. "expr": "sum(nacos_monitor{name='getConfig', instance=~'$instance'}) by (name)",
  2104. "format": "time_series",
  2105. "intervalFactor": 1,
  2106. "legendFormat": "get config",
  2107. "refId": "B"
  2108. }
  2109. ],
  2110. "thresholds": [],
  2111. "timeFrom": null,
  2112. "timeRegions": [],
  2113. "timeShift": null,
  2114. "title": "config statistics",
  2115. "tooltip": {
  2116. "shared": true,
  2117. "sort": 0,
  2118. "value_type": "individual"
  2119. },
  2120. "type": "graph",
  2121. "xaxis": {
  2122. "buckets": null,
  2123. "mode": "time",
  2124. "name": null,
  2125. "show": true,
  2126. "values": []
  2127. },
  2128. "yaxes": [
  2129. {
  2130. "format": "short",
  2131. "label": null,
  2132. "logBase": 1,
  2133. "max": null,
  2134. "min": null,
  2135. "show": true
  2136. },
  2137. {
  2138. "format": "short",
  2139. "label": null,
  2140. "logBase": 1,
  2141. "max": null,
  2142. "min": null,
  2143. "show": true
  2144. }
  2145. ],
  2146. "yaxis": {
  2147. "align": false,
  2148. "alignLevel": null
  2149. }
  2150. },
  2151. {
  2152. "aliasColors": {},
  2153. "bars": false,
  2154. "dashLength": 10,
  2155. "dashes": false,
  2156. "datasource": "Prometheus",
  2157. "fieldConfig": {
  2158. "defaults": {
  2159. "custom": {}
  2160. },
  2161. "overrides": []
  2162. },
  2163. "fill": 1,
  2164. "fillGradient": 0,
  2165. "gridPos": {
  2166. "h": 5,
  2167. "w": 8,
  2168. "x": 16,
  2169. "y": 31
  2170. },
  2171. "hiddenSeries": false,
  2172. "id": 16,
  2173. "legend": {
  2174. "avg": false,
  2175. "current": false,
  2176. "max": false,
  2177. "min": false,
  2178. "show": true,
  2179. "total": false,
  2180. "values": false
  2181. },
  2182. "lines": true,
  2183. "linewidth": 1,
  2184. "links": [],
  2185. "nullPointMode": "null",
  2186. "options": {
  2187. "alertThreshold": true
  2188. },
  2189. "percentage": false,
  2190. "pluginVersion": "7.3.7",
  2191. "pointradius": 5,
  2192. "points": false,
  2193. "renderer": "flot",
  2194. "seriesOverrides": [],
  2195. "spaceLength": 10,
  2196. "stack": false,
  2197. "steppedLine": false,
  2198. "targets": [
  2199. {
  2200. "expr": "sum(rate(nacos_monitor{name=~'.*HealthCheck', instance=~'$instance'}[1m])) by (name) * 60",
  2201. "format": "time_series",
  2202. "intervalFactor": 1,
  2203. "legendFormat": "",
  2204. "refId": "A"
  2205. }
  2206. ],
  2207. "thresholds": [],
  2208. "timeFrom": null,
  2209. "timeRegions": [],
  2210. "timeShift": null,
  2211. "title": "health check",
  2212. "tooltip": {
  2213. "shared": true,
  2214. "sort": 0,
  2215. "value_type": "individual"
  2216. },
  2217. "type": "graph",
  2218. "xaxis": {
  2219. "buckets": null,
  2220. "mode": "time",
  2221. "name": null,
  2222. "show": true,
  2223. "values": []
  2224. },
  2225. "yaxes": [
  2226. {
  2227. "format": "short",
  2228. "label": null,
  2229. "logBase": 1,
  2230. "max": null,
  2231. "min": null,
  2232. "show": true
  2233. },
  2234. {
  2235. "format": "short",
  2236. "label": null,
  2237. "logBase": 1,
  2238. "max": null,
  2239. "min": null,
  2240. "show": true
  2241. }
  2242. ],
  2243. "yaxis": {
  2244. "align": false,
  2245. "alignLevel": null
  2246. }
  2247. },
  2248. {
  2249. "collapsed": false,
  2250. "datasource": "Prometheus",
  2251. "gridPos": {
  2252. "h": 1,
  2253. "w": 24,
  2254. "x": 0,
  2255. "y": 36
  2256. },
  2257. "id": 74,
  2258. "panels": [],
  2259. "title": "nacos alert",
  2260. "type": "row"
  2261. },
  2262. {
  2263. "alert": {
  2264. "conditions": [
  2265. {
  2266. "evaluator": {
  2267. "params": [
  2268. 50
  2269. ],
  2270. "type": "gt"
  2271. },
  2272. "operator": {
  2273. "type": "and"
  2274. },
  2275. "query": {
  2276. "params": [
  2277. "A",
  2278. "1m",
  2279. "now"
  2280. ]
  2281. },
  2282. "reducer": {
  2283. "params": [],
  2284. "type": "avg"
  2285. },
  2286. "type": "query"
  2287. }
  2288. ],
  2289. "executionErrorState": "keep_state",
  2290. "for": "1m",
  2291. "frequency": "1m",
  2292. "handler": 1,
  2293. "name": "cpu alert",
  2294. "noDataState": "ok",
  2295. "notifications": [
  2296. {
  2297. "id": 1
  2298. }
  2299. ]
  2300. },
  2301. "aliasColors": {},
  2302. "bars": false,
  2303. "dashLength": 10,
  2304. "dashes": false,
  2305. "datasource": "Prometheus",
  2306. "fieldConfig": {
  2307. "defaults": {
  2308. "custom": {}
  2309. },
  2310. "overrides": []
  2311. },
  2312. "fill": 1,
  2313. "fillGradient": 0,
  2314. "gridPos": {
  2315. "h": 5,
  2316. "w": 8,
  2317. "x": 0,
  2318. "y": 37
  2319. },
  2320. "hiddenSeries": false,
  2321. "id": 45,
  2322. "legend": {
  2323. "avg": false,
  2324. "current": false,
  2325. "max": false,
  2326. "min": false,
  2327. "show": true,
  2328. "total": false,
  2329. "values": false
  2330. },
  2331. "lines": true,
  2332. "linewidth": 1,
  2333. "links": [],
  2334. "nullPointMode": "null",
  2335. "options": {
  2336. "alertThreshold": true
  2337. },
  2338. "percentage": false,
  2339. "pluginVersion": "7.3.7",
  2340. "pointradius": 5,
  2341. "points": false,
  2342. "renderer": "flot",
  2343. "seriesOverrides": [],
  2344. "spaceLength": 10,
  2345. "stack": false,
  2346. "steppedLine": false,
  2347. "targets": [
  2348. {
  2349. "expr": "max(system_cpu_usage) * 100",
  2350. "format": "time_series",
  2351. "intervalFactor": 1,
  2352. "refId": "A"
  2353. }
  2354. ],
  2355. "thresholds": [
  2356. {
  2357. "colorMode": "critical",
  2358. "fill": true,
  2359. "line": true,
  2360. "op": "gt",
  2361. "value": 50
  2362. }
  2363. ],
  2364. "timeFrom": null,
  2365. "timeRegions": [],
  2366. "timeShift": null,
  2367. "title": "cpu alert",
  2368. "tooltip": {
  2369. "shared": true,
  2370. "sort": 0,
  2371. "value_type": "individual"
  2372. },
  2373. "type": "graph",
  2374. "xaxis": {
  2375. "buckets": null,
  2376. "mode": "time",
  2377. "name": null,
  2378. "show": true,
  2379. "values": []
  2380. },
  2381. "yaxes": [
  2382. {
  2383. "format": "short",
  2384. "label": null,
  2385. "logBase": 1,
  2386. "max": null,
  2387. "min": null,
  2388. "show": true
  2389. },
  2390. {
  2391. "format": "short",
  2392. "label": null,
  2393. "logBase": 1,
  2394. "max": null,
  2395. "min": null,
  2396. "show": true
  2397. }
  2398. ],
  2399. "yaxis": {
  2400. "align": false,
  2401. "alignLevel": null
  2402. }
  2403. },
  2404. {
  2405. "alert": {
  2406. "conditions": [
  2407. {
  2408. "evaluator": {
  2409. "params": [
  2410. 15
  2411. ],
  2412. "type": "gt"
  2413. },
  2414. "operator": {
  2415. "type": "and"
  2416. },
  2417. "query": {
  2418. "params": [
  2419. "A",
  2420. "1m",
  2421. "now"
  2422. ]
  2423. },
  2424. "reducer": {
  2425. "params": [],
  2426. "type": "avg"
  2427. },
  2428. "type": "query"
  2429. }
  2430. ],
  2431. "executionErrorState": "keep_state",
  2432. "frequency": "60s",
  2433. "handler": 1,
  2434. "name": "load 1m alert",
  2435. "noDataState": "ok",
  2436. "notifications": []
  2437. },
  2438. "aliasColors": {},
  2439. "bars": false,
  2440. "dashLength": 10,
  2441. "dashes": false,
  2442. "datasource": "Prometheus",
  2443. "fieldConfig": {
  2444. "defaults": {
  2445. "custom": {}
  2446. },
  2447. "overrides": []
  2448. },
  2449. "fill": 1,
  2450. "fillGradient": 0,
  2451. "gridPos": {
  2452. "h": 5,
  2453. "w": 8,
  2454. "x": 8,
  2455. "y": 37
  2456. },
  2457. "hiddenSeries": false,
  2458. "id": 86,
  2459. "legend": {
  2460. "avg": false,
  2461. "current": false,
  2462. "max": false,
  2463. "min": false,
  2464. "show": true,
  2465. "total": false,
  2466. "values": false
  2467. },
  2468. "lines": true,
  2469. "linewidth": 1,
  2470. "links": [],
  2471. "nullPointMode": "null",
  2472. "options": {
  2473. "alertThreshold": true
  2474. },
  2475. "percentage": false,
  2476. "pluginVersion": "7.3.7",
  2477. "pointradius": 5,
  2478. "points": false,
  2479. "renderer": "flot",
  2480. "seriesOverrides": [],
  2481. "spaceLength": 10,
  2482. "stack": false,
  2483. "steppedLine": false,
  2484. "targets": [
  2485. {
  2486. "expr": "max(system_load_average_1m)",
  2487. "format": "time_series",
  2488. "intervalFactor": 1,
  2489. "refId": "A"
  2490. }
  2491. ],
  2492. "thresholds": [
  2493. {
  2494. "colorMode": "critical",
  2495. "fill": true,
  2496. "line": true,
  2497. "op": "gt",
  2498. "value": 15
  2499. }
  2500. ],
  2501. "timeFrom": null,
  2502. "timeRegions": [],
  2503. "timeShift": null,
  2504. "title": "load alert",
  2505. "tooltip": {
  2506. "shared": true,
  2507. "sort": 0,
  2508. "value_type": "individual"
  2509. },
  2510. "type": "graph",
  2511. "xaxis": {
  2512. "buckets": null,
  2513. "mode": "time",
  2514. "name": null,
  2515. "show": true,
  2516. "values": []
  2517. },
  2518. "yaxes": [
  2519. {
  2520. "format": "short",
  2521. "label": null,
  2522. "logBase": 1,
  2523. "max": null,
  2524. "min": null,
  2525. "show": true
  2526. },
  2527. {
  2528. "format": "short",
  2529. "label": null,
  2530. "logBase": 1,
  2531. "max": null,
  2532. "min": null,
  2533. "show": true
  2534. }
  2535. ],
  2536. "yaxis": {
  2537. "align": false,
  2538. "alignLevel": null
  2539. }
  2540. },
  2541. {
  2542. "alert": {
  2543. "conditions": [
  2544. {
  2545. "evaluator": {
  2546. "params": [
  2547. 60
  2548. ],
  2549. "type": "gt"
  2550. },
  2551. "operator": {
  2552. "type": "and"
  2553. },
  2554. "query": {
  2555. "params": [
  2556. "A",
  2557. "5m",
  2558. "now"
  2559. ]
  2560. },
  2561. "reducer": {
  2562. "params": [],
  2563. "type": "avg"
  2564. },
  2565. "type": "query"
  2566. }
  2567. ],
  2568. "executionErrorState": "keep_state",
  2569. "frequency": "60s",
  2570. "handler": 1,
  2571. "name": "memory alert",
  2572. "noDataState": "ok",
  2573. "notifications": []
  2574. },
  2575. "aliasColors": {},
  2576. "bars": false,
  2577. "dashLength": 10,
  2578. "dashes": false,
  2579. "datasource": "Prometheus",
  2580. "fieldConfig": {
  2581. "defaults": {
  2582. "custom": {}
  2583. },
  2584. "overrides": []
  2585. },
  2586. "fill": 1,
  2587. "fillGradient": 0,
  2588. "gridPos": {
  2589. "h": 5,
  2590. "w": 8,
  2591. "x": 16,
  2592. "y": 37
  2593. },
  2594. "hiddenSeries": false,
  2595. "id": 46,
  2596. "legend": {
  2597. "avg": false,
  2598. "current": false,
  2599. "max": false,
  2600. "min": false,
  2601. "show": true,
  2602. "total": false,
  2603. "values": false
  2604. },
  2605. "lines": true,
  2606. "linewidth": 1,
  2607. "links": [],
  2608. "nullPointMode": "null",
  2609. "options": {
  2610. "alertThreshold": true
  2611. },
  2612. "percentage": false,
  2613. "pluginVersion": "7.3.7",
  2614. "pointradius": 5,
  2615. "points": false,
  2616. "renderer": "flot",
  2617. "seriesOverrides": [],
  2618. "spaceLength": 10,
  2619. "stack": false,
  2620. "steppedLine": false,
  2621. "targets": [
  2622. {
  2623. "expr": "sum(jvm_memory_used_bytes{area=\"heap\"})/sum(jvm_memory_max_bytes{area=\"heap\"}) * 100",
  2624. "format": "time_series",
  2625. "intervalFactor": 1,
  2626. "refId": "A"
  2627. }
  2628. ],
  2629. "thresholds": [
  2630. {
  2631. "colorMode": "critical",
  2632. "fill": true,
  2633. "line": true,
  2634. "op": "gt",
  2635. "value": 60
  2636. }
  2637. ],
  2638. "timeFrom": null,
  2639. "timeRegions": [],
  2640. "timeShift": null,
  2641. "title": "memory alert",
  2642. "tooltip": {
  2643. "shared": true,
  2644. "sort": 0,
  2645. "value_type": "individual"
  2646. },
  2647. "type": "graph",
  2648. "xaxis": {
  2649. "buckets": null,
  2650. "mode": "time",
  2651. "name": null,
  2652. "show": true,
  2653. "values": []
  2654. },
  2655. "yaxes": [
  2656. {
  2657. "format": "short",
  2658. "label": null,
  2659. "logBase": 1,
  2660. "max": null,
  2661. "min": null,
  2662. "show": true
  2663. },
  2664. {
  2665. "format": "short",
  2666. "label": null,
  2667. "logBase": 1,
  2668. "max": null,
  2669. "min": null,
  2670. "show": true
  2671. }
  2672. ],
  2673. "yaxis": {
  2674. "align": false,
  2675. "alignLevel": null
  2676. }
  2677. },
  2678. {
  2679. "alert": {
  2680. "conditions": [
  2681. {
  2682. "evaluator": {
  2683. "params": [
  2684. 500
  2685. ],
  2686. "type": "gt"
  2687. },
  2688. "operator": {
  2689. "type": "and"
  2690. },
  2691. "query": {
  2692. "params": [
  2693. "A",
  2694. "1m",
  2695. "now"
  2696. ]
  2697. },
  2698. "reducer": {
  2699. "params": [],
  2700. "type": "avg"
  2701. },
  2702. "type": "query"
  2703. }
  2704. ],
  2705. "executionErrorState": "keep_state",
  2706. "frequency": "60s",
  2707. "handler": 1,
  2708. "name": "threads alert",
  2709. "noDataState": "ok",
  2710. "notifications": []
  2711. },
  2712. "aliasColors": {},
  2713. "bars": false,
  2714. "dashLength": 10,
  2715. "dashes": false,
  2716. "datasource": "Prometheus",
  2717. "fieldConfig": {
  2718. "defaults": {
  2719. "custom": {}
  2720. },
  2721. "overrides": []
  2722. },
  2723. "fill": 1,
  2724. "fillGradient": 0,
  2725. "gridPos": {
  2726. "h": 5,
  2727. "w": 8,
  2728. "x": 0,
  2729. "y": 42
  2730. },
  2731. "hiddenSeries": false,
  2732. "id": 39,
  2733. "legend": {
  2734. "avg": false,
  2735. "current": false,
  2736. "max": false,
  2737. "min": false,
  2738. "show": true,
  2739. "total": false,
  2740. "values": false
  2741. },
  2742. "lines": true,
  2743. "linewidth": 1,
  2744. "links": [],
  2745. "nullPointMode": "null",
  2746. "options": {
  2747. "alertThreshold": true
  2748. },
  2749. "percentage": false,
  2750. "pluginVersion": "7.3.7",
  2751. "pointradius": 5,
  2752. "points": false,
  2753. "renderer": "flot",
  2754. "seriesOverrides": [],
  2755. "spaceLength": 10,
  2756. "stack": false,
  2757. "steppedLine": false,
  2758. "targets": [
  2759. {
  2760. "expr": "max(jvm_threads_daemon_threads)",
  2761. "format": "time_series",
  2762. "intervalFactor": 1,
  2763. "refId": "A"
  2764. }
  2765. ],
  2766. "thresholds": [
  2767. {
  2768. "colorMode": "critical",
  2769. "fill": true,
  2770. "line": true,
  2771. "op": "gt",
  2772. "value": 500
  2773. }
  2774. ],
  2775. "timeFrom": null,
  2776. "timeRegions": [],
  2777. "timeShift": null,
  2778. "title": "threads alert",
  2779. "tooltip": {
  2780. "shared": true,
  2781. "sort": 0,
  2782. "value_type": "individual"
  2783. },
  2784. "type": "graph",
  2785. "xaxis": {
  2786. "buckets": null,
  2787. "mode": "time",
  2788. "name": null,
  2789. "show": true,
  2790. "values": []
  2791. },
  2792. "yaxes": [
  2793. {
  2794. "format": "short",
  2795. "label": null,
  2796. "logBase": 1,
  2797. "max": null,
  2798. "min": null,
  2799. "show": true
  2800. },
  2801. {
  2802. "format": "short",
  2803. "label": null,
  2804. "logBase": 1,
  2805. "max": null,
  2806. "min": null,
  2807. "show": true
  2808. }
  2809. ],
  2810. "yaxis": {
  2811. "align": false,
  2812. "alignLevel": null
  2813. }
  2814. },
  2815. {
  2816. "alert": {
  2817. "conditions": [
  2818. {
  2819. "evaluator": {
  2820. "params": [
  2821. 5
  2822. ],
  2823. "type": "gt"
  2824. },
  2825. "operator": {
  2826. "type": "and"
  2827. },
  2828. "query": {
  2829. "params": [
  2830. "A",
  2831. "1m",
  2832. "now"
  2833. ]
  2834. },
  2835. "reducer": {
  2836. "params": [],
  2837. "type": "avg"
  2838. },
  2839. "type": "query"
  2840. }
  2841. ],
  2842. "executionErrorState": "keep_state",
  2843. "for": "1m",
  2844. "frequency": "1m",
  2845. "handler": 1,
  2846. "message": "too many full gc",
  2847. "name": "gc alert",
  2848. "noDataState": "ok",
  2849. "notifications": [
  2850. {
  2851. "id": 1
  2852. }
  2853. ]
  2854. },
  2855. "aliasColors": {},
  2856. "bars": false,
  2857. "dashLength": 10,
  2858. "dashes": false,
  2859. "datasource": "Prometheus",
  2860. "fieldConfig": {
  2861. "defaults": {
  2862. "custom": {}
  2863. },
  2864. "overrides": []
  2865. },
  2866. "fill": 1,
  2867. "fillGradient": 0,
  2868. "gridPos": {
  2869. "h": 5,
  2870. "w": 8,
  2871. "x": 8,
  2872. "y": 42
  2873. },
  2874. "hiddenSeries": false,
  2875. "id": 38,
  2876. "legend": {
  2877. "avg": false,
  2878. "current": false,
  2879. "max": false,
  2880. "min": false,
  2881. "show": true,
  2882. "total": false,
  2883. "values": false
  2884. },
  2885. "lines": true,
  2886. "linewidth": 1,
  2887. "links": [],
  2888. "nullPointMode": "null",
  2889. "options": {
  2890. "alertThreshold": true
  2891. },
  2892. "percentage": false,
  2893. "pluginVersion": "7.3.7",
  2894. "pointradius": 5,
  2895. "points": false,
  2896. "renderer": "flot",
  2897. "seriesOverrides": [],
  2898. "spaceLength": 10,
  2899. "stack": false,
  2900. "steppedLine": false,
  2901. "targets": [
  2902. {
  2903. "expr": "max(rate(jvm_gc_pause_seconds_count{action=\"end of major GC\"}[5m])) * 300",
  2904. "format": "time_series",
  2905. "intervalFactor": 1,
  2906. "refId": "A"
  2907. }
  2908. ],
  2909. "thresholds": [
  2910. {
  2911. "colorMode": "critical",
  2912. "fill": true,
  2913. "line": true,
  2914. "op": "gt",
  2915. "value": 5
  2916. }
  2917. ],
  2918. "timeFrom": null,
  2919. "timeRegions": [],
  2920. "timeShift": null,
  2921. "title": "gc alert",
  2922. "tooltip": {
  2923. "shared": true,
  2924. "sort": 0,
  2925. "value_type": "individual"
  2926. },
  2927. "type": "graph",
  2928. "xaxis": {
  2929. "buckets": null,
  2930. "mode": "time",
  2931. "name": null,
  2932. "show": true,
  2933. "values": []
  2934. },
  2935. "yaxes": [
  2936. {
  2937. "format": "short",
  2938. "label": null,
  2939. "logBase": 1,
  2940. "max": null,
  2941. "min": null,
  2942. "show": true
  2943. },
  2944. {
  2945. "format": "short",
  2946. "label": null,
  2947. "logBase": 1,
  2948. "max": null,
  2949. "min": null,
  2950. "show": true
  2951. }
  2952. ],
  2953. "yaxis": {
  2954. "align": false,
  2955. "alignLevel": null
  2956. }
  2957. },
  2958. {
  2959. "alert": {
  2960. "conditions": [
  2961. {
  2962. "evaluator": {
  2963. "params": [
  2964. 10
  2965. ],
  2966. "type": "gt"
  2967. },
  2968. "operator": {
  2969. "type": "and"
  2970. },
  2971. "query": {
  2972. "params": [
  2973. "A",
  2974. "1m",
  2975. "now"
  2976. ]
  2977. },
  2978. "reducer": {
  2979. "params": [],
  2980. "type": "avg"
  2981. },
  2982. "type": "query"
  2983. }
  2984. ],
  2985. "executionErrorState": "keep_state",
  2986. "frequency": "60s",
  2987. "handler": 1,
  2988. "name": "notify task alert",
  2989. "noDataState": "ok",
  2990. "notifications": []
  2991. },
  2992. "aliasColors": {},
  2993. "bars": false,
  2994. "dashLength": 10,
  2995. "dashes": false,
  2996. "datasource": "Prometheus",
  2997. "fieldConfig": {
  2998. "defaults": {
  2999. "custom": {}
  3000. },
  3001. "overrides": []
  3002. },
  3003. "fill": 1,
  3004. "fillGradient": 0,
  3005. "gridPos": {
  3006. "h": 5,
  3007. "w": 8,
  3008. "x": 16,
  3009. "y": 42
  3010. },
  3011. "hiddenSeries": false,
  3012. "id": 49,
  3013. "legend": {
  3014. "avg": false,
  3015. "current": false,
  3016. "max": false,
  3017. "min": false,
  3018. "show": true,
  3019. "total": false,
  3020. "values": false
  3021. },
  3022. "lines": true,
  3023. "linewidth": 1,
  3024. "links": [],
  3025. "nullPointMode": "null",
  3026. "options": {
  3027. "alertThreshold": true
  3028. },
  3029. "percentage": false,
  3030. "pluginVersion": "7.3.7",
  3031. "pointradius": 5,
  3032. "points": false,
  3033. "renderer": "flot",
  3034. "seriesOverrides": [],
  3035. "spaceLength": 10,
  3036. "stack": false,
  3037. "steppedLine": false,
  3038. "targets": [
  3039. {
  3040. "expr": "sum(nacos_monitor{name='notifyTask'})",
  3041. "format": "time_series",
  3042. "intervalFactor": 1,
  3043. "refId": "A"
  3044. }
  3045. ],
  3046. "thresholds": [
  3047. {
  3048. "colorMode": "critical",
  3049. "fill": true,
  3050. "line": true,
  3051. "op": "gt",
  3052. "value": 10
  3053. }
  3054. ],
  3055. "timeFrom": null,
  3056. "timeRegions": [],
  3057. "timeShift": null,
  3058. "title": "notify task alert",
  3059. "tooltip": {
  3060. "shared": true,
  3061. "sort": 0,
  3062. "value_type": "individual"
  3063. },
  3064. "type": "graph",
  3065. "xaxis": {
  3066. "buckets": null,
  3067. "mode": "time",
  3068. "name": null,
  3069. "show": true,
  3070. "values": []
  3071. },
  3072. "yaxes": [
  3073. {
  3074. "format": "short",
  3075. "label": null,
  3076. "logBase": 1,
  3077. "max": null,
  3078. "min": null,
  3079. "show": true
  3080. },
  3081. {
  3082. "format": "short",
  3083. "label": null,
  3084. "logBase": 1,
  3085. "max": null,
  3086. "min": null,
  3087. "show": true
  3088. }
  3089. ],
  3090. "yaxis": {
  3091. "align": false,
  3092. "alignLevel": null
  3093. }
  3094. },
  3095. {
  3096. "alert": {
  3097. "conditions": [
  3098. {
  3099. "evaluator": {
  3100. "params": [
  3101. 5000
  3102. ],
  3103. "type": "gt"
  3104. },
  3105. "operator": {
  3106. "type": "and"
  3107. },
  3108. "query": {
  3109. "params": [
  3110. "B",
  3111. "1m",
  3112. "now"
  3113. ]
  3114. },
  3115. "reducer": {
  3116. "params": [],
  3117. "type": "avg"
  3118. },
  3119. "type": "query"
  3120. }
  3121. ],
  3122. "executionErrorState": "keep_state",
  3123. "frequency": "60s",
  3124. "handler": 1,
  3125. "name": "rt alert",
  3126. "noDataState": "ok",
  3127. "notifications": []
  3128. },
  3129. "aliasColors": {},
  3130. "bars": false,
  3131. "dashLength": 10,
  3132. "dashes": false,
  3133. "datasource": "Prometheus",
  3134. "fieldConfig": {
  3135. "defaults": {
  3136. "custom": {}
  3137. },
  3138. "overrides": []
  3139. },
  3140. "fill": 1,
  3141. "fillGradient": 0,
  3142. "gridPos": {
  3143. "h": 5,
  3144. "w": 8,
  3145. "x": 0,
  3146. "y": 47
  3147. },
  3148. "hiddenSeries": false,
  3149. "id": 85,
  3150. "legend": {
  3151. "avg": false,
  3152. "current": false,
  3153. "max": false,
  3154. "min": false,
  3155. "show": true,
  3156. "total": false,
  3157. "values": false
  3158. },
  3159. "lines": true,
  3160. "linewidth": 1,
  3161. "links": [],
  3162. "nullPointMode": "null",
  3163. "options": {
  3164. "alertThreshold": true
  3165. },
  3166. "percentage": false,
  3167. "pluginVersion": "7.3.7",
  3168. "pointradius": 5,
  3169. "points": false,
  3170. "renderer": "flot",
  3171. "seriesOverrides": [],
  3172. "spaceLength": 10,
  3173. "stack": false,
  3174. "steppedLine": false,
  3175. "targets": [
  3176. {
  3177. "expr": "sum(rate(http_server_requests_seconds_sum[1m]))/sum(rate(http_server_requests_seconds_count[1m])) * 1000",
  3178. "format": "time_series",
  3179. "hide": false,
  3180. "intervalFactor": 1,
  3181. "refId": "B"
  3182. }
  3183. ],
  3184. "thresholds": [
  3185. {
  3186. "colorMode": "critical",
  3187. "fill": true,
  3188. "line": true,
  3189. "op": "gt",
  3190. "value": 5000
  3191. }
  3192. ],
  3193. "timeFrom": null,
  3194. "timeRegions": [],
  3195. "timeShift": null,
  3196. "title": "rt alert",
  3197. "tooltip": {
  3198. "shared": true,
  3199. "sort": 0,
  3200. "value_type": "individual"
  3201. },
  3202. "type": "graph",
  3203. "xaxis": {
  3204. "buckets": null,
  3205. "mode": "time",
  3206. "name": null,
  3207. "show": true,
  3208. "values": []
  3209. },
  3210. "yaxes": [
  3211. {
  3212. "format": "short",
  3213. "label": null,
  3214. "logBase": 1,
  3215. "max": null,
  3216. "min": null,
  3217. "show": true
  3218. },
  3219. {
  3220. "format": "short",
  3221. "label": null,
  3222. "logBase": 1,
  3223. "max": null,
  3224. "min": null,
  3225. "show": true
  3226. }
  3227. ],
  3228. "yaxis": {
  3229. "align": false,
  3230. "alignLevel": null
  3231. }
  3232. },
  3233. {
  3234. "alert": {
  3235. "conditions": [
  3236. {
  3237. "evaluator": {
  3238. "params": [
  3239. 5000
  3240. ],
  3241. "type": "gt"
  3242. },
  3243. "operator": {
  3244. "type": "and"
  3245. },
  3246. "query": {
  3247. "params": [
  3248. "A",
  3249. "1m",
  3250. "now"
  3251. ]
  3252. },
  3253. "reducer": {
  3254. "params": [],
  3255. "type": "avg"
  3256. },
  3257. "type": "query"
  3258. }
  3259. ],
  3260. "executionErrorState": "keep_state",
  3261. "frequency": "60s",
  3262. "handler": 1,
  3263. "name": "long polling alert",
  3264. "noDataState": "ok",
  3265. "notifications": []
  3266. },
  3267. "aliasColors": {},
  3268. "bars": false,
  3269. "dashLength": 10,
  3270. "dashes": false,
  3271. "datasource": "Prometheus",
  3272. "fieldConfig": {
  3273. "defaults": {
  3274. "custom": {}
  3275. },
  3276. "overrides": []
  3277. },
  3278. "fill": 1,
  3279. "fillGradient": 0,
  3280. "gridPos": {
  3281. "h": 5,
  3282. "w": 8,
  3283. "x": 8,
  3284. "y": 47
  3285. },
  3286. "hiddenSeries": false,
  3287. "id": 84,
  3288. "legend": {
  3289. "avg": false,
  3290. "current": false,
  3291. "max": false,
  3292. "min": false,
  3293. "show": true,
  3294. "total": false,
  3295. "values": false
  3296. },
  3297. "lines": true,
  3298. "linewidth": 1,
  3299. "links": [],
  3300. "nullPointMode": "null",
  3301. "options": {
  3302. "alertThreshold": true
  3303. },
  3304. "percentage": false,
  3305. "pluginVersion": "7.3.7",
  3306. "pointradius": 5,
  3307. "points": false,
  3308. "renderer": "flot",
  3309. "repeatDirection": "h",
  3310. "seriesOverrides": [],
  3311. "spaceLength": 10,
  3312. "stack": false,
  3313. "steppedLine": false,
  3314. "targets": [
  3315. {
  3316. "expr": "max(nacos_monitor{name='longPolling'})",
  3317. "format": "time_series",
  3318. "intervalFactor": 1,
  3319. "legendFormat": "",
  3320. "refId": "A"
  3321. }
  3322. ],
  3323. "thresholds": [
  3324. {
  3325. "colorMode": "critical",
  3326. "fill": true,
  3327. "line": true,
  3328. "op": "gt",
  3329. "value": 5000
  3330. }
  3331. ],
  3332. "timeFrom": null,
  3333. "timeRegions": [],
  3334. "timeShift": null,
  3335. "title": "long polling alert",
  3336. "tooltip": {
  3337. "shared": true,
  3338. "sort": 0,
  3339. "value_type": "individual"
  3340. },
  3341. "type": "graph",
  3342. "xaxis": {
  3343. "buckets": null,
  3344. "mode": "time",
  3345. "name": null,
  3346. "show": true,
  3347. "values": []
  3348. },
  3349. "yaxes": [
  3350. {
  3351. "format": "short",
  3352. "label": "",
  3353. "logBase": 1,
  3354. "max": null,
  3355. "min": null,
  3356. "show": true
  3357. },
  3358. {
  3359. "format": "short",
  3360. "label": null,
  3361. "logBase": 1,
  3362. "max": null,
  3363. "min": null,
  3364. "show": true
  3365. }
  3366. ],
  3367. "yaxis": {
  3368. "align": false,
  3369. "alignLevel": null
  3370. }
  3371. },
  3372. {
  3373. "alert": {
  3374. "conditions": [
  3375. {
  3376. "evaluator": {
  3377. "params": [
  3378. 1
  3379. ],
  3380. "type": "gt"
  3381. },
  3382. "operator": {
  3383. "type": "and"
  3384. },
  3385. "query": {
  3386. "params": [
  3387. "A",
  3388. "1m",
  3389. "now"
  3390. ]
  3391. },
  3392. "reducer": {
  3393. "params": [],
  3394. "type": "avg"
  3395. },
  3396. "type": "query"
  3397. }
  3398. ],
  3399. "executionErrorState": "keep_state",
  3400. "frequency": "60s",
  3401. "handler": 1,
  3402. "name": "config unhealth exception alert",
  3403. "noDataState": "ok",
  3404. "notifications": []
  3405. },
  3406. "aliasColors": {},
  3407. "bars": false,
  3408. "dashLength": 10,
  3409. "dashes": false,
  3410. "datasource": "Prometheus",
  3411. "fieldConfig": {
  3412. "defaults": {
  3413. "custom": {}
  3414. },
  3415. "overrides": []
  3416. },
  3417. "fill": 1,
  3418. "fillGradient": 0,
  3419. "gridPos": {
  3420. "h": 5,
  3421. "w": 8,
  3422. "x": 16,
  3423. "y": 47
  3424. },
  3425. "hiddenSeries": false,
  3426. "id": 56,
  3427. "legend": {
  3428. "avg": false,
  3429. "current": false,
  3430. "max": false,
  3431. "min": false,
  3432. "show": true,
  3433. "total": false,
  3434. "values": false
  3435. },
  3436. "lines": true,
  3437. "linewidth": 1,
  3438. "links": [],
  3439. "nullPointMode": "null",
  3440. "options": {
  3441. "alertThreshold": true
  3442. },
  3443. "percentage": false,
  3444. "pluginVersion": "7.3.7",
  3445. "pointradius": 5,
  3446. "points": false,
  3447. "renderer": "flot",
  3448. "seriesOverrides": [],
  3449. "spaceLength": 10,
  3450. "stack": false,
  3451. "steppedLine": false,
  3452. "targets": [
  3453. {
  3454. "expr": "sum(rate(nacos_exception_total{name='unhealth'}[1m])) * 60",
  3455. "format": "time_series",
  3456. "intervalFactor": 1,
  3457. "refId": "A"
  3458. }
  3459. ],
  3460. "thresholds": [
  3461. {
  3462. "colorMode": "critical",
  3463. "fill": true,
  3464. "line": true,
  3465. "op": "gt",
  3466. "value": 1
  3467. }
  3468. ],
  3469. "timeFrom": null,
  3470. "timeRegions": [],
  3471. "timeShift": null,
  3472. "title": "config unhealth exception alert",
  3473. "tooltip": {
  3474. "shared": true,
  3475. "sort": 0,
  3476. "value_type": "individual"
  3477. },
  3478. "type": "graph",
  3479. "xaxis": {
  3480. "buckets": null,
  3481. "mode": "time",
  3482. "name": null,
  3483. "show": true,
  3484. "values": []
  3485. },
  3486. "yaxes": [
  3487. {
  3488. "format": "short",
  3489. "label": null,
  3490. "logBase": 1,
  3491. "max": null,
  3492. "min": null,
  3493. "show": true
  3494. },
  3495. {
  3496. "format": "short",
  3497. "label": null,
  3498. "logBase": 1,
  3499. "max": null,
  3500. "min": null,
  3501. "show": true
  3502. }
  3503. ],
  3504. "yaxis": {
  3505. "align": false,
  3506. "alignLevel": null
  3507. }
  3508. },
  3509. {
  3510. "alert": {
  3511. "conditions": [
  3512. {
  3513. "evaluator": {
  3514. "params": [
  3515. 1
  3516. ],
  3517. "type": "gt"
  3518. },
  3519. "operator": {
  3520. "type": "and"
  3521. },
  3522. "query": {
  3523. "params": [
  3524. "A",
  3525. "1m",
  3526. "now"
  3527. ]
  3528. },
  3529. "reducer": {
  3530. "params": [],
  3531. "type": "avg"
  3532. },
  3533. "type": "query"
  3534. }
  3535. ],
  3536. "executionErrorState": "keep_state",
  3537. "frequency": "60s",
  3538. "handler": 1,
  3539. "name": "db exception alert",
  3540. "noDataState": "ok",
  3541. "notifications": []
  3542. },
  3543. "aliasColors": {},
  3544. "bars": false,
  3545. "dashLength": 10,
  3546. "dashes": false,
  3547. "datasource": "Prometheus",
  3548. "fieldConfig": {
  3549. "defaults": {
  3550. "custom": {}
  3551. },
  3552. "overrides": []
  3553. },
  3554. "fill": 1,
  3555. "fillGradient": 0,
  3556. "gridPos": {
  3557. "h": 5,
  3558. "w": 8,
  3559. "x": 0,
  3560. "y": 52
  3561. },
  3562. "hiddenSeries": false,
  3563. "id": 54,
  3564. "legend": {
  3565. "avg": false,
  3566. "current": false,
  3567. "max": false,
  3568. "min": false,
  3569. "show": true,
  3570. "total": false,
  3571. "values": false
  3572. },
  3573. "lines": true,
  3574. "linewidth": 1,
  3575. "links": [],
  3576. "nullPointMode": "null",
  3577. "options": {
  3578. "alertThreshold": true
  3579. },
  3580. "percentage": false,
  3581. "pluginVersion": "7.3.7",
  3582. "pointradius": 5,
  3583. "points": false,
  3584. "renderer": "flot",
  3585. "seriesOverrides": [],
  3586. "spaceLength": 10,
  3587. "stack": false,
  3588. "steppedLine": false,
  3589. "targets": [
  3590. {
  3591. "expr": "sum(rate(nacos_exception_total{name='db'}[1m])) * 60",
  3592. "format": "time_series",
  3593. "intervalFactor": 1,
  3594. "refId": "A"
  3595. }
  3596. ],
  3597. "thresholds": [
  3598. {
  3599. "colorMode": "critical",
  3600. "fill": true,
  3601. "line": true,
  3602. "op": "gt",
  3603. "value": 1
  3604. }
  3605. ],
  3606. "timeFrom": null,
  3607. "timeRegions": [],
  3608. "timeShift": null,
  3609. "title": "db exception alert",
  3610. "tooltip": {
  3611. "shared": true,
  3612. "sort": 0,
  3613. "value_type": "individual"
  3614. },
  3615. "type": "graph",
  3616. "xaxis": {
  3617. "buckets": null,
  3618. "mode": "time",
  3619. "name": null,
  3620. "show": true,
  3621. "values": []
  3622. },
  3623. "yaxes": [
  3624. {
  3625. "format": "short",
  3626. "label": null,
  3627. "logBase": 1,
  3628. "max": null,
  3629. "min": null,
  3630. "show": true
  3631. },
  3632. {
  3633. "format": "short",
  3634. "label": null,
  3635. "logBase": 1,
  3636. "max": null,
  3637. "min": null,
  3638. "show": true
  3639. }
  3640. ],
  3641. "yaxis": {
  3642. "align": false,
  3643. "alignLevel": null
  3644. }
  3645. },
  3646. {
  3647. "alert": {
  3648. "conditions": [
  3649. {
  3650. "evaluator": {
  3651. "params": [
  3652. 1
  3653. ],
  3654. "type": "gt"
  3655. },
  3656. "operator": {
  3657. "type": "and"
  3658. },
  3659. "query": {
  3660. "params": [
  3661. "A",
  3662. "1m",
  3663. "now"
  3664. ]
  3665. },
  3666. "reducer": {
  3667. "params": [],
  3668. "type": "avg"
  3669. },
  3670. "type": "query"
  3671. }
  3672. ],
  3673. "executionErrorState": "keep_state",
  3674. "frequency": "60s",
  3675. "handler": 1,
  3676. "name": "failedPush alert",
  3677. "noDataState": "ok",
  3678. "notifications": []
  3679. },
  3680. "aliasColors": {},
  3681. "bars": false,
  3682. "dashLength": 10,
  3683. "dashes": false,
  3684. "datasource": "Prometheus",
  3685. "fieldConfig": {
  3686. "defaults": {
  3687. "custom": {}
  3688. },
  3689. "overrides": []
  3690. },
  3691. "fill": 1,
  3692. "fillGradient": 0,
  3693. "gridPos": {
  3694. "h": 5,
  3695. "w": 8,
  3696. "x": 8,
  3697. "y": 52
  3698. },
  3699. "hiddenSeries": false,
  3700. "id": 51,
  3701. "legend": {
  3702. "avg": false,
  3703. "current": false,
  3704. "max": false,
  3705. "min": false,
  3706. "show": true,
  3707. "total": false,
  3708. "values": false
  3709. },
  3710. "lines": true,
  3711. "linewidth": 1,
  3712. "links": [],
  3713. "nullPointMode": "null",
  3714. "options": {
  3715. "alertThreshold": true
  3716. },
  3717. "percentage": false,
  3718. "pluginVersion": "7.3.7",
  3719. "pointradius": 5,
  3720. "points": false,
  3721. "renderer": "flot",
  3722. "seriesOverrides": [],
  3723. "spaceLength": 10,
  3724. "stack": false,
  3725. "steppedLine": false,
  3726. "targets": [
  3727. {
  3728. "expr": "sum(nacos_monitor{name='failedPush'})",
  3729. "format": "time_series",
  3730. "intervalFactor": 1,
  3731. "refId": "A"
  3732. }
  3733. ],
  3734. "thresholds": [
  3735. {
  3736. "colorMode": "critical",
  3737. "fill": true,
  3738. "line": true,
  3739. "op": "gt",
  3740. "value": 1
  3741. }
  3742. ],
  3743. "timeFrom": null,
  3744. "timeRegions": [],
  3745. "timeShift": null,
  3746. "title": "failed push alert",
  3747. "tooltip": {
  3748. "shared": true,
  3749. "sort": 0,
  3750. "value_type": "individual"
  3751. },
  3752. "type": "graph",
  3753. "xaxis": {
  3754. "buckets": null,
  3755. "mode": "time",
  3756. "name": null,
  3757. "show": true,
  3758. "values": []
  3759. },
  3760. "yaxes": [
  3761. {
  3762. "format": "short",
  3763. "label": null,
  3764. "logBase": 1,
  3765. "max": null,
  3766. "min": null,
  3767. "show": true
  3768. },
  3769. {
  3770. "format": "short",
  3771. "label": null,
  3772. "logBase": 1,
  3773. "max": null,
  3774. "min": null,
  3775. "show": true
  3776. }
  3777. ],
  3778. "yaxis": {
  3779. "align": false,
  3780. "alignLevel": null
  3781. }
  3782. },
  3783. {
  3784. "alert": {
  3785. "conditions": [
  3786. {
  3787. "evaluator": {
  3788. "params": [
  3789. 1
  3790. ],
  3791. "type": "gt"
  3792. },
  3793. "operator": {
  3794. "type": "and"
  3795. },
  3796. "query": {
  3797. "params": [
  3798. "A",
  3799. "1m",
  3800. "now"
  3801. ]
  3802. },
  3803. "reducer": {
  3804. "params": [],
  3805. "type": "avg"
  3806. },
  3807. "type": "query"
  3808. }
  3809. ],
  3810. "executionErrorState": "keep_state",
  3811. "frequency": "60s",
  3812. "handler": 1,
  3813. "name": "illegalArgument exception alert",
  3814. "noDataState": "ok",
  3815. "notifications": []
  3816. },
  3817. "aliasColors": {},
  3818. "bars": false,
  3819. "dashLength": 10,
  3820. "dashes": false,
  3821. "datasource": "Prometheus",
  3822. "fieldConfig": {
  3823. "defaults": {
  3824. "custom": {}
  3825. },
  3826. "overrides": []
  3827. },
  3828. "fill": 1,
  3829. "fillGradient": 0,
  3830. "gridPos": {
  3831. "h": 5,
  3832. "w": 8,
  3833. "x": 16,
  3834. "y": 52
  3835. },
  3836. "hiddenSeries": false,
  3837. "id": 59,
  3838. "legend": {
  3839. "avg": false,
  3840. "current": false,
  3841. "max": false,
  3842. "min": false,
  3843. "show": true,
  3844. "total": false,
  3845. "values": false
  3846. },
  3847. "lines": true,
  3848. "linewidth": 1,
  3849. "links": [],
  3850. "nullPointMode": "null",
  3851. "options": {
  3852. "alertThreshold": true
  3853. },
  3854. "percentage": false,
  3855. "pluginVersion": "7.3.7",
  3856. "pointradius": 5,
  3857. "points": false,
  3858. "renderer": "flot",
  3859. "seriesOverrides": [],
  3860. "spaceLength": 10,
  3861. "stack": false,
  3862. "steppedLine": false,
  3863. "targets": [
  3864. {
  3865. "expr": "sum(rate(nacos_exception_total{name='illegalArgument'}[1m])) * 60",
  3866. "format": "time_series",
  3867. "intervalFactor": 1,
  3868. "refId": "A"
  3869. }
  3870. ],
  3871. "thresholds": [
  3872. {
  3873. "colorMode": "critical",
  3874. "fill": true,
  3875. "line": true,
  3876. "op": "gt",
  3877. "value": 1
  3878. }
  3879. ],
  3880. "timeFrom": null,
  3881. "timeRegions": [],
  3882. "timeShift": null,
  3883. "title": "illegalArgument exception alert",
  3884. "tooltip": {
  3885. "shared": true,
  3886. "sort": 0,
  3887. "value_type": "individual"
  3888. },
  3889. "type": "graph",
  3890. "xaxis": {
  3891. "buckets": null,
  3892. "mode": "time",
  3893. "name": null,
  3894. "show": true,
  3895. "values": []
  3896. },
  3897. "yaxes": [
  3898. {
  3899. "format": "short",
  3900. "label": null,
  3901. "logBase": 1,
  3902. "max": null,
  3903. "min": null,
  3904. "show": true
  3905. },
  3906. {
  3907. "format": "short",
  3908. "label": null,
  3909. "logBase": 1,
  3910. "max": null,
  3911. "min": null,
  3912. "show": true
  3913. }
  3914. ],
  3915. "yaxis": {
  3916. "align": false,
  3917. "alignLevel": null
  3918. }
  3919. },
  3920. {
  3921. "alert": {
  3922. "conditions": [
  3923. {
  3924. "evaluator": {
  3925. "params": [
  3926. 1
  3927. ],
  3928. "type": "gt"
  3929. },
  3930. "operator": {
  3931. "type": "and"
  3932. },
  3933. "query": {
  3934. "params": [
  3935. "A",
  3936. "5m",
  3937. "now"
  3938. ]
  3939. },
  3940. "reducer": {
  3941. "params": [],
  3942. "type": "avg"
  3943. },
  3944. "type": "query"
  3945. }
  3946. ],
  3947. "executionErrorState": "keep_state",
  3948. "frequency": "60s",
  3949. "handler": 1,
  3950. "name": "naming disk exception alert",
  3951. "noDataState": "ok",
  3952. "notifications": []
  3953. },
  3954. "aliasColors": {},
  3955. "bars": false,
  3956. "dashLength": 10,
  3957. "dashes": false,
  3958. "datasource": "Prometheus",
  3959. "fieldConfig": {
  3960. "defaults": {
  3961. "custom": {}
  3962. },
  3963. "overrides": []
  3964. },
  3965. "fill": 1,
  3966. "fillGradient": 0,
  3967. "gridPos": {
  3968. "h": 5,
  3969. "w": 8,
  3970. "x": 0,
  3971. "y": 57
  3972. },
  3973. "hiddenSeries": false,
  3974. "id": 57,
  3975. "legend": {
  3976. "avg": false,
  3977. "current": false,
  3978. "max": false,
  3979. "min": false,
  3980. "show": true,
  3981. "total": false,
  3982. "values": false
  3983. },
  3984. "lines": true,
  3985. "linewidth": 1,
  3986. "links": [],
  3987. "nullPointMode": "null",
  3988. "options": {
  3989. "alertThreshold": true
  3990. },
  3991. "percentage": false,
  3992. "pluginVersion": "7.3.7",
  3993. "pointradius": 5,
  3994. "points": false,
  3995. "renderer": "flot",
  3996. "seriesOverrides": [],
  3997. "spaceLength": 10,
  3998. "stack": false,
  3999. "steppedLine": false,
  4000. "targets": [
  4001. {
  4002. "expr": "sum(rate(nacos_exception_total{name='disk'}[1m])) * 60",
  4003. "format": "time_series",
  4004. "intervalFactor": 1,
  4005. "refId": "A"
  4006. }
  4007. ],
  4008. "thresholds": [
  4009. {
  4010. "colorMode": "critical",
  4011. "fill": true,
  4012. "line": true,
  4013. "op": "gt",
  4014. "value": 1
  4015. }
  4016. ],
  4017. "timeFrom": null,
  4018. "timeRegions": [],
  4019. "timeShift": null,
  4020. "title": "naming disk exception alert",
  4021. "tooltip": {
  4022. "shared": true,
  4023. "sort": 0,
  4024. "value_type": "individual"
  4025. },
  4026. "type": "graph",
  4027. "xaxis": {
  4028. "buckets": null,
  4029. "mode": "time",
  4030. "name": null,
  4031. "show": true,
  4032. "values": []
  4033. },
  4034. "yaxes": [
  4035. {
  4036. "format": "short",
  4037. "label": null,
  4038. "logBase": 1,
  4039. "max": null,
  4040. "min": null,
  4041. "show": true
  4042. },
  4043. {
  4044. "format": "short",
  4045. "label": null,
  4046. "logBase": 1,
  4047. "max": null,
  4048. "min": null,
  4049. "show": true
  4050. }
  4051. ],
  4052. "yaxis": {
  4053. "align": false,
  4054. "alignLevel": null
  4055. }
  4056. },
  4057. {
  4058. "alert": {
  4059. "conditions": [
  4060. {
  4061. "evaluator": {
  4062. "params": [
  4063. 1
  4064. ],
  4065. "type": "gt"
  4066. },
  4067. "operator": {
  4068. "type": "and"
  4069. },
  4070. "query": {
  4071. "params": [
  4072. "A",
  4073. "1m",
  4074. "now"
  4075. ]
  4076. },
  4077. "reducer": {
  4078. "params": [],
  4079. "type": "avg"
  4080. },
  4081. "type": "query"
  4082. }
  4083. ],
  4084. "executionErrorState": "keep_state",
  4085. "frequency": "60s",
  4086. "handler": 1,
  4087. "name": "config notify exception alert",
  4088. "noDataState": "ok",
  4089. "notifications": []
  4090. },
  4091. "aliasColors": {},
  4092. "bars": false,
  4093. "dashLength": 10,
  4094. "dashes": false,
  4095. "datasource": "Prometheus",
  4096. "fieldConfig": {
  4097. "defaults": {
  4098. "custom": {}
  4099. },
  4100. "overrides": []
  4101. },
  4102. "fill": 1,
  4103. "fillGradient": 0,
  4104. "gridPos": {
  4105. "h": 5,
  4106. "w": 8,
  4107. "x": 8,
  4108. "y": 57
  4109. },
  4110. "hiddenSeries": false,
  4111. "id": 55,
  4112. "legend": {
  4113. "avg": false,
  4114. "current": false,
  4115. "max": false,
  4116. "min": false,
  4117. "show": true,
  4118. "total": false,
  4119. "values": false
  4120. },
  4121. "lines": true,
  4122. "linewidth": 1,
  4123. "links": [],
  4124. "nullPointMode": "null",
  4125. "options": {
  4126. "alertThreshold": true
  4127. },
  4128. "percentage": false,
  4129. "pluginVersion": "7.3.7",
  4130. "pointradius": 5,
  4131. "points": false,
  4132. "renderer": "flot",
  4133. "seriesOverrides": [],
  4134. "spaceLength": 10,
  4135. "stack": false,
  4136. "steppedLine": false,
  4137. "targets": [
  4138. {
  4139. "expr": "sum(rate(nacos_exception_total{name='configNotify'}[1m])) * 60",
  4140. "format": "time_series",
  4141. "intervalFactor": 1,
  4142. "refId": "A"
  4143. }
  4144. ],
  4145. "thresholds": [
  4146. {
  4147. "colorMode": "critical",
  4148. "fill": true,
  4149. "line": true,
  4150. "op": "gt",
  4151. "value": 1
  4152. }
  4153. ],
  4154. "timeFrom": null,
  4155. "timeRegions": [],
  4156. "timeShift": null,
  4157. "title": "config notify exception alert",
  4158. "tooltip": {
  4159. "shared": true,
  4160. "sort": 0,
  4161. "value_type": "individual"
  4162. },
  4163. "type": "graph",
  4164. "xaxis": {
  4165. "buckets": null,
  4166. "mode": "time",
  4167. "name": null,
  4168. "show": true,
  4169. "values": []
  4170. },
  4171. "yaxes": [
  4172. {
  4173. "format": "short",
  4174. "label": null,
  4175. "logBase": 1,
  4176. "max": null,
  4177. "min": null,
  4178. "show": true
  4179. },
  4180. {
  4181. "format": "short",
  4182. "label": null,
  4183. "logBase": 1,
  4184. "max": null,
  4185. "min": null,
  4186. "show": true
  4187. }
  4188. ],
  4189. "yaxis": {
  4190. "align": false,
  4191. "alignLevel": null
  4192. }
  4193. },
  4194. {
  4195. "alert": {
  4196. "conditions": [
  4197. {
  4198. "evaluator": {
  4199. "params": [
  4200. 1
  4201. ],
  4202. "type": "gt"
  4203. },
  4204. "operator": {
  4205. "type": "and"
  4206. },
  4207. "query": {
  4208. "params": [
  4209. "A",
  4210. "1m",
  4211. "now"
  4212. ]
  4213. },
  4214. "reducer": {
  4215. "params": [],
  4216. "type": "avg"
  4217. },
  4218. "type": "query"
  4219. }
  4220. ],
  4221. "executionErrorState": "keep_state",
  4222. "frequency": "60s",
  4223. "handler": 1,
  4224. "name": "naming leader send beat failed exception alert",
  4225. "noDataState": "ok",
  4226. "notifications": []
  4227. },
  4228. "aliasColors": {},
  4229. "bars": false,
  4230. "dashLength": 10,
  4231. "dashes": false,
  4232. "datasource": "Prometheus",
  4233. "fieldConfig": {
  4234. "defaults": {
  4235. "custom": {}
  4236. },
  4237. "overrides": []
  4238. },
  4239. "fill": 1,
  4240. "fillGradient": 0,
  4241. "gridPos": {
  4242. "h": 5,
  4243. "w": 8,
  4244. "x": 16,
  4245. "y": 57
  4246. },
  4247. "hiddenSeries": false,
  4248. "id": 58,
  4249. "legend": {
  4250. "avg": false,
  4251. "current": false,
  4252. "max": false,
  4253. "min": false,
  4254. "show": true,
  4255. "total": false,
  4256. "values": false
  4257. },
  4258. "lines": true,
  4259. "linewidth": 1,
  4260. "links": [],
  4261. "nullPointMode": "null",
  4262. "options": {
  4263. "alertThreshold": true
  4264. },
  4265. "percentage": false,
  4266. "pluginVersion": "7.3.7",
  4267. "pointradius": 5,
  4268. "points": false,
  4269. "renderer": "flot",
  4270. "seriesOverrides": [],
  4271. "spaceLength": 10,
  4272. "stack": false,
  4273. "steppedLine": false,
  4274. "targets": [
  4275. {
  4276. "expr": "sum(rate(nacos_exception_total{name='leaderSendBeatFailed'}[1m])) * 60",
  4277. "format": "time_series",
  4278. "intervalFactor": 1,
  4279. "refId": "A"
  4280. }
  4281. ],
  4282. "thresholds": [
  4283. {
  4284. "colorMode": "critical",
  4285. "fill": true,
  4286. "line": true,
  4287. "op": "gt",
  4288. "value": 1
  4289. }
  4290. ],
  4291. "timeFrom": null,
  4292. "timeRegions": [],
  4293. "timeShift": null,
  4294. "title": "naming leader send beat failed exception alert",
  4295. "tooltip": {
  4296. "shared": true,
  4297. "sort": 0,
  4298. "value_type": "individual"
  4299. },
  4300. "type": "graph",
  4301. "xaxis": {
  4302. "buckets": null,
  4303. "mode": "time",
  4304. "name": null,
  4305. "show": true,
  4306. "values": []
  4307. },
  4308. "yaxes": [
  4309. {
  4310. "format": "short",
  4311. "label": null,
  4312. "logBase": 1,
  4313. "max": null,
  4314. "min": null,
  4315. "show": true
  4316. },
  4317. {
  4318. "format": "short",
  4319. "label": null,
  4320. "logBase": 1,
  4321. "max": null,
  4322. "min": null,
  4323. "show": true
  4324. }
  4325. ],
  4326. "yaxis": {
  4327. "align": false,
  4328. "alignLevel": null
  4329. }
  4330. },
  4331. {
  4332. "alert": {
  4333. "conditions": [
  4334. {
  4335. "evaluator": {
  4336. "params": [
  4337. 1
  4338. ],
  4339. "type": "gt"
  4340. },
  4341. "operator": {
  4342. "type": "and"
  4343. },
  4344. "query": {
  4345. "params": [
  4346. "A",
  4347. "1m",
  4348. "now"
  4349. ]
  4350. },
  4351. "reducer": {
  4352. "params": [],
  4353. "type": "avg"
  4354. },
  4355. "type": "query"
  4356. }
  4357. ],
  4358. "executionErrorState": "keep_state",
  4359. "frequency": "60s",
  4360. "handler": 1,
  4361. "name": "nacos_exception alert",
  4362. "noDataState": "ok",
  4363. "notifications": []
  4364. },
  4365. "aliasColors": {},
  4366. "bars": false,
  4367. "dashLength": 10,
  4368. "dashes": false,
  4369. "datasource": "Prometheus",
  4370. "fieldConfig": {
  4371. "defaults": {
  4372. "custom": {}
  4373. },
  4374. "overrides": []
  4375. },
  4376. "fill": 1,
  4377. "fillGradient": 0,
  4378. "gridPos": {
  4379. "h": 5,
  4380. "w": 24,
  4381. "x": 0,
  4382. "y": 62
  4383. },
  4384. "hiddenSeries": false,
  4385. "id": 60,
  4386. "legend": {
  4387. "avg": false,
  4388. "current": false,
  4389. "max": false,
  4390. "min": false,
  4391. "show": true,
  4392. "total": false,
  4393. "values": false
  4394. },
  4395. "lines": true,
  4396. "linewidth": 1,
  4397. "links": [],
  4398. "nullPointMode": "null",
  4399. "options": {
  4400. "alertThreshold": true
  4401. },
  4402. "percentage": false,
  4403. "pluginVersion": "7.3.7",
  4404. "pointradius": 5,
  4405. "points": false,
  4406. "renderer": "flot",
  4407. "seriesOverrides": [],
  4408. "spaceLength": 10,
  4409. "stack": false,
  4410. "steppedLine": false,
  4411. "targets": [
  4412. {
  4413. "expr": "sum(rate(nacos_exception_total{name='nacos'}[1m])) * 60",
  4414. "format": "time_series",
  4415. "intervalFactor": 1,
  4416. "refId": "A"
  4417. }
  4418. ],
  4419. "thresholds": [
  4420. {
  4421. "colorMode": "critical",
  4422. "fill": true,
  4423. "line": true,
  4424. "op": "gt",
  4425. "value": 1
  4426. }
  4427. ],
  4428. "timeFrom": null,
  4429. "timeRegions": [],
  4430. "timeShift": null,
  4431. "title": "nacos exception alert",
  4432. "tooltip": {
  4433. "shared": true,
  4434. "sort": 0,
  4435. "value_type": "individual"
  4436. },
  4437. "type": "graph",
  4438. "xaxis": {
  4439. "buckets": null,
  4440. "mode": "time",
  4441. "name": null,
  4442. "show": true,
  4443. "values": []
  4444. },
  4445. "yaxes": [
  4446. {
  4447. "format": "short",
  4448. "label": null,
  4449. "logBase": 1,
  4450. "max": null,
  4451. "min": null,
  4452. "show": true
  4453. },
  4454. {
  4455. "format": "short",
  4456. "label": null,
  4457. "logBase": 1,
  4458. "max": null,
  4459. "min": null,
  4460. "show": true
  4461. }
  4462. ],
  4463. "yaxis": {
  4464. "align": false,
  4465. "alignLevel": null
  4466. }
  4467. }
  4468. ],
  4469. "refresh": false,
  4470. "schemaVersion": 26,
  4471. "style": "dark",
  4472. "tags": [
  4473. "nacos"
  4474. ],
  4475. "templating": {
  4476. "list": [
  4477. {
  4478. "allValue": "",
  4479. "current": {
  4480. "selected": false,
  4481. "text": "All",
  4482. "value": "$__all"
  4483. },
  4484. "datasource": "Prometheus",
  4485. "definition": "label_values(instance)",
  4486. "error": null,
  4487. "hide": 0,
  4488. "includeAll": true,
  4489. "label": "instance",
  4490. "multi": false,
  4491. "name": "instance",
  4492. "options": [],
  4493. "query": "label_values(instance)",
  4494. "refresh": 2,
  4495. "regex": "",
  4496. "skipUrlSync": false,
  4497. "sort": 0,
  4498. "tagValuesQuery": "",
  4499. "tags": [],
  4500. "tagsQuery": "",
  4501. "type": "query",
  4502. "useTags": false
  4503. }
  4504. ]
  4505. },
  4506. "time": {
  4507. "from": "now-5m",
  4508. "to": "now"
  4509. },
  4510. "timepicker": {
  4511. "refresh_intervals": [
  4512. "5s",
  4513. "10s",
  4514. "30s",
  4515. "1m",
  4516. "5m",
  4517. "15m",
  4518. "30m",
  4519. "1h",
  4520. "2h",
  4521. "1d"
  4522. ],
  4523. "time_options": [
  4524. "5m",
  4525. "15m",
  4526. "1h",
  4527. "6h",
  4528. "12h",
  4529. "24h",
  4530. "2d",
  4531. "7d",
  4532. "30d"
  4533. ]
  4534. },
  4535. "timezone": "browser",
  4536. "title": "BladeX监控大屏--Nacos",
  4537. "uid": "bladex-nacos",
  4538. "version": 1
  4539. }