Nacos.json 94 KB

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