diff --git a/README.md b/README.md index 179573b6c..8bf6f5bbf 100644 --- a/README.md +++ b/README.md @@ -29,10 +29,9 @@ Parseable consumes up to **_~80% lower memory_** and **_~50% lower CPU_** than E ## :rocket: Features - Choose your own storage backend - local drive or S3 (or compatible) object store. -- Ingestion API compatible with HTTP + JSON output of log agents - [Fluentbit ↗︎](https://fluentbit.io/), [Vector ↗︎](http://vector.dev/), [Logstash ↗︎](https://www.elastic.co/logstash/) and others. +- Ingestion API compatible with HTTP + JSON output of log agents. - Query log data with PostgreSQL compatible SQL. - [Grafana ↗︎](https://github.com/parseablehq/parseable-datasource) for visualization. -- Auto schema inference (schema evolution [coming soon ↗︎](https://github.com/parseablehq/parseable/issues/195)). - [Send alerts ↗︎](https://www.parseable.io/docs/api/alerts) to webhook targets including Slack. - [Stats API ↗︎](https://www.postman.com/parseable/workspace/parseable/request/22353706-b32abe55-f0c4-4ed2-9add-110d265888c3) to track ingestion and compressed data. - Single binary includes all components - ingestion, store and query. Built-in UI. @@ -123,10 +122,10 @@ But with log data growing exponentially, today's log data challenges involve who Refer to the contributing guide [here ↗︎](https://www.parseable.io/docs/contributing). -#### Contributors +### Contributors -#### Supported by +### Supported by diff --git a/helm/README.md b/helm/README.md index db133f357..9e224c58d 100644 --- a/helm/README.md +++ b/helm/README.md @@ -1,3 +1,3 @@ # Parseable Helm Chart -Refer the Parseable Helm Chart [documentation ↗︎](https://www.parseable.io/docs/deployment/kubernetes) +Refer the Parseable Helm Chart [documentation ↗︎](https://www.parseable.io/docs/installation/kubernetes) diff --git a/server/src/main.rs b/server/src/main.rs index 4babb1cda..3c79ca3c3 100644 --- a/server/src/main.rs +++ b/server/src/main.rs @@ -55,7 +55,7 @@ mod validator; use option::CONFIG; // Global configurations -const MAX_EVENT_PAYLOAD_SIZE: usize = 10240000; +const MAX_EVENT_PAYLOAD_SIZE: usize = 10485760; const API_BASE_PATH: &str = "/api"; const API_VERSION: &str = "v1";