Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

No connectivity to ES cluster #23

Closed
heinemannj opened this issue Mar 24, 2013 · 2 comments
Closed

No connectivity to ES cluster #23

heinemannj opened this issue Mar 24, 2013 · 2 comments

Comments

@heinemannj
Copy link

I've installed kibana3 on an suse12.3 box with ES20.5.
Kibana2 is working without problems.

Testing with WIN7 client - Firefox 19.0.2

I can start the default dashboard I can load git dashboard - but No connectivity to my ES cluster.

On shell manually queries with curl are working fine.
Even saving to ES fails.

elma-es:/opt/kibana3-master/dashboards # curl -XGET http://localhost:9200/rsyslog-2013-03-24/_search?pretty -d'

{
"query": {
"filtered": {
"query": {
"query_string": {
"query": "*"
}
},
"filter": {
"range": {
"@timestamp": {
"from": "2013-03-23T23:48:36.000Z",
"to": "2013-03-24T05:48:36.000Z"
}
}
}
}
},
},
"size": 100,
"from": 0,
"sort": [
{
"@timestamp": {
"order": "desc"
}
}
]
}'
{
"took" : 23,
"timed_out" : false,
"_shards" : {
"total" : 1,
"successful" : 1,
"failed" : 0
},
"hits" : {
"total" : 108,
"max_score" : null,
"hits" : [ {
"_index" : "rsyslog-2013-03-24",
"_type" : "events",
"_id" : "Iwk4N_KhQNGmLuZtX9uKmA",
"_score" : null, "_source" : {"@timestamp":"2013-03-24T06:48:14.380039+01:00","@source_host":"elma-es","@source":"syslog://127.0.0.1","@message":"Mar 24 06:48:14 kernel:[318299.971874] SFW2-INext-ACC-TCP IN=eth0 OUT= MAC=52:54:00:5c:76:5d:00:22:5f:0e:f7:85:08:00 SRC=192.168.178.101 DST=192.168.178.25 LEN=52 TOS=0x00 PREC=0x00 TTL=128 ID=30646 DF PROTO=TCP SPT=57287 DPT=443 WINDOW=8192 RES=0x00 SYN URGP=0 OPT (020405B40103030201010402) ","@fields":{"facility":"0","facility_label":"kern","severity":"4","severity_label":"warning","priority":"4","program":"kernel","processid":"-"},"@customer":"AIDB","@type":"events"},
"sort" : [ 1364104094380 ]
}, {

@wiibaa
Copy link

wiibaa commented Mar 24, 2013

Are yous using the Logstash gist?
If the case, it assumes that your indexes are named logstash-yyyy-mm-dd
You can modify this name pattern in the editor for the timepicker.
Hope it helps

@rashidkpc
Copy link
Contributor

k3 connects directy from the browser to ES. That is, config.js should only point to http://localhost:9200 if elasticsearch is running on the same workstation as your browser.

spalger pushed a commit that referenced this issue Oct 6, 2014
spalger pushed a commit that referenced this issue Oct 6, 2014
spalger referenced this issue in spalger/kibana Mar 3, 2016
Kibana's standard title is replaced post build until we find something better.

relates to #23
spalger referenced this issue in spalger/kibana Mar 3, 2016
Add more kb entries
[kb] Add filter_path as global url parameter
[kb] Add flat_settings to _settings
[kb] Add terminate_after to search and count
cee-chen pushed a commit that referenced this issue Sep 9, 2020
* [public] Register Enterprise search plugin

+ move new Home strings to constants

* [server] Register plugin access/visibility

* Set up Enterprise Search Kibana Chrome

- Add SetEnterpriseSearchChrome
- Update Enterprise Search breadcrumbs to link to new overview plugin (+ update overview plugin URL per team discussion)
  - Add ability to break out of React Router basename by not using history.createhref
  - Update createHref mock to more closely match Kibana urls (adding /app prefix)
- Minor documentation fix

* Set up Enterprise Search plugin telemetry

- client-side: SendEnterpriseSearchTelemetry
- server-side: register saved objects, usage collector, etc.

* Enterprise search overview views (#23)

* Add formatTestSubj util

This allows us to correctly format strings into our casing for data-test-subj attrs

* Add images and stylesheet

* Add product card component

* Add index component

* Remove unused styles

* Fix inter-plugin links
- by add shouldNotCreateHref prop to RR helpers
- similiar to breadcrumb change

* Fix/clean up CSS

- Prefer EUI components over bespoke CSS (e.g. EuiCard)
- Remove unused or unspecific CSS
- Pull out product card CSS to its component
- Fix kebab-cased CSS classes to camelCased

* Clean up ProductCard props

- Prefer passing in our plugin consts instead of separate props
- Move productCardDescription to constants
- Update tests

* Add telemetry clicked actions to product buttons

+ revert data-test-subj strings to previous implementation
+ prune format_test_subj helper by using lodash util directly

* [PR feedback] Add new plugin to applicationUsageSchema per telemetry team request

* Fix failing functional navLinks test

* Fix telemetry schema test

* [Perf] Optimize assets size by switching from 300kb SVG to 25kb PNG

* Only show product cards if the user has access to that product

- adds access checks
- fixes flex/CSS to show one card at a time

Co-authored-by: Scotty Bollinger <scotty.bollinger@elastic.co>
cee-chen pushed a commit that referenced this issue Sep 10, 2020
* [public] Register Enterprise search plugin

+ move new Home strings to constants

* [server] Register plugin access/visibility

* Set up Enterprise Search Kibana Chrome

- Add SetEnterpriseSearchChrome
- Update Enterprise Search breadcrumbs to link to new overview plugin (+ update overview plugin URL per team discussion)
  - Add ability to break out of React Router basename by not using history.createhref
  - Update createHref mock to more closely match Kibana urls (adding /app prefix)
- Minor documentation fix

* Set up Enterprise Search plugin telemetry

- client-side: SendEnterpriseSearchTelemetry
- server-side: register saved objects, usage collector, etc.

* Enterprise search overview views (#23)

* Add formatTestSubj util

This allows us to correctly format strings into our casing for data-test-subj attrs

* Add images and stylesheet

* Add product card component

* Add index component

* Remove unused styles

* Fix inter-plugin links
- by add shouldNotCreateHref prop to RR helpers
- similiar to breadcrumb change

* Fix/clean up CSS

- Prefer EUI components over bespoke CSS (e.g. EuiCard)
- Remove unused or unspecific CSS
- Pull out product card CSS to its component
- Fix kebab-cased CSS classes to camelCased

* Clean up ProductCard props

- Prefer passing in our plugin consts instead of separate props
- Move productCardDescription to constants
- Update tests

* Add telemetry clicked actions to product buttons

+ revert data-test-subj strings to previous implementation
+ prune format_test_subj helper by using lodash util directly

* [PR feedback] Add new plugin to applicationUsageSchema per telemetry team request

* Fix failing functional navLinks test

* Fix telemetry schema test

* [Perf] Optimize assets size by switching from 300kb SVG to 25kb PNG

* Only show product cards if the user has access to that product

- adds access checks
- fixes flex/CSS to show one card at a time

Co-authored-by: Scotty Bollinger <scotty.bollinger@elastic.co>

Co-authored-by: Scotty Bollinger <scotty.bollinger@elastic.co>
kqualters-elastic pushed a commit to kqualters-elastic/kibana that referenced this issue Mar 8, 2022
…alerts-unit-tests

Add process tree alerts tests
dgieselaar referenced this issue in dgieselaar/kibana Mar 31, 2022
* Refactor flamegraph query into separate method

* Rename registration method for Elastic flamechart

* Register route for Pixi flamechart
yctercero added a commit to yctercero/kibana that referenced this issue May 19, 2022
…elastic#23)

* update UI and kibana advanced setting

* removed advanced settings logic

* removing weird change

* adding debug logging

* update ui to show data view title in select
rockdaboot pushed a commit that referenced this issue Jul 4, 2022
* Refactor flamegraph query into separate method

* Rename registration method for Elastic flamechart

* Register route for Pixi flamechart
rockdaboot pushed a commit that referenced this issue Jul 4, 2022
* Refactor flamegraph query into separate method

* Rename registration method for Elastic flamechart

* Register route for Pixi flamechart
rockdaboot pushed a commit that referenced this issue Jul 5, 2022
* Refactor flamegraph query into separate method

* Rename registration method for Elastic flamechart

* Register route for Pixi flamechart
CoenWarmer added a commit to CoenWarmer/kibana that referenced this issue Aug 8, 2023
Samiul-TheSoccerFan pushed a commit to Samiul-TheSoccerFan/kibana that referenced this issue Mar 5, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants