on 2019 May 10 2:40 PM
As the title says, does anyone know of a DataDog integration for SQL Anywhere?
Integrations exist for quite a few other db products (see https://www.datadoghq.com/product/integrations/#cat-data-store) and I'm hoping to find one for SA17.
The Foxhound database monitor stores performance metrics and alerts in its own SQL Anywhere database, and that database is completely open to realtime adhoc queries.
For more information see the White Paper.
Version 4 is currently available and Version 5 is in the final stages of testing... Version 5 will be available for free to anyone who purchases Version 4 now.
Here's one of the adhoc query examples...
Active alerts for each target database
SELECT IF sampling_options.selected_tab = 1 THEN 'DSN' ELSE 'String' END IF AS connection_type, sampling_options.selected_name AS target_database, alert_union.* FROM sampling_options INNER JOIN alert_union ON alert_union.sampling_id = sampling_options.sampling_id WHERE alert_union.record_type = 'Alert' AND alert_union.alert_is_clear_or_cancelled = 'N' ORDER BY target_database ASC, alert_union.sample_set_number DESC;
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
User | Count |
---|---|
67 | |
11 | |
10 | |
10 | |
9 | |
8 | |
6 | |
6 | |
4 | |
4 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.