Experience Cards shows no metrics
search cancel

Experience Cards shows no metrics

book

Article ID: 261148

calendar_today

Updated On:

Products

CA Application Performance Management (APM / Wily / Introscope)

Issue/Introduction

In the Experience View cards shows "No Data" instead values. I've followed these instructions:

 

https://knowledge.broadcom.com/external/article/16443/how-can-we-optimize-our-apm-database-tha.html

 

Except sqltools7 because I haven't it. I'm attaching the results of the queries:

select external_id, history from (
select vertex_id, count(1) as history from appmap_vertices
where start_time > (CURRENT_DATE - INTERVAL '5 day')
group by vertex_id
order by 2 desc
limit 20) t
join appmap_id_mappings m on t.vertex_id=m.vertex_id;

 

  • select count(*) from appmap_vertices;
  • select count(*) from appmap_attribs;
  • select count(*) from appmap_edges;

we have an schedules task who run these queries, every night, in order to prevent this issue

vacuum full analyze appmap_edges;
vacuum full analyze appmap_vertices;
vacuum full analyze appmap_attribs;

 

Environment

Release : 10.7.0

Resolution

we replaced these values

# introscope.apm.data.preserving.time=365 DAYS

# introscope.apm.alert.preserving.time=62 DAYS

For these

introscope.apm.data.preserving.time=90 DAYS

introscope.apm.alert.preserving.time=30 DAYS