azure 相关问题

Microsoft Azure是一种平台即服务和基础架构即服务云计算平台 - 关于编程的唯一问题是主题。可以在超级用户或服务器故障中获取常规服务器帮助。

不能将ApplicationSights的度量添加到Azure

该应用程序将很多指标写入ApplicationSights。为了创建基于指标的图表,我选择My-Appinsight-Instance作为范围,基于日志的指标作为度量空间。选择范围和度量名称空间后,我可以在指标输入中找到我的指标。到目前为止,一切都起作用。 我添加了一个新的指标。指标每天写一次。它曾经已经写成,我想用新的指标创建一个新图表。我以前做过同样的事情:我在仪表板内创建一个新图表,选择My-Appinsight-Instance作为范围,基于日志的指标作为度量名称空间。但是我在公制输入中找不到我的新指标。我可以在那里找到所有其他指标,但没有新的指标。我选择了过去3天的时间表,即使该指标是在不到10个小时前写的。 thehere是一个屏幕截图,您可以看到该度量存在于应用程序视图中

回答 1 投票 0



ZUREFLEX消费应用程序未记录到应用程序Insights

为了清楚起见,我们在我们的flex消耗配置中使用applicationInsights_connection_string使用。这只是使用仪表键的一些旧逻辑应用程序。 这似乎是一个奇怪的巧合,我想知道微软是否改变了某种东西。

回答 1 投票 0




graph api-编程撤销所有 /特定权限

我们有一个应用程序,要求用户一次授予特定功能的权限,例如Chat.Read或calendar.read。我们希望您的协助以了解跟进...

回答 0 投票 0

为什么我的python azure函数无法加载“文件或模块system.security.cryptography”? 我一直在开发python azure功能,并在本地进行调试大约一个月。突然,本地调试无法执行“ Func主机开始”并返回以下错误:

Unhandled exception. System.AggregateException: One or more errors occurred. (Unable to load one or more of the requested types. Could not load file or assembly 'System.Security.Cryptography, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'. The system cannot find the file specified. Could not load file or assembly 'System.Security.Cryptography, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'. The system cannot find the file specified. Could not load file or assembly 'System.Security.Cryptography, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'. The system cannot find the file specified. Could not load file or assembly 'System.Security.Cryptography, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'. The system cannot find the file specified.) ---> System.Reflection.ReflectionTypeLoadException: Unable to load one or more of the requested types. Could not load file or assembly 'System.Security.Cryptography, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'. The system cannot find the file specified. Could not load file or assembly 'System.Security.Cryptography, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'. The system cannot find the file specified. Could not load file or assembly 'System.Security.Cryptography, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'. The system cannot find the file specified. Could not load file or assembly 'System.Security.Cryptography, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'. The system cannot find the file specified. at System.Reflection.RuntimeModule.GetTypes(RuntimeModule module) at System.Reflection.RuntimeModule.GetTypes() at Azure.Functions.Cli.ConsoleApp..ctor(String[] args, Assembly assembly, IContainer container) at Azure.Functions.Cli.ConsoleApp.RunAsync[T](String[] args, IContainer container) System.IO.FileNotFoundException: Could not load file or assembly 'System.Security.Cryptography, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'. The system cannot find the file specified. File name: 'System.Security.Cryptography, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' System.IO.FileNotFoundException: Could not load file or assembly 'System.Security.Cryptography, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'. The system cannot find the file specified. File name: 'System.Security.Cryptography, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' System.IO.FileNotFoundException: Could not load file or assembly 'System.Security.Cryptography, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'. The system cannot find the file specified. File name: 'System.Security.Cryptography, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' System.IO.FileNotFoundException: Could not load file or assembly 'System.Security.Cryptography, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'. The system cannot find the file specified. File name: 'System.Security.Cryptography, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' --- End of inner exception stack trace --- at System.Threading.Tasks.Task.ThrowIfExceptional(Boolean includeTaskCanceledExceptions) at System.Threading.Tasks.Task.Wait(Int32 millisecondsTimeout, CancellationToken cancellationToken) at System.Threading.Tasks.Task.Wait() at Azure.Functions.Cli.ConsoleApp.Run[T](String[] args, IContainer container) at Azure.Functions.Cli.Program.Main(String[] args)

回答 1 投票 0

我正在尝试通过二头肌模板配置容器洞察v2。 Azure文档无助于提供步骤来执行此操作 - 仅提供通过门户或使用AZ CLI进行配置的步骤

resource aksCluster 'Microsoft.ContainerService/managedClusters@2024-04-02-preview' = { location: location kind: 'Base' name: aksClusterName sku: { name: 'Base' tier: 'Standard' } # ... properties: { addonProfiles: { omsagent: { enabled: true config: { logAnalyticsWorkspaceResourceID: logAnalyticsWorkspaceId } } } # ... nothing special nor relevant (I think) } resource aksClusterDcr 'Microsoft.Insights/dataCollectionRules@2023-03-11' = { name: '${aksClusterName}-dcr' location: location kind: 'Linux' properties: { dataSources: { extensions: [ { name: 'ContainerInsightsExtension' streams: [ 'Microsoft-ContainerLog' 'Microsoft-ContainerLogV2' 'Microsoft-KubeEvents' 'Microsoft-KubePodInventory' ] extensionSettings: { dataCollectionSettings: { interval: '1m' namespaceFilteringMode: 'Off' enableContainerLogV2: true } } extensionName: 'ContainerInsights' } ] } destinations: { logAnalytics: [ { name: 'ContainerInsightsWorkspace' workspaceResourceId: logAnalyticsWorkspaceId } ] } dataFlows: [ { destinations: [ 'ContainerInsightsWorkspace' ] streams: [ 'Microsoft-ContainerLog' 'Microsoft-ContainerLogV2' 'Microsoft-KubeEvents' 'Microsoft-KubePodInventory' ] } ] } dependsOn: [ aksCluster ] } resource aksClusterDcra 'Microsoft.Insights/dataCollectionRuleAssociations@2023-03-11' = { name: '${aksClusterName}-dcra' scope: aksCluster properties: { description: '' dataCollectionRuleId: aksClusterDcr.id } }

回答 1 投票 0

azure ssas表格部署问题

我们正在尝试将Azure SSAS表格模型部署到服务器中并获取错误: “必须在UI线程上调用OutputStringNopump” “处理选项”设置为“ ...

回答 1 投票 0

但是什么都没有起作用,下面是我的代码的一部分,它从API获取数据:

当使用本地使用时,它可以按预期工作,但部署到Azure时不行。

回答 1 投票 0

如何配置以存储Azurediagnostics仅存储Azure SQL DB登录登录相关事件日志

在配置此内容后,我将无法看到捕获的登录注销事件。

回答 1 投票 0


为我们的WordPress设置适当的权限

我们目前正面临一个问题,即为我们的Web应用程序Azure Server上的/var/www/wordpress设置适当的WordPress安装权限。 我们正在尝试设置以下

回答 1 投票 0


振动附加斑点缓慢阅读性能

我观察到,当斑点附加到几千倍或更多次时,从Azure附加BLOB的阅读非常慢。写入/添加很快,但是阅读几千次典型的日志斑点

回答 3 投票 0



ZURE活动中心与Kafka作为服务经纪人

I'm evaluating the use of Azure Event Hub vs Kafka as a Service Broker. 我希望我能够并排创建两个本地应用程序,一个使用Kafka使用Azure Event Hub使用Kafka消费消息。 我已经设置了一个Docker容器,该容器是一个Kafka实例,并且正在使用Azure帐户设置Azure Event Hub的过程(据我所知,没有其他方法可以为Azure Event Hub创建本地/开发实例)。

回答 5 投票 0

最新问题
© www.soinside.com 2019 - 2025. All rights reserved.