Skip to content

Commit

Permalink
version 1.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
guilhemmarchand committed Oct 22, 2018
1 parent 814c598 commit 76eb68b
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 3 deletions.
2 changes: 1 addition & 1 deletion DA-ITSI-TELEGRAF-KAFKA/default/app.conf
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ is_configured = 0

[launcher]
author = Guilhem Marchand
version = 1.0.0
version = 1.0.1
description = The Apache Kafka module for ITSI provides the best end to end monitoring for Kafka deployments leveraging Influxdata Telegraf

[ui]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
<single>
<search base="sink_task_state_summary">
<query>fields connector-task.status | rename connector-task.status as integer_status
| eval status=case(integer_status=1, "running", integer_status=2, "unassigned", integer_status=3, "failed", integer_status=4, "destroyed")
| eval status=case(integer_status=0, "paused", integer_status=1, "running", integer_status=2, "unassigned", integer_status=3, "failed", integer_status=4, "destroyed")
| rangemap field=integer_status low=1-1 high=2-4 default=severe | fields status, range</query>
</search>
<option name="colorBy">value</option>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
<single>
<search base="source_task_state_summary">
<query>fields connector-task.status | rename connector-task.status as integer_status
| eval status=case(integer_status=1, "running", integer_status=2, "unassigned", integer_status=3, "failed", integer_status=4, "destroyed")
| eval status=case(integer_status=0, "paused", integer_status=1, "running", integer_status=2, "unassigned", integer_status=3, "failed", integer_status=4, "destroyed")
| rangemap field=integer_status low=1-1 high=2-4 default=severe | fields status, range</query>
</search>
<option name="colorBy">value</option>
Expand Down
Binary file removed DA-ITSI-TELEGRAF-KAFKA_100.tgz
Binary file not shown.
Binary file added DA-ITSI-TELEGRAF-KAFKA_101.tgz
Binary file not shown.
5 changes: 5 additions & 0 deletions docs/releasenotes.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
Release notes
#############

Version 1.0.1
=============

- fix: error in state of Source/Sink connector in dashboards

Version 1.0.0
=============

Expand Down

0 comments on commit 76eb68b

Please sign in to comment.