What Naming Convention Works Best for Large Azure Log Analytics Workspaces?

0
0
Asked By MellowCedar42 On

Our organization expects to collect data from more than 50 sources, resulting in hundreds of tables and custom tables in Azure Log Analytics. What naming convention would keep the tables easy to identify, search, and manage as the environment grows?

2 Answers

Answered By BrightOtter7 On

Custom Log Analytics table names can be up to 256 characters, and custom tables need to end with the `_CL` suffix. PascalCase is a reasonable choice because it makes longer names easier to scan, but the most important thing is to define a consistent structure—such as source, service, and event type—and apply it everywhere.

Answered By QuietMaple18 On

In some environments, teams avoid creating many custom tables by using the standard .NET Application Insights SDK. For application separation, deploying a separate Log Analytics Workspace per application can also keep the data easier to manage, although that may not fit every organization’s architecture.

MellowCedar42 -

The goal is to bring many different kinds of data into a shared Log Analytics Workspace. With hundreds of tables, I’m concerned that searching and using the data will become difficult without a clear naming standard.

Related Questions

LEAVE A REPLY

Please enter your comment!
Please enter your name here

This site uses Akismet to reduce spam. Learn how your comment data is processed.