Migration of Existing PHP Scripts to Script Server

If you have other PHP scripts that you wish to migrate, you must follow the steps below to migrate your scripts to the PHP Script Server required format.

Script File Changes

Each PHP Script file must be changed to the new Script Server format. The changes are not dramatic, but required for the proper operation of the PHP Script Server. Follow the steps below to complete.

  1. Copy you existing script to a new name. The name must begin "ss_" followed by your script name. The "ss_" identifies the script as being a script server variety of the a PHP script. For example, if you previously had a script called "get_mysql_stats.php", it's new name would be "ss_get_mysql_stats.php".

  2. Edit the new PHP script and add the following required lines to the file, where "ss_myfunction" is the same as your filename.

    <?php
    $no_http_headers = true;
    
    /* display No errors */
    error_reporting(E_ERROR);
    
    include_once(dirname(__FILE__) . "/../include/config.php");
    include_once(dirname(__FILE__) . "/../lib/snmp.php");
    
    if (!isset($called_by_script_server)) {
    	array_shift($_SERVER["argv"]);
    	print call_user_func_array("ss_myfunction", $_SERVER["argv"]);
    }
  3. What was originally just mainline code, must be replaced with a function name. For example, if your program previously contained the following three lines of code:

    <?php
    $a = 100;
    $b = $a / 10;
    print $b;
    ?>

    Would become:

    function ss_myfunction() {
    	$a = 100;
    	$b = $a / 10;
    	Print $b;
    }
  4. If you have any additional functions declared within your script file, you must prefix them to make them unique amongst all functions. Our recommendation would be to prefix all functions with the name of the main function. For example if you have a function called "meme" you would rename it to "ss_myfunction_meme". This guarantee's correct Script Server functionality.

  5. The last step is to change the function call that could have traditionally returned the value to the Cacti poller using the PRINT function. You must change that line or lines in your code to utilize the RETURN function instead. However, this does not apply to PRINT statements that are not called from the Poller. For a simple script, this results in

    function ss_myfunction() {
    	$a = 100;
    	$b = $a / 10;
    	Return $b;
    }

    Be careful, when writing Script Server Data Queries. Use the RETURN function for returning results of the GET operation. But use PRINT for INDEX and QUERY operations, e.g.

    	if (($cmd == "index")) {
    		...
    		print $some_index_data . "\n";
    		}
    	} elseif ($cmd == "query") {
    		...
    		print $some_query_data . "\n";
    	} elseif ($cmd == "get") {
    		...
    		result $some_get_data;
    }
    						

XML File Changes

If you are using a "Script Query" type function, then you must also change your XML file. Please reference the XML files in the <path_cacti>/resource/script_server directory for the specifics related to your required modifications. However, you may also follow the instructions below:

  1. Modify the <script_path> tag. Change it from:

    <script_path>|path_php_binary| -q |path_cacti|/scripts/myfucntion.php</script_path>

    to simply the following:

    <script_path>|path_cacti|/scripts/ss_myfunction.php</script_path>
  2. Add the following two XML tags below the <script_path> tag. Replace ss_myfunction with your function name:

    <script_function>ss_myfunction</script_function>
    <script_server>php</script_server>
  3. Save the XML file.

Data Query & Data Template Changes

Your Data Queries and Data Templates must be also changed. Although somewhat self explanatory by now, you must make the following changes:

  1. Change it's Input Method to "Get Script Server Data" or "Get Script Server Data (Index)" depending on it's type.

    Change the XML file path to point to the new XML file in the <path_cacti>/resources/script_server/*.xml path.

    For all data templates that use the data query you must change their "Data Input Method" accordingly.

Your final step is to go to the System Utilities and Clear Poller Cache to apply the new settings. If you script is operating correctly, you should now be migrated to the script server.