Sign in

Expert in handling Thanos API interactions for querying metrics, listing series, and inspecting labels

Expert in handling Promtheus API interactions for querying metrics, listing series, and inspecting labels

What is an "Expert"? How do we create our own expert?

Add Jenkins credentials

Add a key-value pair

Add credentials for various integrations

Add AWS credentials

Add Jira credentials

Add Slack credentials

Add Grafana credentials

Add Azure credentials

Add GitHub credentials

Process Grafana Alerts

Managing workspaces and access control

DagKnows Architecture Overview

Managing Proxies

Setting up SSO via Azure AD for Dagknows

All the experts

Enable "Auto Exec" and "Send Execution Result to LLM" in "Adjust Settings" if desired

(Optionally) Add ubuntu user to docker group and refresh group membership

Deployment of an EKS Cluster with Worker Nodes in AWS

Adding, Deleting, Listing DagKnows Proxy credentials or key-value pairs

Kubernetes pod issue

Comprehensive AWS Security and Compliance Evaluation Workflow (SOC2 Super Runbook)

AWS EKS Version Update 1.29 to 1.30 via terraform

Instruction to allow WinRM connection

MSP Usecase: User Onboarding Azure + M365

Post a message to a Slack channel

How to debug a kafka cluster and kafka topics?

Docusign Integration Tasks

Open VPN Troubleshooting (Powershell)

Execute a simple task on the proxy

Assign the proxy role to a user

Create roles to access credentials in proxy

Install OpenVPN client on Windows laptop

Setup Kubernetes kubectl and Minikube on Ubuntu 22.04 LTS

Install Prometheus and Grafana on the minikube cluster on EC2 instance in the monitoring namespace

Sample selenium script

update the EKS versions in different clusters

AI agent session 2024-09-12T09:36:14-07:00 by Sarang Dharmapurikar

Install kubernetes on an ec2 instance ubuntu 20.04 using kubeadm and turn this instance into a master node.

Turn an ec2 instance, ubuntu 20.04 into a kubeadm worker node. Install necessary packages and have it join the cluster.

Install Docker

Parse EDN content and give a JSON out

GitHub related tasks

Check whether a user is there on Azure AD and if the user account status is enabled

Get the input parameters of a Jenkins pipeline

Get the console output of last Jenkins job build

List my Jenkins pipelines

Get last build status for a Jenkins job

How to debug a kafka cluster and kafka topics?

There was a problem that the LLM was not able to address. Please rephrase your prompt and try again.
Debugging a Kafka cluster and Kafka topics involves identifying and resolving issues related to data processing, replication, and communication within the cluster. This process helps ensure the stability and performance of the Kafka environment.
  1. 1

    Check Kafka cluster health

    There was a problem that the LLM was not able to address. Please rephrase your prompt and try again.
    Verify the overall health of the Kafka cluster to identify any potential issues.
    bin/kafka-topics.sh --zookeeper <zookeeper_host>:<zookeeper_port> --list
    copied
    1
  2. 2

    Check Kafka topic status

    There was a problem that the LLM was not able to address. Please rephrase your prompt and try again.
    Inspect the status of individual Kafka topics to ensure proper replication and data processing.
    bin/kafka-topics.sh --zookeeper <zookeeper_host>:<zookeeper_port> --describe --topic <topic_name>
    copied
    2
  3. 3

    Monitor Kafka logs

    There was a problem that the LLM was not able to address. Please rephrase your prompt and try again.
    Review Kafka server logs for any error messages or warnings that may indicate issues within the cluster.
    tail -f logs/server.log
    copied
    3
  4. 4

    Check Kafka broker configuration

    There was a problem that the LLM was not able to address. Please rephrase your prompt and try again.
    Inspect the configuration settings of Kafka brokers to ensure they are properly configured.
    cat config/server.properties
    copied
    4