上一页 1 2 3 4 5 6 7 ··· 9 下一页
摘要: /*! * MindPlus * uno * */ // 主程序开始 void setup() { } void loop() { for (int index = 0; index < 3; index++) { digitalWrite(13, HIGH); delay(150); digita 阅读全文
posted @ 2022-08-05 10:16 alexhe 阅读(344) 评论(0) 推荐(0) 编辑
摘要: // 主程序开始 void setup() { } void loop() { if (digitalRead(7)) { digitalWrite(13, HIGH); } else { digitalWrite(13, LOW); } } 记得按键脚上连一个电阻,去除空气产生的电压浮动 阅读全文
posted @ 2022-08-05 09:30 alexhe 阅读(26) 评论(0) 推荐(0) 编辑
摘要: // 主程序开始 void setup() { } void loop() { digitalWrite(13, HIGH); delay(1000); digitalWrite(13, LOW); delay(1000); } 阅读全文
posted @ 2022-08-05 09:14 alexhe 阅读(12) 评论(0) 推荐(0) 编辑
摘要: 登陆: curl -X POST -H 'Content-Type: application/json' -d '{"jsonrpc":"2.0","method":"user.login","params":{"user":"Admin","password":"zabbix"},"auth":n 阅读全文
posted @ 2021-09-16 09:20 alexhe 阅读(69) 评论(0) 推荐(0) 编辑
摘要: 版本3.11 cassandra:3.11 CASSANDRA_CLUSTER_NAME alexcluster CASSANDRA_DC alexdc CASSANDRA_ENDPOINT_SNITCH GossipingPropertyFileSnitch CASSANDRA_RACK alex 阅读全文
posted @ 2021-02-23 10:33 alexhe 阅读(441) 评论(0) 推荐(0) 编辑
摘要: {job=~”apache|syslog”} <- show me logs where the job is apache **OR** syslog {job=”apache”} |= “11.11.11.11” #搜job=apache的11.11.11.11( |= “text”, |~ “ 阅读全文
posted @ 2021-01-13 10:48 alexhe 阅读(1178) 评论(0) 推荐(0) 编辑
摘要: logstash.conf: 10.10.10.149 给三部弄windows日志 input { beats { port => 5044 } } filter { ruby { code => "event.set('timestamp', event.get('@timestamp').tim 阅读全文
posted @ 2021-01-07 15:07 alexhe 阅读(663) 评论(0) 推荐(0) 编辑
摘要: rancher api: https://10.10.10.90/k8s/clusters/c-x985z/api/v1/namespaces/cattle-prometheus/services/expose-kubernetes-metrics:8080/proxy/ https://10.11 阅读全文
posted @ 2020-12-24 09:25 alexhe 阅读(516) 评论(0) 推荐(0) 编辑
摘要: cadvisor监控: curl -k https://10.10.10.95:10250/metrics -H "Authorization: Bearer token-qz4w7:b5s2kwwsh8v47xq8gl7b97zrjgjkb7srr78n2wxrmmvlvc8gqgd7fr" ca 阅读全文
posted @ 2020-12-11 17:31 alexhe 阅读(945) 评论(0) 推荐(0) 编辑
摘要: 启动程序介绍: ExecStart=/usr/local/prometheus/prometheus #启动运行prometheus程序所在的路径--config.file=/usr/local/prometheus/prometheus.yml #指定prometheus.yml配置文件路径--s 阅读全文
posted @ 2020-10-28 17:25 alexhe 阅读(488) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 ··· 9 下一页