All Downloads are FREE. Search and download functionalities are using the official Maven repository.

web-interface.assets.325e2d4b-542.bd1897c1c818d2310cf2.js.map Maven / Gradle / Ivy

There is a newer version: 6.0.1
Show newest version
{"version":3,"file":"325e2d4b-542.bd1897c1c818d2310cf2.js","mappings":"8PAuBA,MAuBA,EAvBmB,KACjB,MAAMA,GAAcC,EAAAA,EAAAA,KAUpB,OARAC,EAAAA,EAAAA,YAAU,KACR,MAAMC,EAAqBC,YAAYC,EAAAA,EAAAA,KAAuB,KAE9D,MAAO,KACLC,cAAcH,EAAd,CADF,GAGC,IAGD,gBAAC,KAAD,CAAeI,MAAM,UACnB,2BACE,gBAAC,KAAD,CAAYA,MAAM,UAChB,2HAEF,gBAAC,KAAD,CAAYC,YAAaR,EAAYQ,eAN3C,C","sources":["webpack://graylog-web-interface/./src/pages/InputsPage.tsx"],"sourcesContent":["/*\n * Copyright (C) 2020 Graylog, Inc.\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the Server Side Public License, version 1,\n * as published by MongoDB, Inc.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n * Server Side Public License for more details.\n *\n * You should have received a copy of the Server Side Public License\n * along with this program. If not, see\n * .\n */\nimport React, { useEffect } from 'react';\n\nimport { DocumentTitle, PageHeader } from 'components/common';\nimport { InputsList } from 'components/inputs';\nimport { InputStatesStore } from 'stores/inputs/InputStatesStore';\nimport useCurrentUser from 'hooks/useCurrentUser';\n\nconst InputsPage = () => {\n  const currentUser = useCurrentUser();\n\n  useEffect(() => {\n    const listInputsInterval = setInterval(InputStatesStore.list, 2000);\n\n    return () => {\n      clearInterval(listInputsInterval);\n    };\n  }, []);\n\n  return (\n    \n      
\n \n Graylog nodes accept data via inputs. Launch or terminate as many inputs as you want here.\n \n \n
\n
\n );\n};\n\nexport default InputsPage;\n"],"names":["currentUser","useCurrentUser","useEffect","listInputsInterval","setInterval","InputStatesStore","clearInterval","title","permissions"],"sourceRoot":""}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy