This commit is contained in:
Kristina Durivage
2025-12-03 09:40:17 -06:00
parent c7d58a32c6
commit b95899c698
4 changed files with 15 additions and 5 deletions
@@ -157,8 +157,6 @@ export default function CorrelationsPage(props: CorrelationsPageProps) {
</Button>
);
console.log(correlations?.totalCount, correlations?.limit);
return (
<Page
navModel={navModel}
@@ -1,4 +1,4 @@
import { useMemo, useRef, useState } from 'react';
import { useRef, useState } from 'react';
import { config, CorrelationsData } from '@grafana/runtime';
@@ -1,5 +1,3 @@
import { useCallback } from 'react';
import {
Correlation as CorrelationK8s,
useListCorrelationQuery,
+14
View File
@@ -42,3 +42,17 @@ developer_mode = true ; Enable developer mode to use in-memory implementations o
[secrets_manager]
run_secrets_db_migrations = true
run_data_key_migration = true
[grafana-apiserver]
; use unified storage for k8s apiserver
storage_type = unified
# Dualwriter modes
# 0: disabled (default mode)
# 1: read from legacy, write to legacy, write to unified best-effort
# 2: read from legacy, write to both
# 3: read from unified, write to both
# 4: read from unified, write to unified
# 5: read from unified, write to unified, ignore background sync state
[unified_storage.correlation.correlations.grafana.app]
dualWriterMode = 5