| 15 | }; |
| 16 | |
| 17 | export interface Conf { |
| 18 | Host: string; |
| 19 | Port: string; |
| 20 | Theme: string; |
| 21 | Color: string; |
| 22 | DirPath: string; |
| 23 | Timeout: number; |
| 24 | NodePath: string; |
| 25 | LogLevel: string; |
| 26 | Ifaces: string; |
| 27 | ArpArgs: string; |
| 28 | ArpStrs: string[]; |
| 29 | TrimHist: number; |
| 30 | ShoutURL: string; |
| 31 | UseDB: string; |
| 32 | PGConnect: string; |
| 33 | // InfluxDB |
| 34 | InfluxEnable: boolean; |
| 35 | InfluxAddr: string; |
| 36 | InfluxToken: string; |
| 37 | InfluxOrg: string; |
| 38 | InfluxBucket: string; |
| 39 | InfluxSkipTLS: boolean; |
| 40 | // Prometheus |
| 41 | PrometheusEnable: boolean; |
| 42 | }; |
| 43 | |
| 44 | export const emptyHost:Host = { |
| 45 | ID: 0, |
nothing calls this directly
no outgoing calls
no test coverage detected