mirror of
https://github.com/thegeeklab/prometheus-pve-sd.git
synced 2024-11-25 10:50:39 +00:00
48 lines
834 B
Markdown
48 lines
834 B
Markdown
---
|
|
title: Default settings
|
|
---
|
|
|
|
```Shell
|
|
---
|
|
logging:
|
|
# supported log levels: debug|info|warning|error|critical
|
|
level: warning
|
|
# supported log formats: console|json|simple
|
|
format: console
|
|
|
|
metrics:
|
|
enabled: true
|
|
address: "127.0.0.1"
|
|
port: 8000
|
|
|
|
output_file:
|
|
output_file_mode: "0640"
|
|
|
|
loop_delay: 300
|
|
# Run pve sd in a loop and discover hosts every n seconds (as defined in loop_delay).
|
|
# Can be disabled to run disovery only once.
|
|
service: true
|
|
|
|
exclude_state: []
|
|
# needs to be a list of strings
|
|
exclude_vmid: []
|
|
|
|
# can be used to exclude vms by tags (proxmox 6+)
|
|
exclude_tags: []
|
|
|
|
pve:
|
|
server:
|
|
user:
|
|
password:
|
|
auth_timeout: 5
|
|
verify_ssl: true
|
|
|
|
# Example
|
|
# pve:
|
|
# server: proxmox.example.com
|
|
# user: root
|
|
# password: secure
|
|
# auth_timeout: 5
|
|
# verify_ssl: true
|
|
```
|