Skip to content
Snippets Groups Projects
Select Git revision
  • d644b2dcb376dbadc5b8d67f70c6ae8754d23ee2
  • master default protected
  • v1.0.23
  • v1.0.19
  • v1.0.35
  • v1.0.18
  • v1.0.15
  • v1.0.12
  • v1.0.11
  • v.1.0.10
  • v1.0.9
  • v1.0.8
  • v1.0.7
  • v1.0.2
  • v1.0.1
15 results

README.md

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}"
    
    ; -----------------------------------------------------------------------