Table of Contents |
---|
In addition to the Abiquo offers standard resource metrics offered by Abiquo, and you can also define your own custom accounting resource metrics. These metrics can be defined from existing data in the Abiquo database as described in this document. You can define custom metrics using Abiquo data or from another source. For example, if
Use case to account for network bandwidth usage
If you have access of OpenFlow or NetFlow Netflow network data for your Abiquo environmentplatform, you can import consolidated network data into a table /schema that is accessible to or schema for the Abiquo database. Then you can create Create a custom resource definition so that for it. Abiquo will reference read the network data and create custom network usage records in the Abiquo accounting_event_detail table. This will extend the current accounting system to account for You can then use this data to bill your customers for their network bandwidth usage.
Overview
- The UpdateAccounting stored procedure (located in the ‘kinton’ schema) is invokedruns.
- The UpdateAccounting procedure loops around, processing processes one account period at a time.
- When processing an account period, It runs the ‘GenerateAccountingPeriodDataExt’ stored procedure is invoked to process the period:
- A number of It creates temporary tables are created which contain with a subset of data from the accounting_event_... tables , effectively including only rows relevant to for the time period being generated.A
- It creates a temporary table is created to hold unconsolidated accounting_event_detail data, which is populated with data from the temporary accounting_event_... tables
- The It consolidates the unconsolidated temporary data is then consolidated into the main accounting_event_detail table by calling the ‘FLUSH_TMP_ACCOUNTING_EVENT_DETAIL’ stored procedure. The consolidation process works by identifying any duplicate resource definitions for the accounting period, and for each duplicate
- For each duplicate resource usage it accounts for the MAXIMUM resource identified.
- For example, if the number of CPUs is increased from 4 to 6 CPUs on a VM during the account period, then two rows will exist in the accounting_event_vm table for that VM.
- The consolidation process identifies the maximum CPU used 6, and accounts for that.
Any custom resources defined are processed when When the above ‘core’ resources have been processed for a given account period . At that point, the the platform process the custom resources. The accounting process looks for a well-known the custom stored procedure , which if found, is invoked and runs it with details of the account period being processed.
The CUSTOM_GENERATE_ACCOUNTING_DATA_V1 stored procedure
The CUSTOM_GENERATE_ACCOUNTING_DATA_V1 stored procedure is the entry point for
generating custom accounting data. The
The procedure should be defined as follows:
Code Block |
---|
CREATE PROCEDURE kinton_accounting.CUSTOM_GENERATE_ACCOUNTING_DATA_V1 (IN period_start TIMESTAMP, IN period_end TIMESTAMP, IN period_hours INTEGER, IN granularity_hours INTEGER) NOT DETERMINISTIC SQL SECURITY DEFINER BEGIN # Write any custom metrics to the temporary table # ... # Then Flush them to the permanent table: CALL FLUSH_TMP_ACCOUNTING_EVENT_DETAIL(); END |
Note that there is a To define a custom stored procedure, start with the template version of the CUSTOM_GENERATE_ACCOUNTING_DATA_TEMPLATE_V1 procedure defined within the kinton_accounting schema, which can be used as the basis of any custom procedure.
When invoked, you run the custom stored procedure, it has access to the temporary accounting_event_... tables, and also to the (empty) tmp_accounting_event_detail table which holds unconsolidated temporary data. The custom stored procedure may access any Abiquo database data that it likes (as because it is running in the context of the Abiquo system) and use it populate the unconsolidated temporary table. Subject to Depending on availability and configuration, it can also be used to the custom stored procedure can access non-Abiquo DBMS data too. FinallyFinally, as the last thing it does, the custom procedure should call the accounting procedure used to flush the data from the temporary table into the main accounting table, which will automatically consolidate data in the process.
...
Idenity custom resource types
...
for Abiquo
Abiquo needs to uniquely identify custom accounting resources must be uniquely identifiable by their resource name and resource ID. Therefore, in order to identify custom usages and And it will need to avoid clashes with any further extensions to the core Abiquo accounting resources, custom resource IDs MUST be allocated an ID in the numeric range -1 through -127.
Additionally, note that resource name is stored . Abiquo stores resource names in the accounting_event_detail table (and its temporary equivalent table) using a name ID rather than the resource name itself. Therefore, you should ensure that the resource name is correctly added to the name table using the ‘ABQ
- Give each custom resource a unique name
- Set a unique custom resource IDs as a numeric value in the range of -1 to -127
- Use the 'ABQ_OBJECT_NAME_TO_
...
- ID' function to add the reource name to the name table
- If any of the core accounting resources are disabled, add the names of VMs, VApps, VDCs, and Enterprises
...
- to the appropriate name tables
...
Calculating the correct number of
...
resources for the account period granularity
The accounting process now facilitates flexible accounting periods and granularities of resource usage. Clearly, with custom accounting metrics, resource usage can be accounted in an appropriate mechanism for that resource.
Since the accounting granularity is never smaller than one hour, internally, Abiquo represents the granularity in hours, and this can provide an easy way to calculate a count of resource usage for a resource, assuming that the resource has been in use for the entire accounting period. For example, to count the number of CPUs used by a given VM over the account period, you can perform the following simple calculation:
Code Block |
---|
Number_of_VM_CPUs * (Account_Period_Hours / Account_Period_Granularity_Hours) |
Abiquo upgrades and stored procedure handling
The Abiquo product will never overwrite or update any existing copy of a custom stored procedure during an upgrade. However, in the case that the existing procedure is known to be no longer compatible with the newer version of Abiquo, then the expected version of the stored procedure will be incremented and the old procedure will no longer be called - the old procedure will need to be adjusted to the required format of the new stored procedure before it will be invoked by the accounting procedure.
An example custom accounting metric
This section defines a simple customer accounting stored procedure, which should demonstrate how to use existing Abiquo DBMS data to generate additional accounting usage metrics. The example below shows how the data in the acccounting_event_vm table can be used to generate an accounting metric to count which indicates the number of VMs hosted in an Abiquo HA enabled environment (which may require a premium charge). The example procedure is given below:
...