/etc/bmon.conf is in bmon 1:3.1-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 | /*
* read_interval = 1.0
* rate_interval = 1.0
* variance = 0.1
* history_variance = 0.1
* sleep_time = 20000
* lifetime = 30.0
* show_all = true
* policy = ""
*/
/*
* element eth0 {
* description = { "My description" }
* rxmax = { 10000 }
* txmax = { 10000 }
* max = { 12500000 }
* }
*/
/*
* Default configuration
*
* The following definitions is what is compiled into bmon and used
* by default.
*
* unit byte {
* variant default {
* div = { 1, 1024, 1048576, 1073741824, 1099511627776}
* txt = { "B", "KiB", "MiB", "GiB", "TiB" }
* }
* variant si {
* div = { 1, 1000, 1000000, 1000000000, 1000000000000 }
* txt = { "B", "KB", "MB", "GB", "TB" }
* }
* }
*
* unit bit {
* variant default {
* div = { 1, 1024, 1048576, 1073741824, 1099511627776}
* txt = { "b", "Kib", "Mib", "Gib", "TiB" }
* }
* variant si {
* div = { 1, 1000, 1000000, 1000000000, 1000000000000 }
* txt = { "b", "Kb", "Mb", "Gb", "Tb" }
* }
* }
*
* unit number {
* variant default {
* div = { 1, 1000, 1000000, 1000000000, 1000000000000 }
* txt = { "", "K", "M", "G", "T" }
* }
* }
* unit percent {
* variant default {
* div = { 1. }
* txt = { "%" }
* }
* }
*
* history second {
* interval = { 1. }
* size = { 60 }
* }
*
* history minute {
* interval = { 60. }
* size = { 60 }
* }
*
* history hour {
* interval = { 3600. }
* size = { 60 }
* }
*
* history day {
* interval = { 86400. }
* size = { 60 }
* }
*/
|