mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
Live: search for pipeline files in data folder (#39198)
Co-authored-by: Ryan McKinley <ryantxu@gmail.com>
This commit is contained in:
parent
548b4daa49
commit
15e278e9e1
@ -173,7 +173,9 @@ func ProvideService(plugCtxProvider *plugincontext.Provider, cfg *setting.Cfg, r
|
||||
FrameStorage: pipeline.NewFrameStorage(),
|
||||
}
|
||||
} else {
|
||||
storage := &pipeline.FileStorage{}
|
||||
storage := &pipeline.FileStorage{
|
||||
DataPath: cfg.DataPath,
|
||||
}
|
||||
g.channelRuleStorage = storage
|
||||
builder = &pipeline.StorageRuleBuilder{
|
||||
Node: node,
|
||||
|
@ -3,19 +3,25 @@ package pipeline
|
||||
import (
|
||||
"context"
|
||||
"encoding/json"
|
||||
"fmt"
|
||||
"io/ioutil"
|
||||
"os"
|
||||
"path/filepath"
|
||||
)
|
||||
|
||||
// FileStorage can load channel rules from a file on disk.
|
||||
type FileStorage struct{}
|
||||
type FileStorage struct {
|
||||
DataPath string
|
||||
}
|
||||
|
||||
func (f *FileStorage) ListRemoteWriteBackends(_ context.Context, orgID int64) ([]RemoteWriteBackend, error) {
|
||||
backendBytes, _ := ioutil.ReadFile(os.Getenv("GF_LIVE_REMOTE_WRITE_BACKENDS_FILE"))
|
||||
var remoteWriteBackends RemoteWriteBackends
|
||||
err := json.Unmarshal(backendBytes, &remoteWriteBackends)
|
||||
backendBytes, err := ioutil.ReadFile(filepath.Join(f.DataPath, "pipeline", "remote-write-backends.json"))
|
||||
if err != nil {
|
||||
return nil, err
|
||||
return nil, fmt.Errorf("can't read ./pipeline/remote-write-backends.json file: %w", err)
|
||||
}
|
||||
var remoteWriteBackends RemoteWriteBackends
|
||||
err = json.Unmarshal(backendBytes, &remoteWriteBackends)
|
||||
if err != nil {
|
||||
return nil, fmt.Errorf("can't unmarshal remote-write-backends.json data: %w", err)
|
||||
}
|
||||
var backends []RemoteWriteBackend
|
||||
for _, b := range remoteWriteBackends.Backends {
|
||||
@ -27,11 +33,14 @@ func (f *FileStorage) ListRemoteWriteBackends(_ context.Context, orgID int64) ([
|
||||
}
|
||||
|
||||
func (f *FileStorage) ListChannelRules(_ context.Context, orgID int64) ([]ChannelRule, error) {
|
||||
ruleBytes, _ := ioutil.ReadFile(os.Getenv("GF_LIVE_CHANNEL_RULES_FILE"))
|
||||
var channelRules ChannelRules
|
||||
err := json.Unmarshal(ruleBytes, &channelRules)
|
||||
ruleBytes, err := ioutil.ReadFile(filepath.Join(f.DataPath, "pipeline", "live-channel-rules.json"))
|
||||
if err != nil {
|
||||
return nil, err
|
||||
return nil, fmt.Errorf("can't read ./data/live-channel-rules.json file: %w", err)
|
||||
}
|
||||
var channelRules ChannelRules
|
||||
err = json.Unmarshal(ruleBytes, &channelRules)
|
||||
if err != nil {
|
||||
return nil, fmt.Errorf("can't unmarshal live-channel-rules.json data: %w", err)
|
||||
}
|
||||
var rules []ChannelRule
|
||||
for _, r := range channelRules.Rules {
|
||||
|
@ -10,6 +10,7 @@ import { GrafanaCloudBackend } from './types';
|
||||
export default function CloudAdminPage() {
|
||||
const navModel = useNavModel('live-cloud');
|
||||
const [cloud, setCloud] = useState<GrafanaCloudBackend[]>([]);
|
||||
const [error, setError] = useState<string>();
|
||||
const styles = useStyles(getStyles);
|
||||
|
||||
useEffect(() => {
|
||||
@ -18,12 +19,17 @@ export default function CloudAdminPage() {
|
||||
.then((data) => {
|
||||
setCloud(data.remoteWriteBackends);
|
||||
})
|
||||
.catch((e) => console.error(e));
|
||||
.catch((e) => {
|
||||
if (e.data) {
|
||||
setError(JSON.stringify(e.data, null, 2));
|
||||
}
|
||||
});
|
||||
}, []);
|
||||
|
||||
return (
|
||||
<Page navModel={navModel}>
|
||||
<Page.Contents>
|
||||
{error && <pre>{error}</pre>}
|
||||
{!cloud && <>Loading cloud definitions</>}
|
||||
{cloud &&
|
||||
cloud.map((v) => {
|
||||
|
@ -24,6 +24,7 @@ export default function PipelineAdminPage() {
|
||||
const [selectedRule, setSelectedRule] = useState<Rule>();
|
||||
const [defaultRules, setDefaultRules] = useState<any[]>([]);
|
||||
const navModel = useNavModel('live-pipeline');
|
||||
const [error, setError] = useState<string>();
|
||||
const styles = useStyles(getStyles);
|
||||
|
||||
useEffect(() => {
|
||||
@ -33,7 +34,11 @@ export default function PipelineAdminPage() {
|
||||
setRules(data.rules);
|
||||
setDefaultRules(data.rules);
|
||||
})
|
||||
.catch((e) => console.error(e));
|
||||
.catch((e) => {
|
||||
if (e.data) {
|
||||
setError(JSON.stringify(e.data, null, 2));
|
||||
}
|
||||
});
|
||||
}, []);
|
||||
|
||||
const onRowClick = (event: any) => {
|
||||
@ -57,6 +62,7 @@ export default function PipelineAdminPage() {
|
||||
return (
|
||||
<Page navModel={navModel}>
|
||||
<Page.Contents>
|
||||
{error && <pre>{error}</pre>}
|
||||
<div className="page-action-bar">
|
||||
<div className="gf-form gf-form--grow">
|
||||
<Input placeholder="Search pattern..." onChange={onSearchQueryChange} />
|
||||
|
Loading…
Reference in New Issue
Block a user