เครื่องมือบรรทัดคำสั่งสำหรับ https://monibot.io - เซิร์ฟเวอร์ที่ง่ายดายและการตรวจสอบแอปพลิเคชัน
Moni เป็นเครื่องมือบรรทัดคำสั่งเพื่อโต้ตอบกับ Monibot REST API มันถูกใช้เพื่อ
สืบค้นสุนัขเฝ้าบ้านจาก Monibot
ส่งการเต้นของหัวใจสุนัขเฝ้าบ้านไปที่ Monibot
เครื่องสืบค้นจาก Monibot
ส่งตัวอย่างการใช้ทรัพยากรเครื่อง (CPU/หน่วยความจำ/ดิสก์/นาฬิกา/เครือข่าย) ไปยัง Monibot
ส่งข้อความเครื่อง (เอาต์พุตคำสั่ง) ไปยัง Monibot
เมตริกการค้นหาจาก Monibot
ส่งค่าเมตริกไปที่ Monibot
มันทำงานบน Linux/amd64 และเขียนด้วยภาษา Go ดู https://go.dev/
ดาวน์โหลดไบนารี linux/amd64 ที่สร้างไว้ล่วงหน้าได้จากที่นี่: https://github.com/cvilsmeier/moni/releases/latest
หากคุณไม่ต้องการดาวน์โหลดไบนารีที่สร้างไว้ล่วงหน้า คุณสามารถติดตั้ง moni ได้จากบรรทัดคำสั่ง
$ go install github.com/cvilsmeier/moni@latest
หากคุณไม่ต้องการดาวน์โหลดไบนารีที่สร้างไว้ล่วงหน้า คุณสามารถสร้าง moni ได้จากบรรทัดคำสั่ง
$ git clone https://github.com/cvilsmeier/moni $ cd moni/ $ CGO_ENABLED=0 go build $ ./moni help
$ moni help Moni - A command line tool for https://monibot.io Usage moni [flags] command Flags -url Monibot URL, default is "https://monibot.io". You can set this also via environment variable MONIBOT_URL. -apiKey Monibot API Key, default is "". You can set this also via environment variable MONIBOT_API_KEY (recommended). You can find your API Key in your profile on https://monibot.io. Note: For security, we recommend that you specify the API Key via MONIBOT_API_KEY, and not via -apiKey flag. The flag will show up in 'ps aux' outputs and can be eavesdropped. -trials Max. Send trials, default is 12. You can set this also via environment variable MONIBOT_TRIALS. -delay Delay between trials, default is 5s. You can set this also via environment variable MONIBOT_DELAY. -v Verbose output, default is false. You can set this also via environment variable MONIBOT_VERBOSE ('true' or 'false'). Commands ping Ping the Monibot API. If an error occurs, moni will print that error. It it succeeds, moni will print nothing. watchdogs List heartbeat watchdogs. watchdog <watchdogId> Get heartbeat watchdog by id. heartbeat <watchdogId> [interval] Send a heartbeat. If interval is not specified, moni sends one heartbeat and exits. If interval is specified, moni will stay in the background and send heartbeats in that interval. Min. interval is 5m. machines List machines. machine <machineId> Get machine by id. sample <machineId> <interval> Send resource usage (load/cpu/mem/disk) samples for machine. Moni consults various files (/proc/loadavg, /proc/cpuinfo, etc.) and commands (/usr/bin/free, /usr/bin/df, etc.) to calculate resource usage. Therefore it currently supports linux only. Moni will stay in background and keep sampling in specified interval. Min. interval is 5m. text <machineId> <filename> Send filename as text for machine. Filename can contain arbitrary text, e.g. arbitrary command outputs. It's used for information only, no logic is associated with texts. Moni will send the file as text and then exit. If an error occurs, moni will print an error message. Otherwise moni will print nothing. Max. filesize is 204800 bytes. metrics List metrics. metric <metricId> Get and print metric info. inc <metricId> <value> Increment a counter metric. Value must be a non-negative 64-bit integer value. set <metricId> <value> Set a gauge metric value. Value must be a non-negative 64-bit integer value. values <metricId> <values> Send histogram metric values. Values is a comma-separated list of 'value:count' pairs. Each value is a non-negative 64-bit integer value, each count is an integer value greater or equal to 1. If count is 1, the ':count' part is optional, so values '13:1,14:1' and '13,14' are sematically equal. A specific value may occur multiple times, its counts will then be added together, so values '13:2,13:2' and '13:4' are sematically equal. config Show config values. version Show moni program version. sdk-version Show the monibot-go SDK version moni was built with. help Show this help page. Exit Codes 0 ok 1 error 2 wrong user input
เปลี่ยนชื่อคำสั่งบีทเป็นฮาร์ทบีท
อัพเดตเอกสารคำสั่งค่า
คำสั่งเพิ่มค่าสำหรับการส่งค่าเมตริกฮิสโตแกรม
เพิ่มคำสั่งข้อความสำหรับการส่งข้อความเครื่อง
การเปลี่ยนแปลงที่แตกหัก: ตั้งค่าการเฝ้าสังเกตขั้นต่ำเอาชนะช่วงเวลา 5m
การเปลี่ยนแปลงที่แตกหัก: กำหนดช่วงเวลาตัวอย่างเครื่องขั้นต่ำ 5 ม
เปลี่ยนชื่อคำสั่งและการจัดการช่วงเวลา
เพิ่มการสุ่มตัวอย่างการอ่าน/เขียนดิสก์
เพิ่มการสุ่มตัวอย่างการรับ / ส่งเครือข่าย
รุ่นแรก