Skip to content

Commit 548d1cb

Browse files
committed
Mention feature degratadtion for older versions of Checkmk
Version 2.0.0 may work but not all features are available Version 1.6.0 and earlier will not work at all CMK-13945
1 parent 4cb54df commit 548d1cb

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

src/ui/ConfigEditor.tsx

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { DataSourcePluginOptionsEditorProps, SelectableValue } from '@grafana/data';
2-
import { FieldSet, InlineField, LegacyForms, Select } from '@grafana/ui';
2+
import { Alert, FieldSet, InlineField, LegacyForms, Select } from '@grafana/ui';
33
import React, { ChangeEvent, PureComponent } from 'react';
44

55
import { Backend, DataSourceOptions, Edition, SecureJsonData } from '../types';
@@ -140,6 +140,15 @@ export class ConfigEditor extends PureComponent<Props, State> {
140140
inputId="checkmk-version"
141141
/>
142142
</InlineField>
143+
{jsonData.backend === 'web' && (
144+
<Alert title="Feature degration warning" severity="warning">
145+
Note that versions older than 2.1.0 are not officially supported:
146+
<ul>
147+
<li>- Version 2.0.0 may work, but not all features are available.</li>
148+
<li>- Version 1.6.0 and earlier will not work at all.</li>
149+
</ul>
150+
</Alert>
151+
)}
143152
</>
144153
) : (
145154
<></>

0 commit comments

Comments
 (0)