Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Specifying supported Metrics for Embrace integration #2478

Merged
merged 19 commits into from
Oct 21, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 25 additions & 1 deletion embrace_mobile/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,30 @@
"assets": {
"dashboards": {
"Embrace Overview": "assets/dashboards/embrace_mobile_overview.json"
},
"integration": {
"auto_install": true,
"configuration": {},
"events": {
"creates_events": false
},
"metrics": {
"check": ["embrace.session_total.five_minute",
"embrace.session_total.hourly",
"embrace.session_total.daily",
"embrace.crash_total.five_minute",
"embrace.crash_total.hourly",
"embrace.crash_total.daily",
"embrace.users_total.daily"
],
"metadata_path": "metadata.csv",
"prefix": "embrace."
},
"service_checks": {
"metadata_path": "assets/service_checks.json"
},
"source_type_name": "Embrace",
"source_type_id": 25653134
}
}
}
}
8 changes: 8 additions & 0 deletions embrace_mobile/metadata.csv
eho1307 marked this conversation as resolved.
Show resolved Hide resolved
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
metric_name,metric_type,interval,unit_name,per_unit_name,description,orientation,integration,short_name,curated_metric
embrace.session_total.five_minute,count,300,,,5-minute count of sessions,0,embrace,sessions5m,
embrace.session_total.hourly,count,3600,,,1-hour count of sessions,0,embrace,sessions1hr,
embrace.session_total.daily,count,86400,,,1-day (UTC) count of sessions,0,embrace,sessions1d,
embrace.crash_total.five_minute,count,300,,,5-minute count of crashes,0,embrace,crashes5m,
embrace.crash_total.hourly,count,3600,,,1-hour count of sessions,0,embrace,crashes1hr,
embrace.crash_total.daily,count,86400,,,1-day (UTC) count of sessions,0,embrace,crashes1d,
embrace.users_total.daily,count,86400,,,1-day (UTC) count of unique users,0,embrace,users1d,
Loading