How to Use InfluxDB with Its Python Client on Kubernetes – InApps is an article under the topic Software Development Many of you are most interested in today !! Today, let’s InApps.net learn How to Use InfluxDB with Its Python Client on Kubernetes – InApps in today’s post !

Key Summary

The article from InApps.net, sponsored by InfluxData and authored by Saiyam Pathak, provides a tutorial on deploying InfluxDB on a Kubernetes cluster and using its Python client to send data. Key points include:

  • What You’ll Learn:
    • Deploying InfluxDB 2.0.1 on a Kubernetes cluster.
    • Using the InfluxDB Python client to write data.
  • Prerequisites:
    • A Kubernetes cluster (e.g., Civo’s K3s with $70 monthly credit or any other cluster).
    • kubectl installed and configured with the cluster’s kubeconfig file.
    • Verify cluster connection: kubectl get nodes to list nodes.
  • Deploying InfluxDB:
    • Clone the repository: https://github.com/saiyam1814/pyconf.git, which includes scripts for Namespace, StatefulSet, and Service for InfluxDB 2.0.1.
    • Configure ingress:
      • Edit ing.yaml to include the cluster’s DNS name (obtained from the cluster dashboard) in the host section (e.g., influx.{DNS_NAME}).
      • Access the InfluxDB UI via the host address.
      • Copy the generated token from the UI’s Advanced section for Python client authentication.
  • Using the InfluxDB Python Client:
    • Key Components:
      • Import influxdb-client library.
      • Specify Org (organization for data) and Bucket (data storage location).
      • Create a Client with the host URL and token.
      • Use client.write_api to write data points (e.g., free_mem measurement with host tag and free_mem_Gb field).
      • Example: Write system’s free memory in GB every 5 seconds using write_api.write(bucket, org, point).
    • Code Structure:
      • Define data points with Point for measurements.
      • Automate data collection (e.g., free memory) and write to InfluxDB periodically.
  • Use Cases:
    • Capture and process data from scripts (e.g., system metrics) and send it to InfluxDB via the Python client.
    • Supports multiple client libraries for various data ingestion needs.
  • Summary:
    • The tutorial demonstrates deploying InfluxDB on a K3s Kubernetes cluster, writing data using the Python client, and visualizing it in the InfluxDB UI.
    • Simplifies time-series data management for applications like system monitoring.

Read more about How to Use InfluxDB with Its Python Client on Kubernetes – InApps at Wikipedia

You can find content about How to Use InfluxDB with Its Python Client on Kubernetes – InApps from the Wikipedia website

Read More:   Exploring Node.js with Mark Hinkle, Executive Director of the Node.js Foundation – InApps 2025

InfluxData sponsored this post.

 

Saiyam Pathak

Saiyam is the Director of Technical Evangelism at Civo.

 

In this tutorial, we will discuss InfluxDB and its Python client. We will deploy InfluxDB inside a Kubernetes cluster and then use the InfluxDB Python client to send data to InfluxDB.

What you will learn?

  • How to deploy InfluxDB to a Kubernetes cluster (quickstart way).
  • How to use the InfluxDB Python client.

Prerequisites

  • A Kubernetes cluster you control. We’ll take advantage of Civo’s super-fast managed K3s service to experiment with this quickly. If you don’t yet have an account, sign up for the beta now to take advantage of quick deployment times and $70 free credit per month. Alternatively, you could also use any other Kubernetes cluster.
  • Install and set up kubectl, and have the kubeconfig file for your cluster downloaded.

Make sure you can connect to your Kubernetes cluster by running:

You should see the names of the nodes in your cluster displayed.

Getting Up and Running with InfluxDB

Clone the repository: https://github.com/saiyam1814/pyconf.git

The above script creates the Namespace, StatefulSet and service for InfluxDB version 2.0.1.

Now we will create the ingress, and for that, we will modify the ing.yaml file and input the DNS name of the created cluster. You can get the DNS name from the dashboard.

In the host section of ing.yaml, point to influx.{DNS NAME}.

Navigate to the HOST ADDRESS:

Now, in the Advanced section from the Token, select and copy the generated token — as that would be required for connecting to InfluxDB via the Python client.

Next Steps

Create Kubernetes Secret from the Token 

Create Config Map for the Ingress HOST Address

Create the Daemonset from the Deploy Folder

Viewing from InfluxDB UI

Understanding the Connection and Writing Points to InfluxDB via Its Python Client

  • Import influxdb-client.
  • Org: Corresponds to the org where data has to be pushed.
  • Bucket: Corresponds to the bucket where data has to be pushed.
  • Client: The connection created by proving the host and the token.
  • Freemem: To get free memory of the host in Gb.
  • client.write_api for writing to InfluxDB.
  • Point: The actual point that will be creating measurement free_mem, tag host and field free_mem_Gb.
  • write_api.write(bucket,org,point)for the insertion to the Db.
  • Last section makes it run every 5 seconds.

Use Cases

You might have certain scripts that would capture some data, or do some level of processing and then create the data, which can then be sent via the Python client to InfluxDB (for this particular use case). There are a lot of client libraries that are supported and can be used to send the data.

Summary

We have seen how to deploy InfluxDB on an existing K3s Kubernetes cluster. Use the Python client to write data to InfluxDB, and then view the data from InfluxDB UI.

Feature image via Pixabay.

Source: InApps.net

Rate this post
As a Senior Tech Enthusiast, I bring a decade of experience to the realm of tech writing, blending deep industry knowledge with a passion for storytelling. With expertise in software development to emerging tech trends like AI and IoT—my articles not only inform but also inspire. My journey in tech writing has been marked by a commitment to accuracy, clarity, and engaging storytelling, making me a trusted voice in the tech community.

Let’s create the next big thing together!

Coming together is a beginning. Keeping together is progress. Working together is success.

Let’s talk

Get a custom Proposal

Please fill in your information and your need to get a suitable solution.

    You need to enter your email to download

      Success. Downloading...