Filesystem Size Used Avail Use% Mounted on
/dev/vda1 19G 617M 17G 4% /
devtmpfs 911M 0 911M 0% /dev
tmpfs 918M 0 918M 0% /dev/shm
tmpfs 918M 17M 902M 2% /run
tmpfs 918M 0 918M 0% /sys/fs/cgroup
/dev/vda15 99M 3.7M 95M 4% /boot/efi
tmpfs 184M 0 184M 0% /run/user/0
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| container_cpu_load_average_10s | |
| container_cpu_system_seconds_total | |
| container_cpu_usage_seconds_total | |
| container_cpu_user_seconds_total | |
| container_fs_inodes_free | |
| container_fs_inodes_total | |
| container_fs_io_current | |
| container_fs_io_time_seconds_total | |
| container_fs_io_time_weighted_seconds_total | |
| container_fs_limit_bytes |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const promptAll = all => { | |
| const input = require("readline").createInterface({ | |
| input: process.stdin, | |
| output: process.stdout, | |
| }) | |
| return all.reduce((promise, key) => { | |
| return promise.then(values => { | |
| return new Promise(resolve => { | |
| input.question(`Insert value for "${key}" : `, value => { | |
| values[key] = value |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| factorio_tick 489000 | |
| # HELP factorio_item_production_input items produced | |
| # TYPE factorio_item_production_input gauge | |
| factorio_item_production_input{force="player",name="wooden-chest"} 9 | |
| factorio_item_production_input{force="player",name="bi-wooden-chest-large"} 1 | |
| factorio_item_production_input{force="player",name="iron-chest"} 5 | |
| factorio_item_production_input{force="player",name="transport-belt"} 304 | |
| factorio_item_production_input{force="player",name="splitter"} 1 | |
| factorio_item_production_input{force="player",name="burner-inserter"} 2 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| version: "3" | |
| services: | |
| test: | |
| image: nginx |
OlderNewer