Skip to content

0.3.5 / 2024-02-11

Compare
Choose a tag to compare
@peekjef72 peekjef72 released this 11 Feb 10:15
  • fix panic when var is not found for metric
  • fix target parsing when exporter is used in proxy mode: allow formats
    • target=host.domain : use default scheme and default port
    • target=host.domain:port : use default scheme
  • add status value for collector_status metric :
    • 0: error
    • 1: ok
    • 2: invalid log
    • 3: timeout
  • add new "template" format: $varname that allow a direct accept to variable in symbols table. it is easier to use this format for loop interaction.
    e.g.:
    loop: "{{ .item.list | toRawJson }}"
    
    can be replaced by:
    e.g.:
    loop: $item.list
    
  • add a new template func "lookupAddr" to retrive DNS hostname from ip address.
  • adapt contribs (netscaler/veeam) with new features.