Skip to content
Snippets Groups Projects
Select Git revision
  • f78c00929e3e408ae4a9727d91a358cf1b907d38
  • main default protected
  • v0.1
3 results

dynamic_values.ini

Blame
  • dynamic_values.ini 853 B
    ; =======================================================================
    ;
    ; APPMONITOR CLI CLIENT
    ;
    ; to understand the entries of metadata see JSON in 
    ; <https://os-docs.iml.unibe.ch/appmonitor/Client/Description_of_response.html>
    ;
    ; for the checks see its parameters
    ; <https://os-docs.iml.unibe.ch/appmonitor/PHP_client/Plugins/Checks/index.html>
    ;
    ; =======================================================================
    
    ; -----------------------------------------------------------------------
    ; CHECKS
    ; -----------------------------------------------------------------------
    
    ["hello plugin"]
    description='I test a dynamic value USER = ${USER}'
    function="hello"
    
    ; to have dynamic values in params do not use JSON but array syntax
    params[message]="Here is ${USER}"
    
    ; -----------------------------------------------------------------------