Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
A
atlas
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
dataplatform
atlas
Commits
6d71f14a
Commit
6d71f14a
authored
Jul 22, 2019
by
Saqeeb Shaikh
Committed by
nixonrodrigues
Jul 25, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ATLAS-3344-Atlas Metrics to include topic partition wise additional information.
Signed-off-by:
nixonrodrigues
<
nixon@apache.org
>
parent
a876e697
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
49 additions
and
43 deletions
+49
-43
Statistics_Topic_Offset_table_tmpl.html
...js/templates/site/Statistics_Topic_Offset_table_tmpl.html
+5
-3
Statistics_tmpl.html
dashboardv2/public/js/templates/site/Statistics_tmpl.html
+2
-13
Enums.js
dashboardv2/public/js/utils/Enums.js
+3
-1
Statistics.js
dashboardv2/public/js/views/site/Statistics.js
+6
-17
AtlasMetrics.java
...ain/java/org/apache/atlas/model/metrics/AtlasMetrics.java
+1
-1
AtlasMetricsUtil.java
...src/main/java/org/apache/atlas/util/AtlasMetricsUtil.java
+32
-8
No files found.
dashboardv2/public/js/templates/site/Statistics_Topic_Offset_table_tmpl.html
View file @
6d71f14a
...
@@ -16,10 +16,12 @@
...
@@ -16,10 +16,12 @@
-->
-->
<thead>
<thead>
<tr>
<tr>
<th>
Kafka Topic
</th>
<th>
Kafka Topic-Partition
</th>
<th>
Current Offset
</th>
<th>
Start Offset
</th>
<th>
Start Offset
</th>
<th>
Current Offset
</th>
<th>
Processed
</th>
<th>
Failed
</th>
<th>
Last Message Processed Time
</th>
</tr>
</tr>
</thead>
</thead>
{{#if data}}
{{#if data}}
...
...
dashboardv2/public/js/templates/site/Statistics_tmpl.html
View file @
6d71f14a
...
@@ -65,26 +65,16 @@
...
@@ -65,26 +65,16 @@
<div
class=
"card-container panel panel-primary"
>
<div
class=
"card-container panel panel-primary"
>
<div
class=
"panel-heading"
>
Notification Details
</div>
<div
class=
"panel-heading"
>
Notification Details
</div>
<div
class=
"panel-body"
>
<div
class=
"panel-body"
>
<table
class=
"table stat-table"
>
<table
data-id=
"offset-card"
class=
"table stat-table notification-table table-striped "
>
<tbody
data-id=
"notification-small-card"
>
<tr
class=
"empty text-center"
>
<td
colspan=
"2"
><span>
No records found!
</span></td>
</tr>
</tbody>
</table>
<hr>
</hr>
<table
data-id=
"notification-card"
class=
"table stat-table notification-table table-striped "
>
<tbody>
<tbody>
<tr
class=
"empty text-center"
>
<tr
class=
"empty text-center"
>
<td
colspan=
"2"
><span>
No records found!
</span></td>
<td
colspan=
"2"
><span>
No records found!
</span></td>
</tr>
</tr>
</tbody>
</tbody>
</table>
</table>
<hr>
<hr>
</hr>
</hr>
<table
data-id=
"
offset
-card"
class=
"table stat-table notification-table table-striped "
>
<table
data-id=
"
notification
-card"
class=
"table stat-table notification-table table-striped "
>
<tbody>
<tbody>
<tr
class=
"empty text-center"
>
<tr
class=
"empty text-center"
>
<td
colspan=
"2"
><span>
No records found!
</span></td>
<td
colspan=
"2"
><span>
No records found!
</span></td>
...
@@ -94,7 +84,6 @@
...
@@ -94,7 +84,6 @@
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
...
...
dashboardv2/public/js/utils/Enums.js
View file @
6d71f14a
...
@@ -185,7 +185,9 @@ define(['require'], function(require) {
...
@@ -185,7 +185,9 @@ define(['require'], function(require) {
"totalDeletes"
:
"number"
,
"totalDeletes"
:
"number"
,
"totalFailed"
:
"number"
,
"totalFailed"
:
"number"
,
"totalUpdates"
:
"number"
,
"totalUpdates"
:
"number"
,
"topicOffsets"
:
"number"
"processedMessageCount"
:
"number"
,
"lastMessageProcessedTime"
:
"day"
,
"failedMessageCount"
:
"number"
}
}
};
};
return
Enums
;
return
Enums
;
...
...
dashboardv2/public/js/views/site/Statistics.js
View file @
6d71f14a
...
@@ -48,7 +48,6 @@ define(['require',
...
@@ -48,7 +48,6 @@ define(['require',
connectionCard
:
"[data-id='connection-card']"
,
connectionCard
:
"[data-id='connection-card']"
,
notificationCard
:
"[data-id='notification-card']"
,
notificationCard
:
"[data-id='notification-card']"
,
statsNotificationTable
:
"[data-id='stats-notification-table']"
,
statsNotificationTable
:
"[data-id='stats-notification-table']"
,
notificationSmallCard
:
"[data-id='notification-small-card']"
,
entityCard
:
"[data-id='entity-card']"
,
entityCard
:
"[data-id='entity-card']"
,
offsetCard
:
"[data-id='offset-card']"
offsetCard
:
"[data-id='offset-card']"
},
},
...
@@ -237,14 +236,6 @@ define(['require',
...
@@ -237,14 +236,6 @@ define(['require',
})
})
);
);
that
.
ui
.
notificationSmallCard
.
html
(
createTable
({
"enums"
:
Enums
.
stats
.
Notification
,
"data"
:
_
.
pick
(
data
.
Notification
,
'lastMessageProcessedTime'
,
'offsetCurrent'
,
'offsetStart'
)
})
);
var
offsetTableColumn
=
function
(
obj
)
{
var
offsetTableColumn
=
function
(
obj
)
{
var
returnObj
=
[]
var
returnObj
=
[]
_
.
each
(
obj
,
function
(
value
,
key
)
{
_
.
each
(
obj
,
function
(
value
,
key
)
{
...
@@ -255,14 +246,12 @@ define(['require',
...
@@ -255,14 +246,12 @@ define(['require',
that
.
ui
.
offsetCard
.
html
(
that
.
ui
.
offsetCard
.
html
(
TopicOffsetTable
({
TopicOffsetTable
({
"enums"
:
Enums
.
stats
.
Notification
,
data
:
data
.
Notification
.
topicDetails
,
"data"
:
data
.
Notification
.
topicOffsets
,
tableHeader
:
[
"offsetStart"
,
"offsetCurrent"
,
"processedMessageCount"
,
"failedMessageCount"
,
"lastMessageProcessedTime"
],
"tableHeader"
:
[
'offsetCurrent'
,
'offsetStart'
],
tableCol
:
offsetTableColumn
(
data
.
Notification
.
topicDetails
),
"tableCol"
:
offsetTableColumn
(
data
.
Notification
.
topicOffsets
),
getTmplValue
:
function
(
argument
,
args
)
{
"getTmplValue"
:
function
(
argument
,
args
)
{
var
returnVal
=
data
.
Notification
.
topicDetails
[
argument
.
label
][
args
];
console
.
log
(
argument
,
args
)
return
returnVal
?
that
.
getValue
({
value
:
returnVal
,
type
:
Enums
.
stats
.
Notification
[
args
]
})
:
0
;
var
returnVal
=
data
.
Notification
.
topicOffsets
[
argument
.
label
][
args
];
return
returnVal
?
_
.
numberFormatWithComa
(
returnVal
)
:
0
;
}
}
})
})
)
)
...
...
intg/src/main/java/org/apache/atlas/model/metrics/AtlasMetrics.java
View file @
6d71f14a
...
@@ -55,7 +55,7 @@ public class AtlasMetrics {
...
@@ -55,7 +55,7 @@ public class AtlasMetrics {
public
static
final
String
STAT_NOTIFY_FAILED_COUNT_CURR_HOUR
=
PREFIX_NOTIFICATION
+
"currentHourFailed"
;
public
static
final
String
STAT_NOTIFY_FAILED_COUNT_CURR_HOUR
=
PREFIX_NOTIFICATION
+
"currentHourFailed"
;
public
static
final
String
STAT_NOTIFY_START_TIME_CURR_HOUR
=
PREFIX_NOTIFICATION
+
"currentHourStartTime"
;
public
static
final
String
STAT_NOTIFY_START_TIME_CURR_HOUR
=
PREFIX_NOTIFICATION
+
"currentHourStartTime"
;
public
static
final
String
STAT_NOTIFY_LAST_MESSAGE_PROCESSED_TIME
=
PREFIX_NOTIFICATION
+
"lastMessageProcessedTime"
;
public
static
final
String
STAT_NOTIFY_LAST_MESSAGE_PROCESSED_TIME
=
PREFIX_NOTIFICATION
+
"lastMessageProcessedTime"
;
public
static
final
String
STAT_NOTIFY_TOPIC_
OFFSETS
=
PREFIX_NOTIFICATION
+
"topicOffset
s"
;
public
static
final
String
STAT_NOTIFY_TOPIC_
DETAILS
=
PREFIX_NOTIFICATION
+
"topicDetail
s"
;
public
static
final
String
STAT_NOTIFY_COUNT_PREV_DAY
=
PREFIX_NOTIFICATION
+
"previousDay"
;
public
static
final
String
STAT_NOTIFY_COUNT_PREV_DAY
=
PREFIX_NOTIFICATION
+
"previousDay"
;
public
static
final
String
STAT_NOTIFY_AVG_TIME_PREV_DAY
=
PREFIX_NOTIFICATION
+
"previousDayAvgTime"
;
public
static
final
String
STAT_NOTIFY_AVG_TIME_PREV_DAY
=
PREFIX_NOTIFICATION
+
"previousDayAvgTime"
;
public
static
final
String
STAT_NOTIFY_CREATES_COUNT_PREV_DAY
=
PREFIX_NOTIFICATION
+
"previousDayEntityCreates"
;
public
static
final
String
STAT_NOTIFY_CREATES_COUNT_PREV_DAY
=
PREFIX_NOTIFICATION
+
"previousDayEntityCreates"
;
...
...
repository/src/main/java/org/apache/atlas/util/AtlasMetricsUtil.java
View file @
6d71f14a
...
@@ -109,6 +109,11 @@ public class AtlasMetricsUtil {
...
@@ -109,6 +109,11 @@ public class AtlasMetricsUtil {
}
}
partitionStat
.
setCurrentOffset
(
msgOffset
+
1
);
partitionStat
.
setCurrentOffset
(
msgOffset
+
1
);
if
(
stats
.
isFailedMsg
)
{
partitionStat
.
incrFailedMessageCount
();
}
partitionStat
.
incrProcessedMessageCount
();
partitionStat
.
setLastMessageProcessedTime
(
messagesProcessed
.
getLastIncrTime
().
toEpochMilli
());
}
}
public
Map
<
String
,
Object
>
getStats
()
{
public
Map
<
String
,
Object
>
getStats
()
{
...
@@ -126,20 +131,25 @@ public class AtlasMetricsUtil {
...
@@ -126,20 +131,25 @@ public class AtlasMetricsUtil {
ret
.
put
(
STAT_SERVER_STATUS_BACKEND_STORE
,
getBackendStoreStatus
()
?
STATUS_CONNECTED
:
STATUS_NOT_CONNECTED
);
ret
.
put
(
STAT_SERVER_STATUS_BACKEND_STORE
,
getBackendStoreStatus
()
?
STATUS_CONNECTED
:
STATUS_NOT_CONNECTED
);
ret
.
put
(
STAT_SERVER_STATUS_INDEX_STORE
,
getIndexStoreStatus
()
?
STATUS_CONNECTED
:
STATUS_NOT_CONNECTED
);
ret
.
put
(
STAT_SERVER_STATUS_INDEX_STORE
,
getIndexStoreStatus
()
?
STATUS_CONNECTED
:
STATUS_NOT_CONNECTED
);
Map
<
String
,
Map
<
String
,
Long
>>
topic
Offset
s
=
new
HashMap
<>();
Map
<
String
,
Map
<
String
,
Long
>>
topic
Detail
s
=
new
HashMap
<>();
for
(
TopicStats
tStat
:
topicStats
.
values
())
{
for
(
TopicStats
tStat
:
topicStats
.
values
())
{
for
(
TopicPartitionStat
tpStat
:
tStat
.
partitionStats
.
values
())
{
for
(
TopicPartitionStat
tpStat
:
tStat
.
partitionStats
.
values
())
{
Map
<
String
,
Long
>
tpOffsets
=
new
HashMap
<>();
Map
<
String
,
Long
>
tpDetails
=
new
HashMap
<>();
tpOffsets
.
put
(
"offsetStart"
,
tpStat
.
startOffset
);
tpDetails
.
put
(
"offsetStart"
,
tpStat
.
startOffset
);
tpOffsets
.
put
(
"offsetCurrent"
,
tpStat
.
currentOffset
);
tpDetails
.
put
(
"offsetCurrent"
,
tpStat
.
currentOffset
);
tpDetails
.
put
(
"failedMessageCount"
,
tpStat
.
failedMessageCount
);
topicOffsets
.
put
(
tpStat
.
topicName
+
"-"
+
tpStat
.
partition
,
tpOffsets
);
tpDetails
.
put
(
"lastMessageProcessedTime"
,
tpStat
.
lastMessageProcessedTime
);
tpDetails
.
put
(
"processedMessageCount"
,
tpStat
.
processedMessageCount
);
if
(
LOG
.
isDebugEnabled
())
{
LOG
.
debug
(
"Setting failedMessageCount : {} and lastMessageProcessedTime : {} for topic {}-{}"
,
tpStat
.
failedMessageCount
,
tpStat
.
lastMessageProcessedTime
,
tpStat
.
topicName
,
tpStat
.
partition
);
}
topicDetails
.
put
(
tpStat
.
topicName
+
"-"
+
tpStat
.
partition
,
tpDetails
);
}
}
}
}
ret
.
put
(
STAT_NOTIFY_TOPIC_
OFFSETS
,
topicOffset
s
);
ret
.
put
(
STAT_NOTIFY_TOPIC_
DETAILS
,
topicDetail
s
);
ret
.
put
(
STAT_NOTIFY_LAST_MESSAGE_PROCESSED_TIME
,
this
.
messagesProcessed
.
getLastIncrTime
().
toEpochMilli
());
ret
.
put
(
STAT_NOTIFY_LAST_MESSAGE_PROCESSED_TIME
,
this
.
messagesProcessed
.
getLastIncrTime
().
toEpochMilli
());
ret
.
put
(
STAT_NOTIFY_COUNT_TOTAL
,
messagesProcessed
.
getCount
(
ALL
));
ret
.
put
(
STAT_NOTIFY_COUNT_TOTAL
,
messagesProcessed
.
getCount
(
ALL
));
...
@@ -345,6 +355,9 @@ public class AtlasMetricsUtil {
...
@@ -345,6 +355,9 @@ public class AtlasMetricsUtil {
private
final
int
partition
;
private
final
int
partition
;
private
final
long
startOffset
;
private
final
long
startOffset
;
private
long
currentOffset
;
private
long
currentOffset
;
private
long
lastMessageProcessedTime
;
private
long
failedMessageCount
;
private
long
processedMessageCount
;
public
TopicPartitionStat
(
String
topicName
,
int
partition
,
long
startOffset
,
long
currentOffset
)
{
public
TopicPartitionStat
(
String
topicName
,
int
partition
,
long
startOffset
,
long
currentOffset
)
{
this
.
topicName
=
topicName
;
this
.
topicName
=
topicName
;
...
@@ -373,5 +386,16 @@ public class AtlasMetricsUtil {
...
@@ -373,5 +386,16 @@ public class AtlasMetricsUtil {
this
.
currentOffset
=
currentOffset
;
this
.
currentOffset
=
currentOffset
;
}
}
public
long
getLastMessageProcessedTime
()
{
return
lastMessageProcessedTime
;
}
public
void
setLastMessageProcessedTime
(
long
lastMessageProcessedTime
)
{
this
.
lastMessageProcessedTime
=
lastMessageProcessedTime
;
}
public
long
getFailedMessageCount
()
{
return
failedMessageCount
;
}
public
void
incrFailedMessageCount
()
{
this
.
failedMessageCount
++;
}
public
long
getProcessedMessageCount
()
{
return
processedMessageCount
;
}
public
void
incrProcessedMessageCount
()
{
this
.
processedMessageCount
++;
}
};
};
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment