We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Grafana address
By requesting /metrics/metadata, we can get the backend Grafana service address and then set it as the Iframe url.
/metrics/metadata
The front page is currently ServiceMetrics and should be something like:
ServiceMetrics
<template> <v-container grid-list-xl fluid> <v-layout row wrap> <v-flex> <iframe src="http:metadata.grafanaAdress/dashboard-solo/new?utm_source=grafana_gettingstarted&orgId=1&from=1684139950126&to=1684161550126&panelId=1" width="1350" height="700" frameborder="0"></iframe> </v-flex> </v-layout> </v-container> </template> <script> import Material from 'vuetify/es5/util/colors' export default { name: 'ServiceMetrics' components: { Breadcrumb, Search }, data () { return { breads: [ { text: 'metrics', href: '' } ], metadata: [], } }, methods: { getMetadata () { this.$axios.get('/metrics/metadata').then(response => { console.log(response) }) }, }, mounted: function () { this.getMetadata(); } } </script> <style scoped> .echarts { width: 105%; height: 68px; } </style>
The text was updated successfully, but these errors were encountered:
It could be either an embedded IFrame or open a new tab
Sorry, something went wrong.
No branches or pull requests
By requesting
/metrics/metadata
, we can get the backend Grafana service address and then set it as the Iframe url.The front page is currently
ServiceMetrics
and should be something like:The text was updated successfully, but these errors were encountered: