exasol / cloudwatch-adapter

Makes Exasol database monitoring data available in AWS CloudWatch
MIT License
2 stars 1 forks source link

How to update to the last version #62

Closed jorge-delgado-aera closed 2 years ago

jorge-delgado-aera commented 2 years ago

Hello, do you have the steps to implement below metrics or last version of cloudwatch adapter?

https://github.com/exasol/cloudwatch-adapter/blob/main/doc/changes/changes_1.0.0.md#cloudwatch-adapter-100-released-2022-02-23

jakobbraun commented 2 years ago

Thanks for pointing out. We just realized that our deployment process is broken, so the version available in the AWS serverless app repository is outdated. We try to fix this as soon as possible.

Once we published the latest version you can upgrade. Updating a AWS serverless app is basically just overriding it: https://docs.aws.amazon.com/serverlessrepo/latest/devguide/serverlessrepo-how-to-consume-new-version.html

If you don't want to wait you can checkout this repo and deploy it manually: https://github.com/exasol/cloudwatch-adapter#information-for-developers

jorge-delgado-aera commented 2 years ago

hello @jakobbraun, just for this I have 2 questions:

1.- Is planned to update this tool frecuently?, just I want to know to consider this as an official tool for monitoring 2.- Do you know when last version will be deployed?

THANKS IN ADVANCE.

jakobbraun commented 2 years ago

Hi, yes we plan to maintain this tool. We also did invest into updates and just due to the broken release mechanism did not deploy them to the store. You can expect a release of the latest version later today.

jakobbraun commented 2 years ago

We now published the latest version 1.0.1 on AWS. Sorry again for the inconvenience.

jorge-delgado-aera commented 2 years ago

hi @jakobbraun, thanks for the last update for the tool, previously I saw 32 metrics collected, but after the upgrade I still see the same 32 metrics, do I need to perform anything else to see backup metrics?, below the link for metrics that I refer to.

https://github.com/exasol/cloudwatch-adapter/blob/main/doc/changes/changes_1.0.0.md#cloudwatch-adapter-100-released-2022-02-23

thanks for your help.

kaklakariada commented 2 years ago

Hi @jorge-delgado-aera , It's possible that no backup events occurred since you installed the new version. The cloudwatch-adapter only adds metrics when the corresponding events are found in the database. Please check if you find recent rows with EVENT_TYPE value BACKUP_START or BACKUP_END in table EXA_SYSTEM_EVENTS:

select *
from EXA_SYSTEM_EVENTS
where event_type like 'BACKUP%'
order by measure_time desc;
jorge-delgado-aera commented 2 years ago

hi @kaklakariada, I checked with the above query and it retrieves data updated, I will open a ticket for following up

image