...
- Log in to the API Manager's Management Console (
https://localhost:9443/carbon
) and select Browse under the Resources menu. - Select the file:
/_system/governance/apimgt/applicationdata/tiers.xml
. In the Contents panel, click Edit as text link and the throttling policy opens.
You can add a new policy configuration by editing the XML code. For example, we have added a new tier called
Platinum
by including the following XML code block soon after the<throttle:MediatorThrottleAssertion>
element.
Tier DisplayName : You can add this optional attribute to each throttle ID of tiers.xml file in order to decouple the throttle policy name defined in tiers.xml from the tier name showing in APIPublisher/Store UIs. That is, a user can add a different throttle display name to appear in APIPublisher/Store UIs without changing the throttle ID policy name. The configuration below has a displayName asplatino
for the throttle valueplatinum
. This value is displayed in APIPublisher/Store apps.
Tier Attributes : In the configuration below, there's a commented out XML section starting from the XML tag<throttle:Attributes>
. You can use it to define additional attributes related to each throttling tier definition. For example, if the throttling tierPlatinum
has attributes calledPaymentPlan
andAvailability
, first uncomment the<throttle:Attributes>
section and then define the new attributes as follows:Code Block <wsp:Policy> <throttle:ID throttle:type="ROLE" throttle:displayName="platino">Platinum</throttle:ID> <wsp:Policy> <throttle:Control> <wsp:Policy> <throttle:MaximumCount>50</throttle:MaximumCount> <throttle:UnitTime>60000</throttle:UnitTime> <!--It's possible to define tier level attributes as below for each tier level.For eg:Payment Plan for a tier--> <wsp:Policy> <throttle:Attributes> <!--throttle:Attribute1>xxxx</throttle:Attribute1--> <!--throttle:Attribute2>xxxx</throttle:Attribute2--> <throttle:PaymentPlan>monthly</throttle:PaymentPlan> <throttle:Availability>FullTime</throttle:Availability> </throttle:Attributes> </wsp:Policy> </wsp:Policy> </throttle:Control> </wsp:Policy> </wsp:Policy>
After the edits, click Save Content.
...
Log in to the Management Console and change the /_system/governance/apimgt/applicationdata/app-tiers.xml
registry resource, in the same way described here.
Adding a new resource-level throttling tier
Log in to the Management Console and change the /_system/governance/apimgt/applicationdata/appres-tiers.xml
registry resource, in the same way described here .