{"id":11476,"date":"2023-02-24T15:34:53","date_gmt":"2023-02-24T07:34:53","guid":{"rendered":"https:\/\/www.lwops.cn\/?p=11476"},"modified":"2023-02-24T15:34:54","modified_gmt":"2023-02-24T07:34:54","slug":"zabbix%e7%9b%91%e6%8e%a7%e9%98%bf%e9%87%8c%e4%ba%91slb%e6%93%8d%e4%bd%9c%e6%8c%87%e5%bc%95","status":"publish","type":"post","link":"https:\/\/www.lwops.cn\/index.php\/interflow\/technology\/11476","title":{"rendered":"zabbix\u76d1\u63a7\u963f\u91cc\u4e91SLB\u64cd\u4f5c\u6307\u5f15"},"content":{"rendered":"\n

1.\u00a0SLB\u4ecb\u7ecd<\/strong><\/h2>\n\n\n\n

\u963f\u91cc\u4e91\u8d1f\u8f7d\u5747\u8861\uff08Server Load Balancer\uff0c\u7b80\u79f0SLB\uff09\u662f\u4e91\u539f\u751f\u65f6\u4ee3\u5e94\u7528\u9ad8\u53ef\u7528\u7684\u57fa\u672c\u8981\u7d20\u3002\u901a\u8fc7\u5c06\u6d41\u91cf\u5206\u53d1\u5230\u4e0d\u540c\u7684\u540e\u7aef\u670d\u52a1\u6765\u6269\u5c55\u5e94\u7528\u7cfb\u7edf\u7684\u670d\u52a1\u541e\u5410\u80fd\u529b\uff0c\u6d88\u9664\u5355\u70b9\u6545\u969c\u5e76\u63d0\u5347\u5e94\u7528\u7cfb\u7edf\u7684\u53ef\u7528\u6027\u3002 \u963f\u91cc\u4e91SLB\u5305\u542b\u9762\u54114\u5c42\u7684\u7f51\u7edc\u578b\u8d1f\u8f7d\u5747\u8861NLB\u3001\u9762\u54117\u5c42\u7684\u5e94\u7528\u578b\u8d1f\u8f7d\u5747\u8861ALB\u548c\u4f20\u7edf\u578b\u8d1f\u8f7d\u5747\u8861CLB\uff0c\u662f\u963f\u91cc\u4e91\u5b98\u65b9\u4e91\u539f\u751f\u7f51\u5173\u3002<\/p>\n\n\n\n

2.\u00a0\u76d1\u63a7\u524d\u51c6\u5907<\/strong><\/h2>\n\n\n\n

\u672c\u6b21\u76d1\u63a7\u65b9\u5f0f\u901a\u8fc7zabbix\u91c7\u96c6\u5668\u65b9\u5f0f\uff08\u76ee\u524d\u7f51\u4e0a\u80fd\u67e5\u5230\u7684\u6587\u7ae0\uff0c\u76d1\u63a7\u6570\u636e\u83b7\u53d6\u662f\u57fa\u4e8eagent\u7684\u3002\u7531\u4e8e\u8c03\u7528\u963f\u91cc\u4e91\u7684\u63a5\u53e3\uff0c\u8d85\u8fc7\u4e00\u5b9a\u6b21\u6570\u4f1a\u6709\u8d39\u7528\u4ea7\u751f\uff0c\u6545\u91c7\u7528\u91c7\u96c6\u5668\u65b9\u5f0f\u4f1a\u6bd4agent\u66f4\u4f18\uff09<\/p>\n\n\n\n

3.\u00a0\u83b7\u53d6SLB\u5b9e\u4f8b<\/strong><\/h2>\n\n\n\n
#!\/usr\/bin\/env python\r\n#coding=utf-8\r\n\r\nfrom aliyunsdkcore.client import AcsClient\r\nfrom aliyunsdkcore.acs_exception.exceptions import ClientException\r\nfrom aliyunsdkcore.acs_exception.exceptions import ServerException\r\nfrom aliyunsdkcore.auth.credentials import AccessKeyCredential\r\nfrom aliyunsdkcore.auth.credentials import StsTokenCredential\r\nfrom aliyunsdkslb.request.v20140515.DescribeLoadBalancersRequest import DescribeLoadBalancersRequest\r\nimport json\r\n# \u8fd9\u91cc\u586b ACCESS_KEY \u548cSECRET_KEY<\/code><\/pre>\n\n\n\n
credentials = AccessKeyCredential('********', '****')\r\n# use STS Token\r\n# credentials = StsTokenCredential('', '', '')\r\n# \u8fd9\u91cc\u586b\u8d44\u6e90\u6240\u5c5e\u533a\u57df\r\nclient = AcsClient(region_id='cn-hangzhou', credential=credentials)\r\nrequest = DescribeLoadBalancersRequest()\r\nrequest.set_accept_format('json')\r\nresponse = client.do_action_with_exception(request)\r\nr = []\r\nres = json.loads(response)\r\n\r\n# \u62fc\u63a5\u6210\u7528\u4e8ezabbix\u81ea\u52a8\u53d1\u73b0\u8d44\u6e90\u7684\u683c\u5f0f \uff0c\u8fd9\u91cc\u4f7f\u7528 \u00a0LoadBalancerId \u4f5c\u4e3a\u4e3b\u673a\u540d\u79f0 \u00a0 LoadBalancerName \u4f5c\u4e3a\u53ef\u89c1\u540d\u79f0\r\nfor i in res['LoadBalancers']['LoadBalancer']:\r\n\u00a0 \u00a0 \u00a0 \u00a0 buf = {'{#PROJECT}':'acs_slb_dashboard', '{#INSTANCE}':i['LoadBalancerId'], '{#INSTANCE_NANME}':i['LoadBalancerName']}\r\n\u00a0 \u00a0 \u00a0 \u00a0 r.append(buf)\r\nprint(json.dumps({\"data\":r}))\n<\/code><\/pre>\n\n\n\n

4.\u00a0\u83b7\u53d6\u76d1\u63a7\u6570\u636e<\/strong><\/h2>\n\n\n\n
#!\/usr\/bin\/env python\r\n#coding=utf-8\r\nfrom aliyunsdkcore.client import AcsClient\r\nfrom aliyunsdkcore.acs_exception.exceptions import ClientException\r\nfrom aliyunsdkcore.acs_exception.exceptions import ServerException\r\nfrom aliyunsdkcore.request import CommonRequest\r\nfrom aliyunsdkcore.auth.credentials import AccessKeyCredential\r\nfrom aliyunsdkcore.auth.credentials import StsTokenCredential\r\nfrom aliyunsdkcms.request.v20190101.DescribeMetricLastRequest import DescribeMetricLastRequest\r\nimport json,sys\r\nfrom os import popen,system\r\n# \u952e\u503c\r\nk=sys.argv[1]\r\n# \u8d44\u6e90\u6240\u5728\u533a\u57df\r\nProduce=sys.argv[2]\r\n# \u547d\u540d\u7a7a\u95f4\r\nNamespace=sys.argv[3]\r\n# ACCESS_KEY\r\nAkey=sys.argv[4]\n<\/code><\/pre>\n\n\n\n
# SECRET_KEY\r\nSkey=sys.argv[5]\r\n# \u83b7\u53d6\u76d1\u63a7\u6570\u636e\u7684\u6570\u636e\u7c7b\u578b\uff0c\u6709\u6700\u5927\u503c\uff08Maximum\uff09\uff0c\u5e73\u5747\u503c\uff08avg\uff09\u7b49\r\nKdata=sys.argv[6]\r\nZABBIX_SEND_ADDR = '\/itops\/zabbix\/bin\/zabbix_sender' \u00a0 \u00a0 #zabbix_sender \u7edd\u5bf9\u8def\u5f84\r\nzabbix_server_ip = \"192.168.1.1\" \u00a0 \u00a0 \u00a0 #zabbix_server\u6216zabbix_proxy\u5730\u5740,\u7528\u4e8e\u63a5\u6536\u6570\u636e\r\nZABBIX_PORT = '10051' \u00a0 \u00a0 \u00a0#zabbix_server\u6216zabbix_proxy\u670d\u52a1\u7aef\u53e3\r\ncredentials = AccessKeyCredential(Akey, Skey)\r\n\u00a0 \u00a0 # use STS Token\r\n\u00a0 \u00a0 # credentials = StsTokenCredential('', '', '')\r\nclient = AcsClient(region_id=Produce, credential=credentials)\r\nrequest = DescribeMetricLastRequest()\r\nrequest.set_accept_format('json')\r\nrequest.set_Namespace(Namespace)\r\nrequest.set_MetricName(k)\r\nresult = client.do_action_with_exception(request)\r\n#res = response.decode()\r\nresult = json.loads(result)\r\nresult = json.loads(result['Datapoints'])\r\n#print(result)\r\n# \u901a\u8fc7zabbix_sender \u53d1\u9001\u76d1\u63a7\u6570\u636e\u5230\u76d1\u63a7\u5bf9\u8c61\r\nfor i in result:\r\n\u00a0 \u00a0 \u00a0 \u00a0 hosthost=i[\"instanceId\"]\r\n\u00a0 \u00a0 \u00a0 \u00a0 key=k\r\n\u00a0 \u00a0 \u00a0 \u00a0 value=i[Kdata]\r\n\u00a0 \u00a0 \u00a0 \u00a0 popen('%s -z %s -p %s -s %s -k %s -o %s >\/dev\/null' % (ZABBIX_SEND_ADDR,zabbix_server_ip,ZABBIX_PORT,\"'\" + hosthost + \"'\",\"'\" + key + \"'\",\"'\" + str(value) + \"'\")<\/code><\/pre>\n\n\n\n

5.\u00a0\u76d1\u63a7<\/a>\u6a21\u677f\u5236\u4f5c<\/strong><\/h2>\n\n\n\n

5.1 \u65b0\u589e\u81ea\u52a8\u53d1\u73b0\u89c4\u5219\u7528\u4e8e\u81ea\u52a8\u53d1\u73b0SLB\u5b9e\u4f8b<\/strong><\/p>\n\n\n\n

\"\"<\/figure>\n\n\n\n

5.2 \u65b0\u589e\u76d1\u63a7\u9879\uff0c\u7528\u4e8e\u83b7\u53d6\u76d1\u63a7\u6570\u636e<\/strong><\/p>\n\n\n\n

\"\"<\/figure>\n\n\n\n

5.3 \u65b0\u589e\u76d1\u63a7\u6570\u636e\u63a5\u6536\u7684\u76d1\u63a7\u6a21\u677f<\/strong><\/p>\n\n\n\n

\"\"<\/figure>\n\n\n\n

\u4ee5\u4e0a\u5c31\u662f\u8fd9\u4e00\u671f\u7684\u5206\u4eab\u5185\u5bb9\u3002<\/p>\n\n\n\n

\u5927\u5bb6\u597d\uff0c\u6211\u662f\u4e50\u4e50\uff0c\u4e13\u6ce8IT\u8fd0\u7ef4\u6280\u672f\u7814\u7a76\u4e0e\u5206\u4eab\uff0c\u5173\u6ce8\u6211\uff0c\u4e86\u89e3\u66f4\u591a\u5b9e\u7528zabbix\u6280\u672f\u77e5\u8bc6\u3002\u540c\u65f6\u6b22\u8fce\u5c0f\u4f19\u4f34\u4eec\u5230\u4e50\u7ef4\u793e\u533a<\/u><\/a>\u7559\u8a00\u63d0\u95ee\uff0c\u5171\u540c\u63a2\u8ba8zabbix\u4f7f\u7528\u95ee\u9898\u3002<\/p>\n\n\n\n

\u9644\uff1a\u6307\u6807\u6e05\u5355\u53c2\u8003<\/p>\n\n\n\n

https:\/\/cms.console.aliyun.com\/metric-meta\/acs_slb_dashboard\/slb?spm=a2c4g.11186623.0.0.68a46c8aTDUUGP<\/a><\/p>\n\n\n\n

\"\u4e50\u7ef4\u793e\u533a\"<\/figure>\n","protected":false},"excerpt":{"rendered":"

\u5982\u4f55\u5229\u7528zabbix\u76d1\u63a7\u963f\u91cc\u4e91SLB\u64cd\u4f5c\u6307\u5f15<\/p>\n","protected":false},"author":1,"featured_media":12758,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_mi_skip_tracking":false,"themepark_post_bcolor":"#f5f5f5","themepark_post_width":"1022px","themepark_post_img":"","themepark_post_img_po":"left","themepark_post_img_re":false,"themepark_post_img_cover":false,"themepark_post_img_fixed":false,"themepark_post_hide_title":false,"themepark_post_main_b":"","themepark_post_main_p":100,"themepark_paddingblock":false,"footnotes":""},"categories":[21],"tags":[101,309,310],"class_list":["post-11476","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-technology","tag-zabbixjkpt","tag-zabbixslb","tag-zabbixjkaly"],"metadata":{"_edit_lock":["1677224063:1"],"_edit_last":["1"],"catce":["sidebar-widgets4"],"_yoast_wpseo_content_score":["90"],"_yoast_wpseo_estimated-reading-time-minutes":[""],"_yoast_wpseo_wordproof_timestamp":[""],"views":["5310"],"_thumbnail_id":["12758"],"themepark_seo_title":["Zabbix\u76d1\u63a7\u963f\u91cc\u4e91SLB\u64cd\u4f5c\u6307\u5f15"],"themepark_seo_description":["\u5982\u4f55\u5229\u7528Zabbix\u76d1\u63a7\u963f\u91cc\u4e91SLB\u64cd\u4f5c\u6307\u5f15"],"themepark_seo_keyword":["zabbix\u76d1\u63a7SLB,zabbix\u76d1\u63a7\u963f\u91cc\u4e91,zabbix\u76d1\u63a7"],"_yoast_wpseo_primary_category":["21"],"_yoast_wpseo_focuskw":["zabbix\u76d1\u63a7SLB"],"_yoast_wpseo_linkdex":["41"],"ig_es_is_post_notified":["1"]},"yoast_head":"\nzabbix\u76d1\u63a7\u963f\u91cc\u4e91SLB\u64cd\u4f5c\u6307\u5f15 - \u4e50\u7ef4\u5b98\u7f51<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.lwops.cn\/index.php\/interflow\/technology\/11476\" \/>\n<meta property=\"og:locale\" content=\"zh_CN\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"zabbix\u76d1\u63a7\u963f\u91cc\u4e91SLB\u64cd\u4f5c\u6307\u5f15 - \u4e50\u7ef4\u5b98\u7f51\" \/>\n<meta property=\"og:description\" content=\"\u5982\u4f55\u5229\u7528zabbix\u76d1\u63a7\u963f\u91cc\u4e91SLB\u64cd\u4f5c\u6307\u5f15\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.lwops.cn\/index.php\/interflow\/technology\/11476\" \/>\n<meta property=\"og:site_name\" content=\"\u4e50\u7ef4\u5b98\u7f51\" \/>\n<meta property=\"article:published_time\" content=\"2023-02-24T07:34:53+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-02-24T07:34:54+00:00\" \/>\n<meta name=\"author\" content=\"admin\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:image\" content=\"https:\/\/lwweb.oss-cn-shenzhen.aliyuncs.com\/wp-content\/uploads\/2023\/02\/zabbix_\u54d4\u54e9\u54d4.png\" \/>\n<meta name=\"twitter:label1\" content=\"\u4f5c\u8005\" \/>\n\t<meta name=\"twitter:data1\" content=\"admin\" \/>\n\t<meta name=\"twitter:label2\" content=\"\u9884\u8ba1\u9605\u8bfb\u65f6\u95f4\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 \u5206\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/www.lwops.cn\/index.php\/interflow\/technology\/11476#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.lwops.cn\/index.php\/interflow\/technology\/11476\"},\"author\":{\"name\":\"admin\",\"@id\":\"https:\/\/www.lwops.cn\/#\/schema\/person\/c07cbf0802c378ed4d87eaa38472b508\"},\"headline\":\"zabbix\u76d1\u63a7\u963f\u91cc\u4e91SLB\u64cd\u4f5c\u6307\u5f15\",\"datePublished\":\"2023-02-24T07:34:53+00:00\",\"dateModified\":\"2023-02-24T07:34:54+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.lwops.cn\/index.php\/interflow\/technology\/11476\"},\"wordCount\":36,\"publisher\":{\"@id\":\"https:\/\/www.lwops.cn\/#organization\"},\"keywords\":[\"zabbix\u76d1\u63a7\",\"zabbix\u76d1\u63a7SLB\",\"zabbix\u76d1\u63a7\u963f\u91cc\u4e91\"],\"articleSection\":[\"Zabbix\u6280\u672f\u8d44\u6599\"],\"inLanguage\":\"zh-Hans\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.lwops.cn\/index.php\/interflow\/technology\/11476\",\"url\":\"https:\/\/www.lwops.cn\/index.php\/interflow\/technology\/11476\",\"name\":\"zabbix\u76d1\u63a7\u963f\u91cc\u4e91SLB\u64cd\u4f5c\u6307\u5f15 - \u4e50\u7ef4\u5b98\u7f51\",\"isPartOf\":{\"@id\":\"https:\/\/www.lwops.cn\/#website\"},\"datePublished\":\"2023-02-24T07:34:53+00:00\",\"dateModified\":\"2023-02-24T07:34:54+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/www.lwops.cn\/index.php\/interflow\/technology\/11476#breadcrumb\"},\"inLanguage\":\"zh-Hans\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.lwops.cn\/index.php\/interflow\/technology\/11476\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.lwops.cn\/index.php\/interflow\/technology\/11476#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"\u9996\u9875\",\"item\":\"https:\/\/www.lwops.cn\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Zabbix\u76d1\u63a7\u963f\u91cc\u4e91SLB\u64cd\u4f5c\u6307\u5f15\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.lwops.cn\/#website\",\"url\":\"https:\/\/www.lwops.cn\/\",\"name\":\"\u4e50\u7ef4\u5b98\u7f51\",\"description\":\"IT\u76d1\u63a7\u7cfb\u7edf_zabbix_\u670d\u52a1\u5668\u76d1\u63a7\u8f6f\u4ef6_IT\u8fd0\u7ef4\u5e73\u53f0-\u4e50\u7ef4\",\"publisher\":{\"@id\":\"https:\/\/www.lwops.cn\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.lwops.cn\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"zh-Hans\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.lwops.cn\/#organization\",\"name\":\"\u5e7f\u4e1c\u4e50\u7ef4\u4fe1\u606f\u79d1\u6280\u6709\u9650\u516c\u53f8\",\"url\":\"https:\/\/www.lwops.cn\/\",\"sameAs\":[],\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"zh-Hans\",\"@id\":\"https:\/\/www.lwops.cn\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/lwweb.oss-cn-shenzhen.aliyuncs.com\/wp-content\/uploads\/2022\/06\/b881de838f2683ee60f9b4591884ca55.svg\",\"contentUrl\":\"https:\/\/lwweb.oss-cn-shenzhen.aliyuncs.com\/wp-content\/uploads\/2022\/06\/b881de838f2683ee60f9b4591884ca55.svg\",\"caption\":\"\u5e7f\u4e1c\u4e50\u7ef4\u4fe1\u606f\u79d1\u6280\u6709\u9650\u516c\u53f8\"},\"image\":{\"@id\":\"https:\/\/www.lwops.cn\/#\/schema\/logo\/image\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.lwops.cn\/#\/schema\/person\/c07cbf0802c378ed4d87eaa38472b508\",\"name\":\"admin\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"zh-Hans\",\"@id\":\"https:\/\/www.lwops.cn\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/c17976578ba7141a1c8c7dbf996183df?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/c17976578ba7141a1c8c7dbf996183df?s=96&d=mm&r=g\",\"caption\":\"admin\"},\"sameAs\":[\"http:\/\/www.lwops.cn\"],\"url\":\"https:\/\/www.lwops.cn\/index.php\/author\/admin\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"zabbix\u76d1\u63a7\u963f\u91cc\u4e91SLB\u64cd\u4f5c\u6307\u5f15 - \u4e50\u7ef4\u5b98\u7f51","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.lwops.cn\/index.php\/interflow\/technology\/11476","og_locale":"zh_CN","og_type":"article","og_title":"zabbix\u76d1\u63a7\u963f\u91cc\u4e91SLB\u64cd\u4f5c\u6307\u5f15 - \u4e50\u7ef4\u5b98\u7f51","og_description":"\u5982\u4f55\u5229\u7528zabbix\u76d1\u63a7\u963f\u91cc\u4e91SLB\u64cd\u4f5c\u6307\u5f15","og_url":"https:\/\/www.lwops.cn\/index.php\/interflow\/technology\/11476","og_site_name":"\u4e50\u7ef4\u5b98\u7f51","article_published_time":"2023-02-24T07:34:53+00:00","article_modified_time":"2023-02-24T07:34:54+00:00","author":"admin","twitter_card":"summary_large_image","twitter_image":"https:\/\/lwweb.oss-cn-shenzhen.aliyuncs.com\/wp-content\/uploads\/2023\/02\/zabbix_\u54d4\u54e9\u54d4.png","twitter_misc":{"\u4f5c\u8005":"admin","\u9884\u8ba1\u9605\u8bfb\u65f6\u95f4":"2 \u5206"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.lwops.cn\/index.php\/interflow\/technology\/11476#article","isPartOf":{"@id":"https:\/\/www.lwops.cn\/index.php\/interflow\/technology\/11476"},"author":{"name":"admin","@id":"https:\/\/www.lwops.cn\/#\/schema\/person\/c07cbf0802c378ed4d87eaa38472b508"},"headline":"zabbix\u76d1\u63a7\u963f\u91cc\u4e91SLB\u64cd\u4f5c\u6307\u5f15","datePublished":"2023-02-24T07:34:53+00:00","dateModified":"2023-02-24T07:34:54+00:00","mainEntityOfPage":{"@id":"https:\/\/www.lwops.cn\/index.php\/interflow\/technology\/11476"},"wordCount":36,"publisher":{"@id":"https:\/\/www.lwops.cn\/#organization"},"keywords":["zabbix\u76d1\u63a7","zabbix\u76d1\u63a7SLB","zabbix\u76d1\u63a7\u963f\u91cc\u4e91"],"articleSection":["Zabbix\u6280\u672f\u8d44\u6599"],"inLanguage":"zh-Hans"},{"@type":"WebPage","@id":"https:\/\/www.lwops.cn\/index.php\/interflow\/technology\/11476","url":"https:\/\/www.lwops.cn\/index.php\/interflow\/technology\/11476","name":"zabbix\u76d1\u63a7\u963f\u91cc\u4e91SLB\u64cd\u4f5c\u6307\u5f15 - \u4e50\u7ef4\u5b98\u7f51","isPartOf":{"@id":"https:\/\/www.lwops.cn\/#website"},"datePublished":"2023-02-24T07:34:53+00:00","dateModified":"2023-02-24T07:34:54+00:00","breadcrumb":{"@id":"https:\/\/www.lwops.cn\/index.php\/interflow\/technology\/11476#breadcrumb"},"inLanguage":"zh-Hans","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.lwops.cn\/index.php\/interflow\/technology\/11476"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.lwops.cn\/index.php\/interflow\/technology\/11476#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"\u9996\u9875","item":"https:\/\/www.lwops.cn\/"},{"@type":"ListItem","position":2,"name":"Zabbix\u76d1\u63a7\u963f\u91cc\u4e91SLB\u64cd\u4f5c\u6307\u5f15"}]},{"@type":"WebSite","@id":"https:\/\/www.lwops.cn\/#website","url":"https:\/\/www.lwops.cn\/","name":"\u4e50\u7ef4\u5b98\u7f51","description":"IT\u76d1\u63a7\u7cfb\u7edf_zabbix_\u670d\u52a1\u5668\u76d1\u63a7\u8f6f\u4ef6_IT\u8fd0\u7ef4\u5e73\u53f0-\u4e50\u7ef4","publisher":{"@id":"https:\/\/www.lwops.cn\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.lwops.cn\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"zh-Hans"},{"@type":"Organization","@id":"https:\/\/www.lwops.cn\/#organization","name":"\u5e7f\u4e1c\u4e50\u7ef4\u4fe1\u606f\u79d1\u6280\u6709\u9650\u516c\u53f8","url":"https:\/\/www.lwops.cn\/","sameAs":[],"logo":{"@type":"ImageObject","inLanguage":"zh-Hans","@id":"https:\/\/www.lwops.cn\/#\/schema\/logo\/image\/","url":"https:\/\/lwweb.oss-cn-shenzhen.aliyuncs.com\/wp-content\/uploads\/2022\/06\/b881de838f2683ee60f9b4591884ca55.svg","contentUrl":"https:\/\/lwweb.oss-cn-shenzhen.aliyuncs.com\/wp-content\/uploads\/2022\/06\/b881de838f2683ee60f9b4591884ca55.svg","caption":"\u5e7f\u4e1c\u4e50\u7ef4\u4fe1\u606f\u79d1\u6280\u6709\u9650\u516c\u53f8"},"image":{"@id":"https:\/\/www.lwops.cn\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/www.lwops.cn\/#\/schema\/person\/c07cbf0802c378ed4d87eaa38472b508","name":"admin","image":{"@type":"ImageObject","inLanguage":"zh-Hans","@id":"https:\/\/www.lwops.cn\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/c17976578ba7141a1c8c7dbf996183df?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/c17976578ba7141a1c8c7dbf996183df?s=96&d=mm&r=g","caption":"admin"},"sameAs":["http:\/\/www.lwops.cn"],"url":"https:\/\/www.lwops.cn\/index.php\/author\/admin"}]}},"medium_url":"https:\/\/lwweb.oss-cn-shenzhen.aliyuncs.com\/wp-content\/uploads\/2023\/10\/\u5b98\u7f51\u5c01\u9762\u56fe.jpg","thumbnail_url":"https:\/\/lwweb.oss-cn-shenzhen.aliyuncs.com\/wp-content\/uploads\/2023\/10\/\u5b98\u7f51\u5c01\u9762\u56fe.jpg","full_url":"https:\/\/lwweb.oss-cn-shenzhen.aliyuncs.com\/wp-content\/uploads\/2023\/10\/\u5b98\u7f51\u5c01\u9762\u56fe.jpg","post_mailing_queue_ids":[],"_links":{"self":[{"href":"https:\/\/www.lwops.cn\/index.php\/wp-json\/wp\/v2\/posts\/11476","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.lwops.cn\/index.php\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.lwops.cn\/index.php\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.lwops.cn\/index.php\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.lwops.cn\/index.php\/wp-json\/wp\/v2\/comments?post=11476"}],"version-history":[{"count":2,"href":"https:\/\/www.lwops.cn\/index.php\/wp-json\/wp\/v2\/posts\/11476\/revisions"}],"predecessor-version":[{"id":11483,"href":"https:\/\/www.lwops.cn\/index.php\/wp-json\/wp\/v2\/posts\/11476\/revisions\/11483"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.lwops.cn\/index.php\/wp-json\/wp\/v2\/media\/12758"}],"wp:attachment":[{"href":"https:\/\/www.lwops.cn\/index.php\/wp-json\/wp\/v2\/media?parent=11476"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.lwops.cn\/index.php\/wp-json\/wp\/v2\/categories?post=11476"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.lwops.cn\/index.php\/wp-json\/wp\/v2\/tags?post=11476"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}