Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
controller
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
TFS
controller
Commits
a7e1ddfb
Commit
a7e1ddfb
authored
1 year ago
by
Waleed Akbar
Browse files
Options
Downloads
Patches
Plain Diff
Remove "create_kafka_config" message type
parent
eb47527c
No related branches found
No related tags found
2 merge requests
!294
Release TeraFlowSDN 4.0
,
!207
Resolve "(CTTC) Separation of Monitoring"
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/telemetry_frontend/backend/tests/messagesBackend.py
+10
-24
10 additions, 24 deletions
src/telemetry_frontend/backend/tests/messagesBackend.py
with
10 additions
and
24 deletions
src/telemetry_frontend/backend/tests/messagesBackend.py
+
10
−
24
View file @
a7e1ddfb
...
@@ -13,34 +13,20 @@
...
@@ -13,34 +13,20 @@
# limitations under the License.
# limitations under the License.
def
create_kafka_config
():
def
create_kafka_config_a
(
bootstrap_server
:
str
,
exporter_endpoint
:
str
,
kafka_topic
:
str
,
"""
run_duration
:
int
,
fetch_interval
:
int
):
No input parameter is requested
Returns the dict object with Kafka configs
"""
_kafka_configs
=
dict
()
_kafka_configs
[
'
bootstrap_servers
'
]
=
'
127.0.0.1:9092
'
_kafka_configs
[
'
exporter_endpoint
'
]
=
'
http://10.152.183.231:9100/metrics
'
_kafka_configs
[
'
kafka_topic
'
]
=
'
metric-data
'
_kafka_configs
[
'
run_duration
'
]
=
20
_kafka_configs
[
'
fetch_interval
'
]
=
4
return
_kafka_configs
def
create_kafka_config_a
(
bootstrap_server
,
exporter_endpoint
,
kafka_topic
,
run_duration
,
fetch_interval
):
"""
"""
Provide ...
Provide ...
Bootstrap_server IP address as String.
Bootstrap_server IP address as String.
Exporter endpoint with port <http://ip:port(metrics)> address as String.
Exporter endpoint with port <http://ip:port(metrics)> address as String.
Kafka topic name as String.
Kafka topic name as String.
Total duration of the test as
Floa
t.
Total duration of the test as
In
t.
Fetch_interval as
Floa
t.
Fetch_interval as
In
t.
"""
"""
_kafka_configs
=
dict
()
_bootstrap_servers
=
bootstrap_server
_kafka_configs
[
'
bootstrap_servers
'
]
=
bootstrap_server
_exporter_endpoint
=
exporter_endpoint
_kafka_configs
[
'
exporter_endpoint
'
]
=
exporter_endpoint
_kafka_topic
=
kafka_topic
_kafka_configs
[
'
kafka_topic
'
]
=
kafka_topic
_run_duration
=
run_duration
_kafka_configs
[
'
run_duration
'
]
=
run_duration
_fetch_interval
=
fetch_interval
_kafka_configs
[
'
fetch_interval
'
]
=
fetch_interval
return
_kafka_configs
return
_bootstrap_servers
,
_exporter_endpoint
,
_kafka_topic
,
_run_duration
,
_fetch_interval
\ No newline at end of file
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment