Skip to content

Commit

Permalink
fix: UI - cloudwatch ingestion endpoints (#3400)
Browse files Browse the repository at this point in the history
Add the missing org identifier to cloudwatch ingestion endpoints on UI
  • Loading branch information
taimingl committed May 2, 2024
1 parent 13e1442 commit ae32579
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion web/src/components/ingestion/logs/KinesisFirehose.vue
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ export default defineComponent({
tls: url.protocol === "https:" ? "On" : "Off",
};
const content = `HTTP Endpoint: ${endpoint.value.url}/aws/cloudwatch_logs/_kinesis_firehose
const content = `HTTP Endpoint: ${endpoint.value.url}/aws/${store.state.selectedOrganization.identifier}/default/_kinesis_firehose
Access Key: [BASIC_PASSCODE]`;
return {
store,
Expand Down
4 changes: 2 additions & 2 deletions web/src/components/ingestion/metrics/CloudWatchMetrics.vue
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
>
Click here</a
>
to explore the process of setting up a CloudWatch custom metric stream with Data Firehose to OpenObserve.
to explore the process of setting up a CloudWatch custom metric stream with Data Firehose to OpenObserve. Please ensure to choose JSON as output format.
<p class="q-ml-lg text-italic" style="padding-right: 2px">Note: Output is available under Logs with stream name 'cloudwatch_metrics'.</p>
</div>
</div>
Expand Down Expand Up @@ -71,7 +71,7 @@ export default defineComponent({
tls: url.protocol === "https:" ? "On" : "Off",
};
const content = `HTTP Endpoint: ${endpoint.value.url}/aws/cloudwatch_metrics/_kinesis_firehose
const content = `HTTP Endpoint: ${endpoint.value.url}/aws/${store.state.selectedOrganization.identifier}/cloudwatch_metrics/_kinesis_firehose
Access Key: [BASIC_PASSCODE]`;
return {
store,
Expand Down

0 comments on commit ae32579

Please sign in to comment.