├── About.md ├── OpenObserve ├── arch-etcd-s3.png ├── arch-ha.png ├── arch-sled-local.png ├── json1.png ├── metrics-query.png ├── openobserve.md ├── parquet.png ├── prometheus.yaml └── values.yaml ├── README.md ├── cortex ├── config-of-16C128G │ ├── config │ │ ├── cortex.yaml │ │ └── runtime.yaml │ └── prometheus_cortex1.yaml └── cortex-performance-test.md ├── ebpf ├── ebpf │ └── 01.md ├── os-eBPF │ ├── LICENSE │ ├── README.md │ ├── VERSION │ └── sockredir │ │ ├── README.md │ │ ├── bpf_sockops.h │ │ ├── bpf_sockops_v4.c │ │ ├── bpf_sockops_v4.o │ │ ├── bpf_tcpip_bypass.c │ │ ├── bpf_tcpip_bypass.o │ │ ├── load.sh │ │ ├── nperf_latency.sh │ │ ├── nperf_thruput.sh │ │ ├── nperf_trans.sh │ │ ├── test │ │ ├── test.c │ │ └── unload.sh └── 安装bpftool.txt ├── grafana └── .keep ├── images ├── cortex-maintainers.png ├── learn.jpeg ├── mimir-how-does-it-work.svg ├── ooo-compact.png ├── ooo-insert.png ├── ooo-query.png ├── qrcode.jpeg └── qrcode_weixin.jpeg ├── iot-demos ├── README.md ├── clientSDK │ ├── README.md │ ├── build.sh │ ├── config.yaml │ ├── go.mod │ ├── go.sum │ └── mqttclient.go ├── esp8266-modbus-demo │ ├── Arduino_usb_ttl.jpg │ ├── ESP8266.ino │ ├── README.md │ ├── config.h │ ├── esp8266_readdata_from_modbus.png │ ├── modbus-spec&tool │ │ ├── ModbusSlaveSetup.exe │ │ ├── modbus_protocol_ug.pdf │ │ └── modbuspoll注册码.txt │ └── modbusslave_test_software.png ├── esp8266-temperature&smoke-demo │ └── esp8266-code │ │ ├── ESP8266.ino │ │ └── README.md └── esp8266.ino ├── lgtm └── demo.md ├── loki ├── .keep └── play-with-grafana-loki │ └── step1.md ├── mimir ├── basic │ ├── from.md │ └── why.md ├── ooostore │ ├── design.md │ └── prometheus_ooo.md ├── play-with-grafana-mimir │ ├── step1.md │ ├── step2.md │ └── step3.md ├── usecase │ └── hatracker.md └── why-billion-series │ ├── 01-chunk-queue.md │ └── 02-效率爆棚的纵向压缩.md ├── slo ├── basic.md ├── mwmb.md ├── sloth-dashboard.png ├── sloth-demo.png ├── sloth.md └── sloth.png └── tempo └── .keep /About.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafanafans/club/HEAD/About.md -------------------------------------------------------------------------------- /OpenObserve/arch-etcd-s3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafanafans/club/HEAD/OpenObserve/arch-etcd-s3.png -------------------------------------------------------------------------------- /OpenObserve/arch-ha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafanafans/club/HEAD/OpenObserve/arch-ha.png -------------------------------------------------------------------------------- /OpenObserve/arch-sled-local.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafanafans/club/HEAD/OpenObserve/arch-sled-local.png -------------------------------------------------------------------------------- /OpenObserve/json1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafanafans/club/HEAD/OpenObserve/json1.png -------------------------------------------------------------------------------- /OpenObserve/metrics-query.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafanafans/club/HEAD/OpenObserve/metrics-query.png -------------------------------------------------------------------------------- /OpenObserve/openobserve.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafanafans/club/HEAD/OpenObserve/openobserve.md -------------------------------------------------------------------------------- /OpenObserve/parquet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafanafans/club/HEAD/OpenObserve/parquet.png -------------------------------------------------------------------------------- /OpenObserve/prometheus.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafanafans/club/HEAD/OpenObserve/prometheus.yaml -------------------------------------------------------------------------------- /OpenObserve/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafanafans/club/HEAD/OpenObserve/values.yaml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafanafans/club/HEAD/README.md -------------------------------------------------------------------------------- /cortex/config-of-16C128G/config/cortex.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafanafans/club/HEAD/cortex/config-of-16C128G/config/cortex.yaml -------------------------------------------------------------------------------- /cortex/config-of-16C128G/config/runtime.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafanafans/club/HEAD/cortex/config-of-16C128G/config/runtime.yaml -------------------------------------------------------------------------------- /cortex/config-of-16C128G/prometheus_cortex1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafanafans/club/HEAD/cortex/config-of-16C128G/prometheus_cortex1.yaml -------------------------------------------------------------------------------- /cortex/cortex-performance-test.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafanafans/club/HEAD/cortex/cortex-performance-test.md -------------------------------------------------------------------------------- /ebpf/ebpf/01.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafanafans/club/HEAD/ebpf/ebpf/01.md -------------------------------------------------------------------------------- /ebpf/os-eBPF/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafanafans/club/HEAD/ebpf/os-eBPF/LICENSE -------------------------------------------------------------------------------- /ebpf/os-eBPF/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafanafans/club/HEAD/ebpf/os-eBPF/README.md -------------------------------------------------------------------------------- /ebpf/os-eBPF/VERSION: -------------------------------------------------------------------------------- 1 | 0.0.1 2 | -------------------------------------------------------------------------------- /ebpf/os-eBPF/sockredir/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafanafans/club/HEAD/ebpf/os-eBPF/sockredir/README.md -------------------------------------------------------------------------------- /ebpf/os-eBPF/sockredir/bpf_sockops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafanafans/club/HEAD/ebpf/os-eBPF/sockredir/bpf_sockops.h -------------------------------------------------------------------------------- /ebpf/os-eBPF/sockredir/bpf_sockops_v4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafanafans/club/HEAD/ebpf/os-eBPF/sockredir/bpf_sockops_v4.c -------------------------------------------------------------------------------- /ebpf/os-eBPF/sockredir/bpf_sockops_v4.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafanafans/club/HEAD/ebpf/os-eBPF/sockredir/bpf_sockops_v4.o -------------------------------------------------------------------------------- /ebpf/os-eBPF/sockredir/bpf_tcpip_bypass.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafanafans/club/HEAD/ebpf/os-eBPF/sockredir/bpf_tcpip_bypass.c -------------------------------------------------------------------------------- /ebpf/os-eBPF/sockredir/bpf_tcpip_bypass.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafanafans/club/HEAD/ebpf/os-eBPF/sockredir/bpf_tcpip_bypass.o -------------------------------------------------------------------------------- /ebpf/os-eBPF/sockredir/load.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafanafans/club/HEAD/ebpf/os-eBPF/sockredir/load.sh -------------------------------------------------------------------------------- /ebpf/os-eBPF/sockredir/nperf_latency.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafanafans/club/HEAD/ebpf/os-eBPF/sockredir/nperf_latency.sh -------------------------------------------------------------------------------- /ebpf/os-eBPF/sockredir/nperf_thruput.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafanafans/club/HEAD/ebpf/os-eBPF/sockredir/nperf_thruput.sh -------------------------------------------------------------------------------- /ebpf/os-eBPF/sockredir/nperf_trans.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafanafans/club/HEAD/ebpf/os-eBPF/sockredir/nperf_trans.sh -------------------------------------------------------------------------------- /ebpf/os-eBPF/sockredir/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafanafans/club/HEAD/ebpf/os-eBPF/sockredir/test -------------------------------------------------------------------------------- /ebpf/os-eBPF/sockredir/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafanafans/club/HEAD/ebpf/os-eBPF/sockredir/test.c -------------------------------------------------------------------------------- /ebpf/os-eBPF/sockredir/unload.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafanafans/club/HEAD/ebpf/os-eBPF/sockredir/unload.sh -------------------------------------------------------------------------------- /ebpf/安装bpftool.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafanafans/club/HEAD/ebpf/安装bpftool.txt -------------------------------------------------------------------------------- /grafana/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /images/cortex-maintainers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafanafans/club/HEAD/images/cortex-maintainers.png -------------------------------------------------------------------------------- /images/learn.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafanafans/club/HEAD/images/learn.jpeg -------------------------------------------------------------------------------- /images/mimir-how-does-it-work.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafanafans/club/HEAD/images/mimir-how-does-it-work.svg -------------------------------------------------------------------------------- /images/ooo-compact.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafanafans/club/HEAD/images/ooo-compact.png -------------------------------------------------------------------------------- /images/ooo-insert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafanafans/club/HEAD/images/ooo-insert.png -------------------------------------------------------------------------------- /images/ooo-query.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafanafans/club/HEAD/images/ooo-query.png -------------------------------------------------------------------------------- /images/qrcode.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafanafans/club/HEAD/images/qrcode.jpeg -------------------------------------------------------------------------------- /images/qrcode_weixin.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafanafans/club/HEAD/images/qrcode_weixin.jpeg -------------------------------------------------------------------------------- /iot-demos/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafanafans/club/HEAD/iot-demos/README.md -------------------------------------------------------------------------------- /iot-demos/clientSDK/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafanafans/club/HEAD/iot-demos/clientSDK/README.md -------------------------------------------------------------------------------- /iot-demos/clientSDK/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafanafans/club/HEAD/iot-demos/clientSDK/build.sh -------------------------------------------------------------------------------- /iot-demos/clientSDK/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafanafans/club/HEAD/iot-demos/clientSDK/config.yaml -------------------------------------------------------------------------------- /iot-demos/clientSDK/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafanafans/club/HEAD/iot-demos/clientSDK/go.mod -------------------------------------------------------------------------------- /iot-demos/clientSDK/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafanafans/club/HEAD/iot-demos/clientSDK/go.sum -------------------------------------------------------------------------------- /iot-demos/clientSDK/mqttclient.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafanafans/club/HEAD/iot-demos/clientSDK/mqttclient.go -------------------------------------------------------------------------------- /iot-demos/esp8266-modbus-demo/Arduino_usb_ttl.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafanafans/club/HEAD/iot-demos/esp8266-modbus-demo/Arduino_usb_ttl.jpg -------------------------------------------------------------------------------- /iot-demos/esp8266-modbus-demo/ESP8266.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafanafans/club/HEAD/iot-demos/esp8266-modbus-demo/ESP8266.ino -------------------------------------------------------------------------------- /iot-demos/esp8266-modbus-demo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafanafans/club/HEAD/iot-demos/esp8266-modbus-demo/README.md -------------------------------------------------------------------------------- /iot-demos/esp8266-modbus-demo/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafanafans/club/HEAD/iot-demos/esp8266-modbus-demo/config.h -------------------------------------------------------------------------------- /iot-demos/esp8266-modbus-demo/esp8266_readdata_from_modbus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafanafans/club/HEAD/iot-demos/esp8266-modbus-demo/esp8266_readdata_from_modbus.png -------------------------------------------------------------------------------- /iot-demos/esp8266-modbus-demo/modbus-spec&tool/ModbusSlaveSetup.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafanafans/club/HEAD/iot-demos/esp8266-modbus-demo/modbus-spec&tool/ModbusSlaveSetup.exe -------------------------------------------------------------------------------- /iot-demos/esp8266-modbus-demo/modbus-spec&tool/modbus_protocol_ug.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafanafans/club/HEAD/iot-demos/esp8266-modbus-demo/modbus-spec&tool/modbus_protocol_ug.pdf -------------------------------------------------------------------------------- /iot-demos/esp8266-modbus-demo/modbus-spec&tool/modbuspoll注册码.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafanafans/club/HEAD/iot-demos/esp8266-modbus-demo/modbus-spec&tool/modbuspoll注册码.txt -------------------------------------------------------------------------------- /iot-demos/esp8266-modbus-demo/modbusslave_test_software.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafanafans/club/HEAD/iot-demos/esp8266-modbus-demo/modbusslave_test_software.png -------------------------------------------------------------------------------- /iot-demos/esp8266-temperature&smoke-demo/esp8266-code/ESP8266.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafanafans/club/HEAD/iot-demos/esp8266-temperature&smoke-demo/esp8266-code/ESP8266.ino -------------------------------------------------------------------------------- /iot-demos/esp8266-temperature&smoke-demo/esp8266-code/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafanafans/club/HEAD/iot-demos/esp8266-temperature&smoke-demo/esp8266-code/README.md -------------------------------------------------------------------------------- /iot-demos/esp8266.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafanafans/club/HEAD/iot-demos/esp8266.ino -------------------------------------------------------------------------------- /lgtm/demo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafanafans/club/HEAD/lgtm/demo.md -------------------------------------------------------------------------------- /loki/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /loki/play-with-grafana-loki/step1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafanafans/club/HEAD/loki/play-with-grafana-loki/step1.md -------------------------------------------------------------------------------- /mimir/basic/from.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafanafans/club/HEAD/mimir/basic/from.md -------------------------------------------------------------------------------- /mimir/basic/why.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafanafans/club/HEAD/mimir/basic/why.md -------------------------------------------------------------------------------- /mimir/ooostore/design.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafanafans/club/HEAD/mimir/ooostore/design.md -------------------------------------------------------------------------------- /mimir/ooostore/prometheus_ooo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafanafans/club/HEAD/mimir/ooostore/prometheus_ooo.md -------------------------------------------------------------------------------- /mimir/play-with-grafana-mimir/step1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafanafans/club/HEAD/mimir/play-with-grafana-mimir/step1.md -------------------------------------------------------------------------------- /mimir/play-with-grafana-mimir/step2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafanafans/club/HEAD/mimir/play-with-grafana-mimir/step2.md -------------------------------------------------------------------------------- /mimir/play-with-grafana-mimir/step3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafanafans/club/HEAD/mimir/play-with-grafana-mimir/step3.md -------------------------------------------------------------------------------- /mimir/usecase/hatracker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafanafans/club/HEAD/mimir/usecase/hatracker.md -------------------------------------------------------------------------------- /mimir/why-billion-series/01-chunk-queue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafanafans/club/HEAD/mimir/why-billion-series/01-chunk-queue.md -------------------------------------------------------------------------------- /mimir/why-billion-series/02-效率爆棚的纵向压缩.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafanafans/club/HEAD/mimir/why-billion-series/02-效率爆棚的纵向压缩.md -------------------------------------------------------------------------------- /slo/basic.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slo/mwmb.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafanafans/club/HEAD/slo/mwmb.md -------------------------------------------------------------------------------- /slo/sloth-dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafanafans/club/HEAD/slo/sloth-dashboard.png -------------------------------------------------------------------------------- /slo/sloth-demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafanafans/club/HEAD/slo/sloth-demo.png -------------------------------------------------------------------------------- /slo/sloth.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafanafans/club/HEAD/slo/sloth.md -------------------------------------------------------------------------------- /slo/sloth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafanafans/club/HEAD/slo/sloth.png -------------------------------------------------------------------------------- /tempo/.keep: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------