Skip to content
Snippets Groups Projects
Commit c5f91c15 authored by Aleksandr Kurbatov's avatar Aleksandr Kurbatov
Browse files

Merge branch 'feature/nat-1135-cflowd' into 'develop'

cflowd: update cache-size and metering-process

See merge request !253
parents 6412e1ad 35ed83b1
No related branches found
No related tags found
1 merge request!253cflowd: update cache-size and metering-process
Pipeline #93236 passed
<cflowd xmlns="urn:nokia.com:sros:ns:yang:sr:conf" xmlns:nc="urn:ietf:params:xml:ns:netconf:base:1.0" xmlns:nokia-attr="urn:nokia.com:sros:ns:yang:sr:attributes" alu:operation="replace">
<cache-size>{{ cflowd.basic.cache_size }}</cache-size>
<cache-size>{{ cflowd.basic.cache_size[router_tier] | default(1000000) }}</cache-size>
<enhanced-distribution>{{ cflowd.basic.enhanced_distribution }}</enhanced-distribution>
<overflow>{{ cflowd.basic.overflow }}</overflow>
<template-retransmit>{{ cflowd.basic.template_retransmit }}</template-retransmit>
......@@ -10,8 +10,10 @@
<sample-profile>
<profile-id>{{ profile.id }}</profile-id>
<sample-rate>{{ profile.sample_rate }}</sample-rate>
{% if router_tier in profile.metering_process_map %}
{% if profile.metering_process_map is defined %}
{% if router_tier in profile.metering_process_map %}
<metering-process>{{ profile.metering_process_map[router_tier] }}</metering-process>
{% endif %}
{% endif %}
</sample-profile>
{% endfor %}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment