We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Hey,
I am new to elasti stack.
I want to use prometheus remote_write to send metric to metricbeat.
I deployed metricbeat to k8s with configmap updated:
apiVersion: v1 kind: ConfigMap metadata: name: metricbeat-daemonset-config namespace: kube-system labels: k8s-app: metricbeat data: metricbeat.yml: |- metricbeat.modules: - module: prometheus metricsets: ["remote_write"] host: "0.0.0.0" port: "9201" use_types: true rate_counters: true period: 60s
expose port and service:
apiVersion: v1 kind: Service metadata: name: metricbeat namespace: kube-system labels: k8s-app: metricbeat spec: ports: - port: 9201 protocol: TCP targetPort: 9201 selector: k8s-app: metricbeat sessionAffinity: None type: ClusterIP
and I enabled the remote write to metricbeat in prometheus:
- url: http://metricbeat.kube-system:9201/write remote_timeout: 30s follow_redirects: true enable_http2: true queue_config: capacity: 20000 max_shards: 3 min_shards: 1 max_samples_per_send: 10000 batch_send_deadline: 5s min_backoff: 30ms max_backoff: 5s
My question is:
The text was updated successfully, but these errors were encountered:
This issue doesn't have a Team:<team> label.
Team:<team>
Sorry, something went wrong.
No branches or pull requests
Hey,
I am new to elasti stack.
I want to use prometheus remote_write to send metric to metricbeat.
I deployed metricbeat to k8s with configmap updated:
expose port and service:
and I enabled the remote write to metricbeat in prometheus:
My question is:
The text was updated successfully, but these errors were encountered: